2025-08-14T20:43:47.2050480Z Current runner version: '2.327.1' 2025-08-14T20:43:47.2053800Z Runner name: 'i-03915bc5d520427be' 2025-08-14T20:43:47.2054230Z Runner group name: 'default' 2025-08-14T20:43:47.2054730Z Machine name: 'ip-10-0-1-207' 2025-08-14T20:43:47.2056310Z ##[group]GITHUB_TOKEN Permissions 2025-08-14T20:43:47.2057500Z Contents: read 2025-08-14T20:43:47.2057820Z Metadata: read 2025-08-14T20:43:47.2058120Z ##[endgroup] 2025-08-14T20:43:47.2059260Z Secret source: Actions 2025-08-14T20:43:47.2059630Z Prepare workflow directory 2025-08-14T20:43:47.2628000Z Prepare all required actions 2025-08-14T20:43:47.2653690Z Getting action download info 2025-08-14T20:43:47.5611150Z Download action repository 'pytorch/test-infra@main' (SHA:83f58f391e939c10dcb8cb6d745e4cefa3b98a84) 2025-08-14T20:43:48.1337590Z Download action repository 'pytorch/pytorch@main' (SHA:1fc683cf17c8c673044538d10266c00f92987be2) 2025-08-14T20:43:56.7674200Z Download action repository 'nick-fields/retry@7152eba30c6575329ac0576536151aca5a72780e' (SHA:7152eba30c6575329ac0576536151aca5a72780e) 2025-08-14T20:43:56.9604120Z Download action repository 'actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02' (SHA:ea165f8d65b6e75b540449e92b4886f43607fa02) 2025-08-14T20:43:57.2396390Z Getting action download info 2025-08-14T20:43:57.3528210Z Download action repository 'actions/checkout@v4' (SHA:08eba0b27e820071cde6df949e0beb9ba4906955) 2025-08-14T20:43:57.6742100Z Uses: pytorch/pytorch/.github/workflows/_mac-build.yml@refs/heads/main (1fc683cf17c8c673044538d10266c00f92987be2) 2025-08-14T20:43:57.6744330Z ##[group] Inputs 2025-08-14T20:43:57.6744530Z build-environment: macos-py3-arm64 2025-08-14T20:43:57.6744740Z runner-type: macos-m1-stable 2025-08-14T20:43:57.6745090Z build-generates-artifacts: true 2025-08-14T20:43:57.6745290Z xcode-version: 2025-08-14T20:43:57.6745450Z sync-tag: macos-py3-arm64-build 2025-08-14T20:43:57.6745630Z python-version: 3.12.7 2025-08-14T20:43:57.6746490Z 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-08-14T20:43:57.6747320Z sccache-use-gha: false 2025-08-14T20:43:57.6747480Z ##[endgroup] 2025-08-14T20:43:57.6747630Z Complete job name: macos-py3-arm64 / build 2025-08-14T20:43:57.7020060Z ##[group]Run pytorch/test-infra/.github/actions/check-disk-space@main 2025-08-14T20:43:57.7020440Z with: 2025-08-14T20:43:57.7020610Z minimum-available-space-in-gb: 6 2025-08-14T20:43:57.7020880Z env: 2025-08-14T20:43:57.7021010Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-08-14T20:43:57.7021210Z SCCACHE_USE_GHA: false 2025-08-14T20:43:57.7021360Z ##[endgroup] 2025-08-14T20:43:57.7076420Z ##[group]Run echo "Print the available disk space for manual inspection" 2025-08-14T20:43:57.7076820Z echo "Print the available disk space for manual inspection" 2025-08-14T20:43:57.7077100Z df -h 2025-08-14T20:43:57.7077230Z  2025-08-14T20:43:57.7077390Z function check_disk_space() { 2025-08-14T20:43:57.7077580Z  set +e 2025-08-14T20:43:57.7077710Z  2025-08-14T20:43:57.7077860Z  # Set the minimum requirement space to 6GB 2025-08-14T20:43:57.7078220Z  MINIMUM_AVAILABLE_SPACE_IN_KB=$(($MINIMUM_AVAILABLE_SPACE_IN_GB * 1024 * 1024)) 2025-08-14T20:43:57.7078490Z  2025-08-14T20:43:57.7078660Z  # Use KB to avoid floating point warning like 3.1GB 2025-08-14T20:43:57.7078920Z  df -k | tr -s ' ' | cut -d' ' -f 4,9 | while read -r LINE; 2025-08-14T20:43:57.7079140Z  do 2025-08-14T20:43:57.7079300Z  AVAIL=$(echo $LINE | cut -f1 -d' ') 2025-08-14T20:43:57.7079560Z  MOUNT=$(echo $LINE | cut -f2 -d' ') 2025-08-14T20:43:57.7079760Z  2025-08-14T20:43:57.7081020Z  if [ "${MOUNT}" = "/" ]; then 2025-08-14T20:43:57.7081260Z  if [ "${AVAIL}" -lt "${MINIMUM_AVAILABLE_SPACE_IN_KB}" ]; then 2025-08-14T20:43:57.7081780Z  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-08-14T20:43:57.7082220Z  else 2025-08-14T20:43:57.7082480Z  echo "Success: There is ${AVAIL}KB free space left in ${MOUNT} for ${RUNNER_OS}, continue" 2025-08-14T20:43:57.7082770Z  fi 2025-08-14T20:43:57.7082910Z  fi 2025-08-14T20:43:57.7083030Z  done 2025-08-14T20:43:57.7083160Z  2025-08-14T20:43:57.7083280Z  set -e 2025-08-14T20:43:57.7083410Z } 2025-08-14T20:43:57.7083530Z  2025-08-14T20:43:57.7083660Z RESULT=$(check_disk_space) 2025-08-14T20:43:57.7083860Z echo "${RESULT}" 2025-08-14T20:43:57.7084010Z  2025-08-14T20:43:57.7084190Z if [[ "${RESULT}" == *Failure* && "${RUNNER_OS}" == "macOS" ]]; then 2025-08-14T20:43:57.7094710Z  # 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-08-14T20:43:57.7095170Z  # https://github.com/pytorch/pytorch/issues/85440 2025-08-14T20:43:57.7095500Z  sudo rm "/System/Library/Caches/com.apple.coresymbolicationd/data" || true 2025-08-14T20:43:57.7095970Z  # Stop the daemon and launchctl will automatically start it again, thus accomplish a restart and free up the above file 2025-08-14T20:43:57.7096380Z  sudo launchctl stop com.apple.coresymbolicationd || true 2025-08-14T20:43:57.7096610Z  2025-08-14T20:43:57.7096740Z  # Clean up crash reports on the runner 2025-08-14T20:43:57.7097020Z  sudo rm -rf "/System/Volumes/Data/Library/Logs/CrashReporter" || true 2025-08-14T20:43:57.7097260Z  2025-08-14T20:43:57.7097410Z  # Also try to clean up torch.hub caching directory 2025-08-14T20:43:57.7097640Z  rm -rf "${HOME}/.cache/torch/hub" || true 2025-08-14T20:43:57.7097820Z  2025-08-14T20:43:57.7097930Z  # Purge conda 2025-08-14T20:43:57.7098080Z  conda clean -p -t -y || true 2025-08-14T20:43:57.7098250Z  # and pip cache 2025-08-14T20:43:57.7098860Z  pip cache purge || true 2025-08-14T20:43:57.7099030Z  2025-08-14T20:43:57.7099210Z  echo "Re-run disk space check for ${RUNNER_OS} after cleaning up" 2025-08-14T20:43:57.7099450Z  # Re-run the check 2025-08-14T20:43:57.7099610Z  RESULT=$(check_disk_space) 2025-08-14T20:43:57.7099770Z  echo "${RESULT}" 2025-08-14T20:43:57.7099910Z fi 2025-08-14T20:43:57.7100020Z  2025-08-14T20:43:57.7100150Z if [[ "${RESULT}" == *Failure* ]]; then 2025-08-14T20:43:57.7100330Z  df -h 2025-08-14T20:43:57.7100440Z  2025-08-14T20:43:57.7100840Z  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-08-14T20:43:57.7101270Z  exit 1 2025-08-14T20:43:57.7101380Z fi 2025-08-14T20:43:57.7127560Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-08-14T20:43:57.7127770Z env: 2025-08-14T20:43:57.7127890Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-08-14T20:43:57.7128060Z SCCACHE_USE_GHA: false 2025-08-14T20:43:57.7128210Z MINIMUM_AVAILABLE_SPACE_IN_GB: 6 2025-08-14T20:43:57.7128360Z ##[endgroup] 2025-08-14T20:43:57.7431150Z Print the available disk space for manual inspection 2025-08-14T20:43:57.7435930Z Filesystem Size Used Avail Capacity iused ifree %iused Mounted on 2025-08-14T20:43:57.7436300Z /dev/disk5s2s1 256Gi 9.5Gi 200Gi 5% 404k 2.1G 0% / 2025-08-14T20:43:57.7436640Z devfs 217Ki 217Ki 0Bi 100% 752 0 100% /dev 2025-08-14T20:43:57.7443610Z /dev/disk5s5 256Gi 1.0Gi 200Gi 1% 1 2.1G 0% /System/Volumes/VM 2025-08-14T20:43:57.7444020Z /dev/disk5s3 256Gi 5.7Gi 200Gi 3% 1.0k 2.1G 0% /System/Volumes/Preboot 2025-08-14T20:43:57.7444400Z /dev/disk1s2 500Mi 6.0Mi 387Mi 2% 1 4.0M 0% /System/Volumes/xarts 2025-08-14T20:43:57.7444830Z /dev/disk1s1 500Mi 53Mi 387Mi 13% 61 4.0M 0% /System/Volumes/iSCPreboot 2025-08-14T20:43:57.7445220Z /dev/disk1s3 500Mi 856Ki 387Mi 1% 51 4.0M 0% /System/Volumes/Hardware 2025-08-14T20:43:57.7445590Z /dev/disk5s1 256Gi 39Gi 200Gi 17% 1.5M 2.1G 0% /System/Volumes/Data 2025-08-14T20:43:57.7445990Z map auto_home 0Bi 0Bi 0Bi 100% 0 0 - /System/Volumes/Data/home 2025-08-14T20:43:57.7446370Z /dev/disk3s4 228Gi 120Ki 210Gi 1% 18 2.2G 0% /private/tmp/tmp-mount-hQiI52 2025-08-14T20:43:57.7818890Z Success: There is 209344748KB free space left in / for macOS, continue 2025-08-14T20:43:57.7982360Z ##[group]Run pytorch/pytorch/.github/actions/checkout-pytorch@main 2025-08-14T20:43:57.7982640Z with: 2025-08-14T20:43:57.7982770Z submodules: recursive 2025-08-14T20:43:57.7982920Z fetch-depth: 0 2025-08-14T20:43:57.7983050Z env: 2025-08-14T20:43:57.7983210Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-08-14T20:43:57.7983380Z SCCACHE_USE_GHA: false 2025-08-14T20:43:57.7983540Z ##[endgroup] 2025-08-14T20:43:57.7998140Z ##[group]Run echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-08-14T20:43:57.7998710Z echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-08-14T20:43:57.8024990Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-08-14T20:43:57.8025220Z env: 2025-08-14T20:43:57.8025360Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-08-14T20:43:57.8025550Z SCCACHE_USE_GHA: false 2025-08-14T20:43:57.8025740Z ##[endgroup] 2025-08-14T20:43:57.8332900Z ##[group]Run # Use all available CPUs for fetching 2025-08-14T20:43:57.8333270Z # Use all available CPUs for fetching 2025-08-14T20:43:57.8333480Z cd "${GITHUB_WORKSPACE}" 2025-08-14T20:43:57.8333690Z git config --global fetch.parallel 0 2025-08-14T20:43:57.8333940Z git config --global submodule.fetchJobs 0 2025-08-14T20:43:57.8334160Z  2025-08-14T20:43:57.8334400Z # Clean workspace. The default checkout action should also do this, but 2025-08-14T20:43:57.8334690Z # do it here as well just in case 2025-08-14T20:43:57.8334910Z if [[ -d .git ]]; then 2025-08-14T20:43:57.8335090Z  if [ -z "${NO_SUDO}" ]; then 2025-08-14T20:43:57.8335310Z  sudo git clean -ffdx 2025-08-14T20:43:57.8335510Z  else 2025-08-14T20:43:57.8335680Z  git clean -ffdx 2025-08-14T20:43:57.8335860Z  fi 2025-08-14T20:43:57.8336020Z fi 2025-08-14T20:43:57.8361600Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-08-14T20:43:57.8361810Z env: 2025-08-14T20:43:57.8361960Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-08-14T20:43:57.8372620Z SCCACHE_USE_GHA: false 2025-08-14T20:43:57.8372780Z NO_SUDO: 2025-08-14T20:43:57.8372910Z ##[endgroup] 2025-08-14T20:43:59.4768840Z Removing .additional_ci_files/ 2025-08-14T20:43:59.4769200Z Removing .pytest_cache/ 2025-08-14T20:43:59.4769690Z Removing build/ 2025-08-14T20:43:59.4769900Z Removing dist/ 2025-08-14T20:43:59.4770090Z Removing test/.pytorch-disabled-tests.json 2025-08-14T20:43:59.4770330Z Removing test/__pycache__/ 2025-08-14T20:43:59.4770510Z Removing test/autograd/__pycache__/ 2025-08-14T20:43:59.4770770Z Removing test/cpp_extensions/libtorch_agnostic_extension/build/ 2025-08-14T20:43:59.4771120Z Removing test/cpp_extensions/libtorch_agnostic_extension/install/ 2025-08-14T20:43:59.4771850Z Removing test/cpp_extensions/libtorch_agnostic_extension/libtorch_agnostic.egg-info/ 2025-08-14T20:43:59.4772220Z Removing test/custom_backend/__pycache__/ 2025-08-14T20:43:59.4772450Z Removing test/custom_backend/build/ 2025-08-14T20:43:59.4772690Z Removing test/custom_backend/test-reports/ 2025-08-14T20:43:59.4772910Z Removing test/dynamo/__pycache__/ 2025-08-14T20:43:59.4773120Z Removing test/export/__pycache__/ 2025-08-14T20:43:59.4773330Z Removing test/functorch/__pycache__/ 2025-08-14T20:43:59.4773530Z Removing test/inductor/__pycache__/ 2025-08-14T20:43:59.4773730Z Removing test/jit/__pycache__/ 2025-08-14T20:43:59.4773950Z Removing test/jit/_imported_class_test/__pycache__/ 2025-08-14T20:43:59.4774220Z Removing test/jit/_imported_class_test/very/__pycache__/ 2025-08-14T20:43:59.4774520Z Removing test/jit/_imported_class_test/very/very/__pycache__/ 2025-08-14T20:43:59.4774770Z Removing test/jit_hooks/build/ 2025-08-14T20:43:59.4775000Z Removing test/jit_hooks/model_test_forward_tuple_input.pt 2025-08-14T20:43:59.4775610Z Removing test/jit_hooks/model_test_module_forward_multiple_inputs.pt 2025-08-14T20:43:59.4775980Z Removing test/jit_hooks/model_test_module_forward_single_input.pt 2025-08-14T20:43:59.4776300Z Removing test/jit_hooks/model_test_module_hook_return_nothing.pt 2025-08-14T20:43:59.4776650Z Removing test/jit_hooks/model_test_module_multiple_hooks_multiple_inputs.pt 2025-08-14T20:43:59.4777060Z Removing test/jit_hooks/model_test_module_multiple_hooks_single_input.pt 2025-08-14T20:43:59.4777400Z Removing test/jit_hooks/model_test_module_no_forward_input.pt 2025-08-14T20:43:59.4777750Z Removing test/jit_hooks/model_test_module_same_hook_repeated.pt 2025-08-14T20:43:59.4778280Z Removing test/jit_hooks/model_test_submodule_forward_multiple_inputs.pt 2025-08-14T20:43:59.4778650Z Removing test/jit_hooks/model_test_submodule_forward_single_input.pt 2025-08-14T20:43:59.4778990Z Removing test/jit_hooks/model_test_submodule_hook_return_nothing.pt 2025-08-14T20:43:59.4779360Z Removing test/jit_hooks/model_test_submodule_multiple_hooks_multiple_inputs.pt 2025-08-14T20:43:59.4779740Z Removing test/jit_hooks/model_test_submodule_multiple_hooks_single_input.pt 2025-08-14T20:43:59.4780100Z Removing test/jit_hooks/model_test_submodule_same_hook_repeated.pt 2025-08-14T20:43:59.4780450Z Removing test/jit_hooks/model_test_submodule_to_call_directly_with_hooks.pt 2025-08-14T20:43:59.4780720Z Removing test/test-reports/ 2025-08-14T20:43:59.4780900Z Removing test/torch_compile_debug/ 2025-08-14T20:43:59.4781080Z Removing test/torch_np/__pycache__/ 2025-08-14T20:43:59.4781260Z Removing tools/__pycache__/ 2025-08-14T20:43:59.4781430Z Removing tools/stats/__pycache__/ 2025-08-14T20:43:59.4781660Z Removing tools/stats/upload_utilization_stats/__pycache__/ 2025-08-14T20:43:59.4781910Z Removing tools/testing/__pycache__/ 2025-08-14T20:43:59.4782140Z Removing tools/testing/target_determination/__pycache__/ 2025-08-14T20:43:59.4782450Z Removing tools/testing/target_determination/heuristics/__pycache__/ 2025-08-14T20:43:59.4838030Z ##[group]Run actions/checkout@v4 2025-08-14T20:43:59.4838200Z with: 2025-08-14T20:43:59.4838360Z ref: 1fc683cf17c8c673044538d10266c00f92987be2 2025-08-14T20:43:59.4838560Z fetch-depth: 0 2025-08-14T20:43:59.4838690Z submodules: recursive 2025-08-14T20:43:59.4838840Z show-progress: false 2025-08-14T20:43:59.4838990Z repository: pytorch/pytorch 2025-08-14T20:43:59.4839240Z token: *** 2025-08-14T20:43:59.4839360Z ssh-strict: true 2025-08-14T20:43:59.4839500Z ssh-user: git 2025-08-14T20:43:59.4839660Z persist-credentials: true 2025-08-14T20:43:59.4839800Z clean: true 2025-08-14T20:43:59.4839940Z sparse-checkout-cone-mode: true 2025-08-14T20:43:59.4840110Z fetch-tags: false 2025-08-14T20:43:59.4840260Z lfs: false 2025-08-14T20:43:59.4840380Z set-safe-directory: true 2025-08-14T20:43:59.4840520Z env: 2025-08-14T20:43:59.4840690Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-08-14T20:43:59.4840870Z SCCACHE_USE_GHA: false 2025-08-14T20:43:59.4841060Z ##[endgroup] 2025-08-14T20:43:59.5758260Z Syncing repository: pytorch/pytorch 2025-08-14T20:43:59.5759250Z ##[group]Getting Git version info 2025-08-14T20:43:59.5759550Z Working directory is '/Users/ec2-user/runner/_work/pytorch/pytorch' 2025-08-14T20:43:59.5759990Z [command]/usr/bin/git version 2025-08-14T20:43:59.5801790Z git version 2.39.3 (Apple Git-146) 2025-08-14T20:43:59.5815120Z ##[endgroup] 2025-08-14T20:43:59.5913110Z Copying '/Users/ec2-user/.gitconfig' to '/Users/ec2-user/runner/_work/_temp/7aa0ea56-ec6f-46dc-90f7-49c398d9e73f/.gitconfig' 2025-08-14T20:43:59.5925080Z Temporarily overriding HOME='/Users/ec2-user/runner/_work/_temp/7aa0ea56-ec6f-46dc-90f7-49c398d9e73f' before making global git config changes 2025-08-14T20:43:59.5925740Z Adding repository directory to the temporary git global config as a safe directory 2025-08-14T20:43:59.5932160Z [command]/usr/bin/git config --global --add safe.directory /Users/ec2-user/runner/_work/pytorch/pytorch 2025-08-14T20:43:59.6280740Z [command]/usr/bin/git config --local --get remote.origin.url 2025-08-14T20:43:59.6345280Z https://github.com/pytorch/pytorch 2025-08-14T20:43:59.6364120Z ##[group]Removing previously created refs, to avoid conflicts 2025-08-14T20:43:59.6364710Z [command]/usr/bin/git rev-parse --symbolic-full-name --verify --quiet HEAD 2025-08-14T20:43:59.6473110Z HEAD 2025-08-14T20:43:59.6542220Z ##[endgroup] 2025-08-14T20:43:59.6544150Z [command]/usr/bin/git submodule status 2025-08-14T20:43:59.7322160Z 7e1e1fe3858c63c251c637ae41a20de425dde96f android/libs/fbjni (v0.1.0-12-g7e1e1fe) 2025-08-14T20:43:59.7553110Z 4dfe081cf6bcd15db339cf2680b9281b8451eeb3 third_party/FP16 (4dfe081) 2025-08-14T20:43:59.7778690Z b408327ac2a15ec3e43352421954f5b1967701d1 third_party/FXdiv (b408327) 2025-08-14T20:43:59.8096100Z c07e3a0400713d546e0dea2d5466dd22ea389c73 third_party/NNPACK (c07e3a0) 2025-08-14T20:43:59.8353580Z 2942f167cc30c5e3a44a2aecd5b0d9c07ff61a07 third_party/NVTX (v3.1.0-263-g2942f16) 2025-08-14T20:43:59.8566620Z 1d8f600fd424278486eade7ed3e877c99f0846b1 third_party/VulkanMemoryAllocator (v2.1.0-982-g1d8f600) 2025-08-14T20:44:00.0617420Z 51a0103656eff6fc9bfd39a4597923c4b542c883 third_party/XNNPACK (remotes/origin/ds/ndk-1243-g51a0103656) 2025-08-14T20:44:00.0995390Z 01aae101b9e5e94d6c16a9514c9fb8df99c93150 third_party/aiter (v0.1.1-92-g01aae101) 2025-08-14T20:44:00.1159980Z 299e5928955cc62af9968370293b916f5130916f third_party/benchmark (v1.9.3) 2025-08-14T20:44:00.1745470Z 7fe50dc3da2069d6645d9deb8c017a876472a977 third_party/composable_kernel (rocm-6.4.3-459-g7fe50dc3d) 2025-08-14T20:44:00.2183530Z 3af7f2c16147f3fbc6e4d717032daf505dc1652c third_party/cpp-httplib (v0.20.1) 2025-08-14T20:44:00.2553420Z 5e3d2445e6a84d9599bee2bf78edbb4d80865e1d third_party/cpuinfo (5e3d244) 2025-08-14T20:44:00.2891900Z f937055efc6d414d11f4c6577e3977fe74f35fb6 third_party/cudnn_frontend (v0.5-52-gf937055) 2025-08-14T20:44:00.3271000Z e51efbfe18fe4f4cbb66ab814c55bf4aa0185491 third_party/cutlass (v4.1.0) 2025-08-14T20:44:00.3745850Z 21c7d30c526c0f1ad873ecc632dca6cfa8a69067 third_party/fbgemm (v1.3.0-rc1-165-g21c7d30c) 2025-08-14T20:44:00.3998520Z 979702c87a8713a8e0a5e9fee122b90d2ef13be5 third_party/flash-attention (v2.7.4) 2025-08-14T20:44:00.4090010Z a2cd1ea3b6d3fee220106b5fed3f7ce8da9eb757 third_party/flatbuffers (v24.12.23) 2025-08-14T20:44:00.5016660Z 40626af88bd7df9a5fb80be7b25ac85b122d6c21 third_party/fmt (11.2.0) 2025-08-14T20:44:00.5320250Z 3fb5c176c17c765a3492cd2f0321b0dab712f350 third_party/gemmlowp/gemmlowp (remotes/origin/revert-87-master-135-g3fb5c17) 2025-08-14T20:44:00.5776140Z c7b7b022c124d9643957d9bd55f57ac59fce8fa2 third_party/gloo (remotes/origin/gh/c-p-i-o/1/base-33-gc7b7b02) 2025-08-14T20:44:00.6527560Z 52eb8108c5bdec04579160ae17225d66034bd723 third_party/googletest (release-1.8.0-3544-g52eb8108) 2025-08-14T20:44:00.6971020Z 719d8e6cd7f7a0e01b155657526d693acf97c2b3 third_party/ideep (pytorch-rls-v3.7.1) 2025-08-14T20:44:00.7242200Z dec1d23ca65ab069d225dfe40dea14f455170959 third_party/ittapi (v3.25.5) 2025-08-14T20:44:00.7731860Z 5e7501833f1021ce6f618572d3baf657b6319658 third_party/kineto (remotes/origin/sraikund/test-98-g5e75018) 2025-08-14T20:44:00.7914270Z cca02c2f69dd18e1f12647c1c0bdc8cf90e680c7 third_party/kleidiai (v1.8.0) 2025-08-14T20:44:00.8003090Z fbd8b99c2b828428947d70fdc046bb55609be93e third_party/mimalloc (v2.2.4) 2025-08-14T20:44:00.8099210Z 55f93686c01528224f448c19128836e7df245f72 third_party/nlohmann (v3.12.0) 2025-08-14T20:44:00.9265660Z e709452ef2bbc1d113faf678c24e6d3467696e83 third_party/onnx (v1.18.0) 2025-08-14T20:44:00.9374020Z a799f4aed9c94b765dcdaabaeab7d5e7e2310878 third_party/opentelemetry-cpp (v1.14.2) 2025-08-14T20:44:00.9458360Z 0fa0ef591e38c2758e3184c6c23e497b9f732ffa third_party/pocketfft (release_for_eigen-40-g0fa0ef5) 2025-08-14T20:44:01.1560820Z d1eca4e4b421cd2997495c4b4e65cea6be4e9b8a third_party/protobuf (v3.7.0-rc.2-1279-gd1eca4e4b) 2025-08-14T20:44:01.1751870Z 072586a71b55b7f8c584153d223e95687148a900 third_party/psimd (heads/master) 2025-08-14T20:44:01.1934370Z 4fe0e1e183925bf8cfa6aae24237e724a96479b8 third_party/pthreadpool (0.1-144-g4fe0e1e) 2025-08-14T20:44:01.2516420Z a2e59f0e7065404b44dfe92a28aca47ba1378dc4 third_party/pybind11 (v2.11.0-182-ga2e59f0e) 2025-08-14T20:44:01.2743830Z f45429b087dd7d5bc78bb40dc7cf06425c252d67 third_party/python-peachpy (remotes/origin/pre-generated) 2025-08-14T20:44:01.3097660Z 5a1d179df9cf652951b59010a2d2075372d67f68 third_party/sleef (3.8) 2025-08-14T20:44:01.3399510Z dacda0567d9f23d4bc503e1c4f84aa65f33ac38a third_party/tensorpipe (heads/main) 2025-08-14T20:44:01.3407480Z ##[group]Cleaning the repository 2025-08-14T20:44:01.3409490Z [command]/usr/bin/git clean -ffdx 2025-08-14T20:44:01.3793150Z [command]/usr/bin/git reset --hard HEAD 2025-08-14T20:44:02.2500830Z HEAD is now at bdfe0a77e92 just do inductor sizevars version 2025-08-14T20:44:02.2507300Z ##[endgroup] 2025-08-14T20:44:02.2508210Z ##[group]Disabling automatic garbage collection 2025-08-14T20:44:02.2512860Z [command]/usr/bin/git config --local gc.auto 0 2025-08-14T20:44:02.2596340Z ##[endgroup] 2025-08-14T20:44:02.2596680Z ##[group]Setting up auth 2025-08-14T20:44:02.2603250Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2025-08-14T20:44:02.2675670Z [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-08-14T20:44:02.3148470Z Entering 'android/libs/fbjni' 2025-08-14T20:44:02.3248540Z Entering 'third_party/FP16' 2025-08-14T20:44:02.3345100Z Entering 'third_party/FXdiv' 2025-08-14T20:44:02.3441510Z Entering 'third_party/NNPACK' 2025-08-14T20:44:02.3537540Z Entering 'third_party/NVTX' 2025-08-14T20:44:02.3633940Z Entering 'third_party/VulkanMemoryAllocator' 2025-08-14T20:44:02.3730670Z Entering 'third_party/XNNPACK' 2025-08-14T20:44:02.3832600Z Entering 'third_party/aiter' 2025-08-14T20:44:02.3955580Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-08-14T20:44:02.4055680Z Entering 'third_party/benchmark' 2025-08-14T20:44:02.4154300Z Entering 'third_party/composable_kernel' 2025-08-14T20:44:02.4254010Z Entering 'third_party/cpp-httplib' 2025-08-14T20:44:02.4350790Z Entering 'third_party/cpuinfo' 2025-08-14T20:44:02.4445630Z Entering 'third_party/cudnn_frontend' 2025-08-14T20:44:02.4541400Z Entering 'third_party/cutlass' 2025-08-14T20:44:02.4640980Z Entering 'third_party/fbgemm' 2025-08-14T20:44:02.4737850Z Entering 'third_party/fbgemm/external/asmjit' 2025-08-14T20:44:02.4834820Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-08-14T20:44:02.4934240Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-08-14T20:44:02.5035550Z Entering 'third_party/fbgemm/external/cutlass' 2025-08-14T20:44:02.5137040Z Entering 'third_party/fbgemm/external/googletest' 2025-08-14T20:44:02.5235710Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-08-14T20:44:02.5333570Z Entering 'third_party/fbgemm/external/json' 2025-08-14T20:44:02.5439470Z Entering 'third_party/flash-attention' 2025-08-14T20:44:02.5588640Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-08-14T20:44:02.5701460Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-08-14T20:44:02.5806450Z Entering 'third_party/flatbuffers' 2025-08-14T20:44:02.5909000Z Entering 'third_party/fmt' 2025-08-14T20:44:02.6008510Z Entering 'third_party/gemmlowp/gemmlowp' 2025-08-14T20:44:02.6109350Z Entering 'third_party/gloo' 2025-08-14T20:44:02.6208710Z Entering 'third_party/googletest' 2025-08-14T20:44:02.6308200Z Entering 'third_party/ideep' 2025-08-14T20:44:02.6406700Z Entering 'third_party/ideep/mkl-dnn' 2025-08-14T20:44:02.6510620Z Entering 'third_party/ittapi' 2025-08-14T20:44:02.6610780Z Entering 'third_party/kineto' 2025-08-14T20:44:02.6737080Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-08-14T20:44:02.6861820Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-08-14T20:44:02.6970940Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-08-14T20:44:02.7109580Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-08-14T20:44:02.7229550Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-08-14T20:44:02.7359250Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-08-14T20:44:02.7480720Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-08-14T20:44:02.7599500Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-08-14T20:44:02.7718490Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-08-14T20:44:02.7833330Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-08-14T20:44:02.7949710Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-08-14T20:44:02.8069220Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-08-14T20:44:02.8171810Z Entering 'third_party/kleidiai' 2025-08-14T20:44:02.8275770Z Entering 'third_party/mimalloc' 2025-08-14T20:44:02.8375430Z Entering 'third_party/nlohmann' 2025-08-14T20:44:02.8476280Z Entering 'third_party/onnx' 2025-08-14T20:44:02.8737650Z Entering 'third_party/onnx/third_party/pybind11' 2025-08-14T20:44:02.8842780Z Entering 'third_party/opentelemetry-cpp' 2025-08-14T20:44:02.8992950Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-08-14T20:44:02.9099070Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-08-14T20:44:02.9211420Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-08-14T20:44:02.9338380Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-08-14T20:44:02.9456860Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-08-14T20:44:02.9569440Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-08-14T20:44:02.9675640Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-08-14T20:44:02.9817480Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-08-14T20:44:02.9924990Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-08-14T20:44:03.0054250Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-08-14T20:44:03.0169490Z Entering 'third_party/pocketfft' 2025-08-14T20:44:03.0272430Z Entering 'third_party/protobuf' 2025-08-14T20:44:03.0373050Z Entering 'third_party/protobuf/third_party/benchmark' 2025-08-14T20:44:03.0474190Z Entering 'third_party/protobuf/third_party/googletest' 2025-08-14T20:44:03.0575620Z Entering 'third_party/psimd' 2025-08-14T20:44:03.0675810Z Entering 'third_party/pthreadpool' 2025-08-14T20:44:03.0775220Z Entering 'third_party/pybind11' 2025-08-14T20:44:03.0875090Z Entering 'third_party/python-peachpy' 2025-08-14T20:44:03.0974770Z Entering 'third_party/sleef' 2025-08-14T20:44:03.1074580Z Entering 'third_party/tensorpipe' 2025-08-14T20:44:03.1172350Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-08-14T20:44:03.1271730Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-08-14T20:44:03.1370710Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-08-14T20:44:03.1465100Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-08-14T20:44:03.1557560Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-08-14T20:44:03.1670950Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-08-14T20:44:03.1734250Z [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-08-14T20:44:03.2250000Z Entering 'android/libs/fbjni' 2025-08-14T20:44:03.2357990Z Entering 'third_party/FP16' 2025-08-14T20:44:03.2461360Z Entering 'third_party/FXdiv' 2025-08-14T20:44:03.2563370Z Entering 'third_party/NNPACK' 2025-08-14T20:44:03.2662880Z Entering 'third_party/NVTX' 2025-08-14T20:44:03.2761480Z Entering 'third_party/VulkanMemoryAllocator' 2025-08-14T20:44:03.2861180Z Entering 'third_party/XNNPACK' 2025-08-14T20:44:03.2967100Z Entering 'third_party/aiter' 2025-08-14T20:44:03.3068490Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-08-14T20:44:03.3170970Z Entering 'third_party/benchmark' 2025-08-14T20:44:03.3273990Z Entering 'third_party/composable_kernel' 2025-08-14T20:44:03.3379830Z Entering 'third_party/cpp-httplib' 2025-08-14T20:44:03.3487580Z Entering 'third_party/cpuinfo' 2025-08-14T20:44:03.3590600Z Entering 'third_party/cudnn_frontend' 2025-08-14T20:44:03.3690520Z Entering 'third_party/cutlass' 2025-08-14T20:44:03.3793670Z Entering 'third_party/fbgemm' 2025-08-14T20:44:03.3893240Z Entering 'third_party/fbgemm/external/asmjit' 2025-08-14T20:44:03.3992480Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-08-14T20:44:03.4092480Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-08-14T20:44:03.4191400Z Entering 'third_party/fbgemm/external/cutlass' 2025-08-14T20:44:03.4292570Z Entering 'third_party/fbgemm/external/googletest' 2025-08-14T20:44:03.4392170Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-08-14T20:44:03.4489870Z Entering 'third_party/fbgemm/external/json' 2025-08-14T20:44:03.4590850Z Entering 'third_party/flash-attention' 2025-08-14T20:44:03.4689760Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-08-14T20:44:03.4789730Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-08-14T20:44:03.4893370Z Entering 'third_party/flatbuffers' 2025-08-14T20:44:03.4994010Z Entering 'third_party/fmt' 2025-08-14T20:44:03.5093130Z Entering 'third_party/gemmlowp/gemmlowp' 2025-08-14T20:44:03.5191930Z Entering 'third_party/gloo' 2025-08-14T20:44:03.5290200Z Entering 'third_party/googletest' 2025-08-14T20:44:03.5387680Z Entering 'third_party/ideep' 2025-08-14T20:44:03.5486390Z Entering 'third_party/ideep/mkl-dnn' 2025-08-14T20:44:03.5587370Z Entering 'third_party/ittapi' 2025-08-14T20:44:03.5687740Z Entering 'third_party/kineto' 2025-08-14T20:44:03.5785120Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-08-14T20:44:03.5883000Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-08-14T20:44:03.5982830Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-08-14T20:44:03.6082540Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-08-14T20:44:03.6182110Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-08-14T20:44:03.6279420Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-08-14T20:44:03.6380510Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-08-14T20:44:03.6480100Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-08-14T20:44:03.6579460Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-08-14T20:44:03.6679600Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-08-14T20:44:03.6780870Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-08-14T20:44:03.6879240Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-08-14T20:44:03.6979320Z Entering 'third_party/kleidiai' 2025-08-14T20:44:03.7080110Z Entering 'third_party/mimalloc' 2025-08-14T20:44:03.7179280Z Entering 'third_party/nlohmann' 2025-08-14T20:44:03.7279320Z Entering 'third_party/onnx' 2025-08-14T20:44:03.7383940Z Entering 'third_party/onnx/third_party/pybind11' 2025-08-14T20:44:03.7486490Z Entering 'third_party/opentelemetry-cpp' 2025-08-14T20:44:03.7586440Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-08-14T20:44:03.7685520Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-08-14T20:44:03.7783820Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-08-14T20:44:03.7882960Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-08-14T20:44:03.7983900Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-08-14T20:44:03.8082790Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-08-14T20:44:03.8181740Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-08-14T20:44:03.8278880Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-08-14T20:44:03.8378820Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-08-14T20:44:03.8480500Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-08-14T20:44:03.8588220Z Entering 'third_party/pocketfft' 2025-08-14T20:44:03.8689600Z Entering 'third_party/protobuf' 2025-08-14T20:44:03.8787950Z Entering 'third_party/protobuf/third_party/benchmark' 2025-08-14T20:44:03.8886840Z Entering 'third_party/protobuf/third_party/googletest' 2025-08-14T20:44:03.8986990Z Entering 'third_party/psimd' 2025-08-14T20:44:03.9087040Z Entering 'third_party/pthreadpool' 2025-08-14T20:44:03.9187060Z Entering 'third_party/pybind11' 2025-08-14T20:44:03.9286680Z Entering 'third_party/python-peachpy' 2025-08-14T20:44:03.9386000Z Entering 'third_party/sleef' 2025-08-14T20:44:03.9485100Z Entering 'third_party/tensorpipe' 2025-08-14T20:44:03.9582950Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-08-14T20:44:03.9681120Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-08-14T20:44:03.9779600Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-08-14T20:44:03.9878110Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-08-14T20:44:03.9974930Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-08-14T20:44:04.0091520Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** 2025-08-14T20:44:04.0163370Z ##[endgroup] 2025-08-14T20:44:04.0163630Z ##[group]Fetching the repository 2025-08-14T20:44:04.0167840Z [command]/usr/bin/git -c protocol.version=2 fetch --prune --no-recurse-submodules origin +refs/heads/*:refs/remotes/origin/* +refs/tags/*:refs/tags/* 2025-08-14T20:44:08.8397400Z From https://github.com/pytorch/pytorch 2025-08-14T20:44:08.8397730Z - [deleted] (none) -> ciflow/inductor/155263 2025-08-14T20:44:08.9504810Z - [deleted] (none) -> ciflow/inductor/159532 2025-08-14T20:44:08.9505100Z - [deleted] (none) -> ciflow/inductor/160277 2025-08-14T20:44:08.9505360Z - [deleted] (none) -> ciflow/inductor/160605 2025-08-14T20:44:08.9505840Z - [deleted] (none) -> ciflow/inductor/160645 2025-08-14T20:44:08.9506620Z - [deleted] (none) -> ciflow/trunk/155649 2025-08-14T20:44:08.9507470Z - [deleted] (none) -> ciflow/trunk/158137 2025-08-14T20:44:08.9508280Z - [deleted] (none) -> ciflow/trunk/159532 2025-08-14T20:44:08.9509020Z - [deleted] (none) -> ciflow/trunk/159896 2025-08-14T20:44:08.9509790Z - [deleted] (none) -> ciflow/trunk/160008 2025-08-14T20:44:08.9511050Z - [deleted] (none) -> ciflow/trunk/160195 2025-08-14T20:44:08.9511710Z - [deleted] (none) -> ciflow/trunk/160277 2025-08-14T20:44:08.9511970Z - [deleted] (none) -> ciflow/trunk/160559 2025-08-14T20:44:08.9512700Z - [deleted] (none) -> ciflow/trunk/160605 2025-08-14T20:44:08.9513380Z - [deleted] (none) -> ciflow/trunk/160645 2025-08-14T20:44:11.0444650Z 78538ad3e12..c4cb9008294 autoupdate-transformers-pin-via-pr -> origin/autoupdate-transformers-pin-via-pr 2025-08-14T20:44:11.0494090Z b1a93ba9c92..83644c51d62 gh/benjaminglass1/97/base -> origin/gh/benjaminglass1/97/base 2025-08-14T20:44:11.0502010Z 7b70291af79..a34af85993d gh/benjaminglass1/97/head -> origin/gh/benjaminglass1/97/head 2025-08-14T20:44:11.0510480Z + 0bf2ae50af0...7e133897309 gh/benjaminglass1/97/orig -> origin/gh/benjaminglass1/97/orig (forced update) 2025-08-14T20:44:11.0539050Z da55738df37..ef66c7b92a8 gh/davidberard98/391/base -> origin/gh/davidberard98/391/base 2025-08-14T20:44:11.0547400Z 180f9ca122f..f6f08cde19c gh/davidberard98/391/head -> origin/gh/davidberard98/391/head 2025-08-14T20:44:11.0555780Z + 890eb95d3ef...72cef1a9ba4 gh/davidberard98/391/orig -> origin/gh/davidberard98/391/orig (forced update) 2025-08-14T20:44:11.0558770Z * [new branch] gh/davidberard98/398/base -> origin/gh/davidberard98/398/base 2025-08-14T20:44:11.0560440Z * [new branch] gh/davidberard98/398/head -> origin/gh/davidberard98/398/head 2025-08-14T20:44:11.0562740Z * [new branch] gh/davidberard98/398/orig -> origin/gh/davidberard98/398/orig 2025-08-14T20:44:11.0595140Z 03f2c0ce4ea..8dcf14991ff gh/guilhermeleobas/147/head -> origin/gh/guilhermeleobas/147/head 2025-08-14T20:44:11.0603700Z + bcac008b1bc...9a2c169f560 gh/guilhermeleobas/147/orig -> origin/gh/guilhermeleobas/147/orig (forced update) 2025-08-14T20:44:11.0624850Z 6646c3dfa98..e10ecdec4fc gh/guilhermeleobas/214/base -> origin/gh/guilhermeleobas/214/base 2025-08-14T20:44:11.0632710Z a0786e4dfb6..44585d2f482 gh/guilhermeleobas/214/head -> origin/gh/guilhermeleobas/214/head 2025-08-14T20:44:11.0652330Z + dfc992f1c18...81069eac44e gh/guilhermeleobas/214/orig -> origin/gh/guilhermeleobas/214/orig (forced update) 2025-08-14T20:44:11.0660480Z 0e2e4700677..c7bdd8517c7 gh/guilhermeleobas/215/base -> origin/gh/guilhermeleobas/215/base 2025-08-14T20:44:11.0668770Z aa39c671ee4..c36bdef982a gh/guilhermeleobas/215/head -> origin/gh/guilhermeleobas/215/head 2025-08-14T20:44:11.0677100Z + 75115e98a36...83d85c0e02b gh/guilhermeleobas/215/orig -> origin/gh/guilhermeleobas/215/orig (forced update) 2025-08-14T20:44:11.0685120Z 736160d8a30..37addbd5732 gh/guilhermeleobas/216/base -> origin/gh/guilhermeleobas/216/base 2025-08-14T20:44:11.0693320Z 0d144f0e214..13d33dae859 gh/guilhermeleobas/216/head -> origin/gh/guilhermeleobas/216/head 2025-08-14T20:44:11.0701300Z + c1a8cec7d11...7a68526b8bf gh/guilhermeleobas/216/orig -> origin/gh/guilhermeleobas/216/orig (forced update) 2025-08-14T20:44:11.0709770Z d7f0eaa3e68..22ef8f43f77 gh/guilhermeleobas/217/base -> origin/gh/guilhermeleobas/217/base 2025-08-14T20:44:11.0717750Z fbcfd86ffea..81ef0f46d54 gh/guilhermeleobas/217/head -> origin/gh/guilhermeleobas/217/head 2025-08-14T20:44:11.0725910Z + 1170e08f52f...9c9dea5ab2a gh/guilhermeleobas/217/orig -> origin/gh/guilhermeleobas/217/orig (forced update) 2025-08-14T20:44:11.0734290Z 2e92f54b6eb..8d6f73986c7 gh/guilhermeleobas/220/base -> origin/gh/guilhermeleobas/220/base 2025-08-14T20:44:11.0742660Z 5fd06787cf7..f6602a59ed3 gh/guilhermeleobas/220/head -> origin/gh/guilhermeleobas/220/head 2025-08-14T20:44:11.0751680Z + 0dc671e9d14...5ce995d9848 gh/guilhermeleobas/220/orig -> origin/gh/guilhermeleobas/220/orig (forced update) 2025-08-14T20:44:11.0761250Z 7dbc8b11e0b..472b4f2b3f0 gh/guilhermeleobas/222/base -> origin/gh/guilhermeleobas/222/base 2025-08-14T20:44:11.0771720Z 2b3fdf36132..6d088669e7c gh/guilhermeleobas/222/head -> origin/gh/guilhermeleobas/222/head 2025-08-14T20:44:11.0780850Z + 7a002e85d17...d9e5647addb gh/guilhermeleobas/222/orig -> origin/gh/guilhermeleobas/222/orig (forced update) 2025-08-14T20:44:11.0790300Z 9c3f3a4753e..f12b09aa2fc gh/guilhermeleobas/223/base -> origin/gh/guilhermeleobas/223/base 2025-08-14T20:44:11.0798490Z b7b59571ccf..6c4dfda1327 gh/guilhermeleobas/223/head -> origin/gh/guilhermeleobas/223/head 2025-08-14T20:44:11.0806170Z + ddf915fc46b...965276ff7a3 gh/guilhermeleobas/223/orig -> origin/gh/guilhermeleobas/223/orig (forced update) 2025-08-14T20:44:11.0814270Z 216a2464a74..2a152d3688b gh/guilhermeleobas/224/base -> origin/gh/guilhermeleobas/224/base 2025-08-14T20:44:11.0821820Z 041d2afd1fa..9ba4773891f gh/guilhermeleobas/224/head -> origin/gh/guilhermeleobas/224/head 2025-08-14T20:44:11.0829740Z + a5d9bfb1408...9fbca79be0b gh/guilhermeleobas/224/orig -> origin/gh/guilhermeleobas/224/orig (forced update) 2025-08-14T20:44:11.0833310Z * [new branch] gh/henrylhtsang/146/base -> origin/gh/henrylhtsang/146/base 2025-08-14T20:44:11.0835270Z * [new branch] gh/henrylhtsang/146/head -> origin/gh/henrylhtsang/146/head 2025-08-14T20:44:11.0838090Z * [new branch] gh/henrylhtsang/146/orig -> origin/gh/henrylhtsang/146/orig 2025-08-14T20:44:11.0879160Z + 5b24808ebb7...69b2075d80a gh/jamesjwu/182/orig -> origin/gh/jamesjwu/182/orig (forced update) 2025-08-14T20:44:11.0886780Z + 2935bac07d5...f86a4a37deb gh/jamesjwu/183/orig -> origin/gh/jamesjwu/183/orig (forced update) 2025-08-14T20:44:11.0889570Z * [new branch] gh/jamesjwu/184/base -> origin/gh/jamesjwu/184/base 2025-08-14T20:44:11.0891010Z * [new branch] gh/jamesjwu/184/head -> origin/gh/jamesjwu/184/head 2025-08-14T20:44:11.0893260Z * [new branch] gh/jamesjwu/184/orig -> origin/gh/jamesjwu/184/orig 2025-08-14T20:44:11.0912070Z ddac6a90377..42e6bf60fab gh/seemethere/52/head -> origin/gh/seemethere/52/head 2025-08-14T20:44:11.0951070Z + 5ae4246e733...ea282e52889 gh/seemethere/52/orig -> origin/gh/seemethere/52/orig (forced update) 2025-08-14T20:44:11.0959270Z aa39fa244d2..79216f5a4d7 gh/seemethere/53/base -> origin/gh/seemethere/53/base 2025-08-14T20:44:11.0967750Z 6ca6cc656c3..58f0d82f923 gh/seemethere/53/head -> origin/gh/seemethere/53/head 2025-08-14T20:44:11.0975940Z + 7a8a5b5bda7...e903ff68e69 gh/seemethere/53/orig -> origin/gh/seemethere/53/orig (forced update) 2025-08-14T20:44:11.0984230Z + c7c40de98f8...716a8b70ca7 gh/seemethere/54/orig -> origin/gh/seemethere/54/orig (forced update) 2025-08-14T20:44:11.0992400Z + 7fcea928c6f...b7cd7e4993f gh/seemethere/55/orig -> origin/gh/seemethere/55/orig (forced update) 2025-08-14T20:44:11.1000350Z 2d47a11a1cc..2c619597f04 gh/seemethere/59/base -> origin/gh/seemethere/59/base 2025-08-14T20:44:11.1008040Z 885916cad99..ef354a38b2b gh/seemethere/59/head -> origin/gh/seemethere/59/head 2025-08-14T20:44:11.1016060Z + da01a35ee74...927830e88a7 gh/seemethere/59/orig -> origin/gh/seemethere/59/orig (forced update) 2025-08-14T20:44:11.1030750Z 7f5d2fe3aef..16b50f866ad gh/yangw-dev/14/base -> origin/gh/yangw-dev/14/base 2025-08-14T20:44:11.1039060Z 97d57cea8ee..14ac4b0cd8e gh/yangw-dev/14/head -> origin/gh/yangw-dev/14/head 2025-08-14T20:44:11.1073580Z + 0a0e2ec5444...196b71c5f3f gh/yangw-dev/14/orig -> origin/gh/yangw-dev/14/orig (forced update) 2025-08-14T20:44:11.1082380Z 4576f5bc30f..66605343d69 gh/yangw-dev/17/base -> origin/gh/yangw-dev/17/base 2025-08-14T20:44:11.1090880Z b56f5705a0e..44feacc104c gh/yangw-dev/17/head -> origin/gh/yangw-dev/17/head 2025-08-14T20:44:11.1099180Z + 44b8e361b49...cd4ff57277f gh/yangw-dev/17/orig -> origin/gh/yangw-dev/17/orig (forced update) 2025-08-14T20:44:11.1107310Z 4bb8d6ee236..8e0d31dd9a7 gh/yangw-dev/19/base -> origin/gh/yangw-dev/19/base 2025-08-14T20:44:11.1115150Z ff64e4ec359..7f2192ddf6c gh/yangw-dev/19/head -> origin/gh/yangw-dev/19/head 2025-08-14T20:44:11.1123150Z + 47aa0c2599e...c241d1d9683 gh/yangw-dev/19/orig -> origin/gh/yangw-dev/19/orig (forced update) 2025-08-14T20:44:11.1150220Z b74d09ea9cb..c6f893ae6a2 gh/ydwu4/253/base -> origin/gh/ydwu4/253/base 2025-08-14T20:44:11.1158580Z 343c95790d8..ec23555a649 gh/ydwu4/253/head -> origin/gh/ydwu4/253/head 2025-08-14T20:44:11.1166820Z + 46a1a2cb3f1...42603577470 gh/ydwu4/253/orig -> origin/gh/ydwu4/253/orig (forced update) 2025-08-14T20:44:11.1181710Z ccedc96dd99..4c947d82af4 gh/ydwu4/289/base -> origin/gh/ydwu4/289/base 2025-08-14T20:44:11.1189710Z 5635e90ad37..9faad049c4e gh/ydwu4/289/head -> origin/gh/ydwu4/289/head 2025-08-14T20:44:11.1204320Z + b9dc464b082...249b3f1a4cc gh/ydwu4/289/orig -> origin/gh/ydwu4/289/orig (forced update) 2025-08-14T20:44:11.1213360Z c6f4bbfe24a..56500da2a46 gh/ydwu4/290/base -> origin/gh/ydwu4/290/base 2025-08-14T20:44:11.1222050Z fb52b34d9d8..a9f4e34e95a gh/ydwu4/290/head -> origin/gh/ydwu4/290/head 2025-08-14T20:44:11.1231070Z + 4aee28d7cba...84588c9cecc gh/ydwu4/290/orig -> origin/gh/ydwu4/290/orig (forced update) 2025-08-14T20:44:11.1239550Z eafc551da2d..77fe4d9d877 gh/ydwu4/291/base -> origin/gh/ydwu4/291/base 2025-08-14T20:44:11.1248060Z 1eff640ef2a..884e299f170 gh/ydwu4/291/head -> origin/gh/ydwu4/291/head 2025-08-14T20:44:11.1256190Z + 535f628315d...561d588cae4 gh/ydwu4/291/orig -> origin/gh/ydwu4/291/orig (forced update) 2025-08-14T20:44:11.1264850Z 95767ac464a..047f5842de9 gh/ydwu4/292/base -> origin/gh/ydwu4/292/base 2025-08-14T20:44:11.1273460Z 855491e7d90..ca7a5d62924 gh/ydwu4/292/head -> origin/gh/ydwu4/292/head 2025-08-14T20:44:11.1281730Z + 281c90bb098...59233551ea9 gh/ydwu4/292/orig -> origin/gh/ydwu4/292/orig (forced update) 2025-08-14T20:44:11.1289950Z 90531c229e5..deb9cd690fc gh/ydwu4/293/base -> origin/gh/ydwu4/293/base 2025-08-14T20:44:11.1298550Z 0250adb10dc..5e052917f0f gh/ydwu4/293/head -> origin/gh/ydwu4/293/head 2025-08-14T20:44:11.1307230Z + 30b21ad5427...ffdc931dbb5 gh/ydwu4/293/orig -> origin/gh/ydwu4/293/orig (forced update) 2025-08-14T20:44:11.1315540Z 8d1de9cf2a4..37e3590e3f3 gh/ydwu4/295/base -> origin/gh/ydwu4/295/base 2025-08-14T20:44:11.1323800Z 3ec3a23927b..b43dcce75fd gh/ydwu4/295/head -> origin/gh/ydwu4/295/head 2025-08-14T20:44:11.1332190Z + b3ae71c07a2...b3c1981a98a gh/ydwu4/295/orig -> origin/gh/ydwu4/295/orig (forced update) 2025-08-14T20:44:11.1339920Z dda63ad5505..dcfb17c44e4 gh/ydwu4/296/base -> origin/gh/ydwu4/296/base 2025-08-14T20:44:11.1349180Z f5a3014ee02..19f4a9b32ef gh/ydwu4/296/head -> origin/gh/ydwu4/296/head 2025-08-14T20:44:11.1357190Z + 9b776485c6b...9ee4bfc6f03 gh/ydwu4/296/orig -> origin/gh/ydwu4/296/orig (forced update) 2025-08-14T20:44:11.1370700Z fc25c68f20f..c107eb8fa07 gh/ydwu4/301/base -> origin/gh/ydwu4/301/base 2025-08-14T20:44:11.1373460Z 2b889529039..d53b6450b00 gh/ydwu4/301/head -> origin/gh/ydwu4/301/head 2025-08-14T20:44:11.1382110Z + 3e899b2ce51...1512814970a gh/ydwu4/301/orig -> origin/gh/ydwu4/301/orig (forced update) 2025-08-14T20:44:11.1391000Z 2b889529039..b0a7fdb5401 gh/ydwu4/305/base -> origin/gh/ydwu4/305/base 2025-08-14T20:44:11.1398960Z 7eeafe602af..538a08b69f2 gh/ydwu4/305/head -> origin/gh/ydwu4/305/head 2025-08-14T20:44:11.1407660Z + 4d734258b6d...48e3105c227 gh/ydwu4/305/orig -> origin/gh/ydwu4/305/orig (forced update) 2025-08-14T20:44:11.1416490Z 867bd790e14..e8622caa50f gh/ydwu4/306/base -> origin/gh/ydwu4/306/base 2025-08-14T20:44:11.1424680Z 9973dd5f806..14d2597c77a gh/ydwu4/306/head -> origin/gh/ydwu4/306/head 2025-08-14T20:44:11.1432790Z + 1d368e3911c...66680d2c273 gh/ydwu4/306/orig -> origin/gh/ydwu4/306/orig (forced update) 2025-08-14T20:44:11.1441460Z 9973dd5f806..a42184b16d8 gh/ydwu4/307/base -> origin/gh/ydwu4/307/base 2025-08-14T20:44:11.1449760Z 9fa0484136c..a48d6f473d9 gh/ydwu4/307/head -> origin/gh/ydwu4/307/head 2025-08-14T20:44:11.1457280Z + 7e922ff99d8...dd60840ccfd gh/ydwu4/307/orig -> origin/gh/ydwu4/307/orig (forced update) 2025-08-14T20:44:11.1465800Z 12913a9a722..39133df24c2 gh/ydwu4/308/head -> origin/gh/ydwu4/308/head 2025-08-14T20:44:11.1474050Z + cee669623d0...279de9fc5c6 gh/ydwu4/308/orig -> origin/gh/ydwu4/308/orig (forced update) 2025-08-14T20:44:11.1476510Z * [new branch] gh/ydwu4/309/base -> origin/gh/ydwu4/309/base 2025-08-14T20:44:11.1478170Z * [new branch] gh/ydwu4/309/head -> origin/gh/ydwu4/309/head 2025-08-14T20:44:11.1480430Z * [new branch] gh/ydwu4/309/orig -> origin/gh/ydwu4/309/orig 2025-08-14T20:44:11.1482870Z * [new branch] gh/ydwu4/310/base -> origin/gh/ydwu4/310/base 2025-08-14T20:44:11.1484670Z * [new branch] gh/ydwu4/310/head -> origin/gh/ydwu4/310/head 2025-08-14T20:44:11.1486480Z * [new branch] gh/ydwu4/310/orig -> origin/gh/ydwu4/310/orig 2025-08-14T20:44:11.1489210Z * [new branch] gh/ydwu4/311/base -> origin/gh/ydwu4/311/base 2025-08-14T20:44:11.1490780Z * [new branch] gh/ydwu4/311/head -> origin/gh/ydwu4/311/head 2025-08-14T20:44:11.1492680Z * [new branch] gh/ydwu4/311/orig -> origin/gh/ydwu4/311/orig 2025-08-14T20:44:11.1524540Z 077cb389746..1fc683cf17c main -> origin/main 2025-08-14T20:44:11.1578310Z + e33a33da492...8ac9fe6cbf8 mlazos/tuple-fixes2 -> origin/mlazos/tuple-fixes2 (forced update) 2025-08-14T20:44:11.1589530Z + fd5bdcd271d...0203223a156 update_submodule_FBGEMM -> origin/update_submodule_FBGEMM (forced update) 2025-08-14T20:44:11.1610590Z + 92542d3b497...906985c0e96 update_submodule_kineto -> origin/update_submodule_kineto (forced update) 2025-08-14T20:44:11.1631610Z 6f0f4e0c3ea..7e27347fd35 viable/strict -> origin/viable/strict 2025-08-14T20:44:11.1641600Z t [tag update] ciflow/binaries/159827 -> ciflow/binaries/159827 2025-08-14T20:44:11.1643860Z t [tag update] ciflow/h100/159158 -> ciflow/h100/159158 2025-08-14T20:44:11.1645400Z t [tag update] ciflow/inductor-rocm/159158 -> ciflow/inductor-rocm/159158 2025-08-14T20:44:11.1647750Z t [tag update] ciflow/inductor/153966 -> ciflow/inductor/153966 2025-08-14T20:44:11.1648980Z t [tag update] ciflow/inductor/154193 -> ciflow/inductor/154193 2025-08-14T20:44:11.1651330Z t [tag update] ciflow/inductor/155504 -> ciflow/inductor/155504 2025-08-14T20:44:11.1652440Z * [new tag] ciflow/inductor/155958 -> ciflow/inductor/155958 2025-08-14T20:44:11.1654920Z t [tag update] ciflow/inductor/159009 -> ciflow/inductor/159009 2025-08-14T20:44:11.1656470Z t [tag update] ciflow/inductor/159010 -> ciflow/inductor/159010 2025-08-14T20:44:11.1658830Z t [tag update] ciflow/inductor/159158 -> ciflow/inductor/159158 2025-08-14T20:44:11.1659760Z * [new tag] ciflow/inductor/159365 -> ciflow/inductor/159365 2025-08-14T20:44:11.1662220Z t [tag update] ciflow/inductor/159366 -> ciflow/inductor/159366 2025-08-14T20:44:11.1663510Z t [tag update] ciflow/inductor/159367 -> ciflow/inductor/159367 2025-08-14T20:44:11.1665400Z t [tag update] ciflow/inductor/159368 -> ciflow/inductor/159368 2025-08-14T20:44:11.1667340Z t [tag update] ciflow/inductor/159483 -> ciflow/inductor/159483 2025-08-14T20:44:11.1668630Z * [new tag] ciflow/inductor/159523 -> ciflow/inductor/159523 2025-08-14T20:44:11.1670520Z t [tag update] ciflow/inductor/159864 -> ciflow/inductor/159864 2025-08-14T20:44:11.1672170Z t [tag update] ciflow/inductor/159865 -> ciflow/inductor/159865 2025-08-14T20:44:11.1673870Z t [tag update] ciflow/inductor/159902 -> ciflow/inductor/159902 2025-08-14T20:44:11.1675770Z t [tag update] ciflow/inductor/159923 -> ciflow/inductor/159923 2025-08-14T20:44:11.1677800Z t [tag update] ciflow/inductor/160201 -> ciflow/inductor/160201 2025-08-14T20:44:11.1686400Z t [tag update] ciflow/inductor/160374 -> ciflow/inductor/160374 2025-08-14T20:44:11.1688100Z t [tag update] ciflow/inductor/160461 -> ciflow/inductor/160461 2025-08-14T20:44:11.1689790Z t [tag update] ciflow/inductor/160467 -> ciflow/inductor/160467 2025-08-14T20:44:11.1691450Z t [tag update] ciflow/inductor/160476 -> ciflow/inductor/160476 2025-08-14T20:44:11.1693110Z t [tag update] ciflow/inductor/160483 -> ciflow/inductor/160483 2025-08-14T20:44:11.1727720Z t [tag update] ciflow/inductor/160539 -> ciflow/inductor/160539 2025-08-14T20:44:11.1729380Z t [tag update] ciflow/inductor/160540 -> ciflow/inductor/160540 2025-08-14T20:44:11.1756720Z t [tag update] ciflow/inductor/160548 -> ciflow/inductor/160548 2025-08-14T20:44:11.1758370Z t [tag update] ciflow/inductor/160583 -> ciflow/inductor/160583 2025-08-14T20:44:11.1760620Z t [tag update] ciflow/inductor/160592 -> ciflow/inductor/160592 2025-08-14T20:44:11.1762020Z t [tag update] ciflow/inductor/160635 -> ciflow/inductor/160635 2025-08-14T20:44:11.1763410Z * [new tag] ciflow/inductor/160658 -> ciflow/inductor/160658 2025-08-14T20:44:11.1764730Z * [new tag] ciflow/inductor/160662 -> ciflow/inductor/160662 2025-08-14T20:44:11.1766130Z * [new tag] ciflow/inductor/160668 -> ciflow/inductor/160668 2025-08-14T20:44:11.1767440Z * [new tag] ciflow/inductor/160669 -> ciflow/inductor/160669 2025-08-14T20:44:11.1768800Z * [new tag] ciflow/inductor/160670 -> ciflow/inductor/160670 2025-08-14T20:44:11.1770300Z * [new tag] ciflow/inductor/160671 -> ciflow/inductor/160671 2025-08-14T20:44:11.1772720Z t [tag update] ciflow/periodic/160201 -> ciflow/periodic/160201 2025-08-14T20:44:11.1780230Z t [tag update] ciflow/rocm-mi300/159158 -> ciflow/rocm-mi300/159158 2025-08-14T20:44:11.1781290Z * [new tag] ciflow/rocm/156491 -> ciflow/rocm/156491 2025-08-14T20:44:11.1783060Z t [tag update] ciflow/rocm/159158 -> ciflow/rocm/159158 2025-08-14T20:44:11.1784400Z * [new tag] ciflow/rocm/160676 -> ciflow/rocm/160676 2025-08-14T20:44:11.1786860Z t [tag update] ciflow/trunk/154193 -> ciflow/trunk/154193 2025-08-14T20:44:11.1787790Z * [new tag] ciflow/trunk/155958 -> ciflow/trunk/155958 2025-08-14T20:44:11.1789320Z * [new tag] ciflow/trunk/158810 -> ciflow/trunk/158810 2025-08-14T20:44:11.1790540Z * [new tag] ciflow/trunk/158812 -> ciflow/trunk/158812 2025-08-14T20:44:11.1799230Z t [tag update] ciflow/trunk/158863 -> ciflow/trunk/158863 2025-08-14T20:44:11.1800660Z t [tag update] ciflow/trunk/158864 -> ciflow/trunk/158864 2025-08-14T20:44:11.1802490Z t [tag update] ciflow/trunk/158883 -> ciflow/trunk/158883 2025-08-14T20:44:11.1804100Z t [tag update] ciflow/trunk/158965 -> ciflow/trunk/158965 2025-08-14T20:44:11.1805820Z t [tag update] ciflow/trunk/159158 -> ciflow/trunk/159158 2025-08-14T20:44:11.1807200Z * [new tag] ciflow/trunk/159682 -> ciflow/trunk/159682 2025-08-14T20:44:11.1809660Z t [tag update] ciflow/trunk/159923 -> ciflow/trunk/159923 2025-08-14T20:44:11.1818230Z t [tag update] ciflow/trunk/160454 -> ciflow/trunk/160454 2025-08-14T20:44:11.1819580Z t [tag update] ciflow/trunk/160592 -> ciflow/trunk/160592 2025-08-14T20:44:11.1820970Z * [new tag] ciflow/trunk/160643 -> ciflow/trunk/160643 2025-08-14T20:44:11.1822390Z * [new tag] ciflow/trunk/160649 -> ciflow/trunk/160649 2025-08-14T20:44:11.1824590Z t [tag update] ciflow/vllm/160116 -> ciflow/vllm/160116 2025-08-14T20:44:11.1825980Z t [tag update] ciflow/vllm/160583 -> ciflow/vllm/160583 2025-08-14T20:44:11.1828360Z t [tag update] ciflow/win-arm64/160454 -> ciflow/win-arm64/160454 2025-08-14T20:44:11.1830390Z * [new tag] trunk/0d3461bac0fb5177e35152d980b301ea3a0aa2c4 -> trunk/0d3461bac0fb5177e35152d980b301ea3a0aa2c4 2025-08-14T20:44:11.1832410Z * [new tag] trunk/1028c5e2d50e121865bf98307e7c035f549a24b2 -> trunk/1028c5e2d50e121865bf98307e7c035f549a24b2 2025-08-14T20:44:11.1835230Z * [new tag] trunk/19b4283884b2d9b3a0eb364da10b1540d14ab7a7 -> trunk/19b4283884b2d9b3a0eb364da10b1540d14ab7a7 2025-08-14T20:44:11.1836570Z * [new tag] trunk/1c2587119152cec3905647a47c65d3d26619c5a8 -> trunk/1c2587119152cec3905647a47c65d3d26619c5a8 2025-08-14T20:44:11.1838580Z * [new tag] trunk/3028fa6ce9d9c96671722ab8213a1a30670d7cf2 -> trunk/3028fa6ce9d9c96671722ab8213a1a30670d7cf2 2025-08-14T20:44:11.1840690Z * [new tag] trunk/5665dc9ab76b84d7c90d845ffb0f6349b3621919 -> trunk/5665dc9ab76b84d7c90d845ffb0f6349b3621919 2025-08-14T20:44:11.1842270Z * [new tag] trunk/65053c03a3d209060cb239d20a229dac37cf9dd1 -> trunk/65053c03a3d209060cb239d20a229dac37cf9dd1 2025-08-14T20:44:11.1843680Z * [new tag] trunk/6c05ea6475beaf3acc05e1bda0f3f8fe3bdc1d49 -> trunk/6c05ea6475beaf3acc05e1bda0f3f8fe3bdc1d49 2025-08-14T20:44:11.1845770Z * [new tag] trunk/8d6d3246316e1767a57d5e855acd6208da753b75 -> trunk/8d6d3246316e1767a57d5e855acd6208da753b75 2025-08-14T20:44:11.1847890Z * [new tag] trunk/b9d7de3a094598c3dc0dd52e57bce30eb684c9d8 -> trunk/b9d7de3a094598c3dc0dd52e57bce30eb684c9d8 2025-08-14T20:44:11.1850750Z * [new tag] trunk/fdfd69bb05488d76123db9cc1cdd90ac4137bbfb -> trunk/fdfd69bb05488d76123db9cc1cdd90ac4137bbfb 2025-08-14T20:44:11.3076010Z [command]/usr/bin/git rev-parse --verify --quiet 1fc683cf17c8c673044538d10266c00f92987be2^{object} 2025-08-14T20:44:11.3136920Z 1fc683cf17c8c673044538d10266c00f92987be2 2025-08-14T20:44:11.3140330Z ##[endgroup] 2025-08-14T20:44:11.3140580Z ##[group]Determining the checkout info 2025-08-14T20:44:11.3140850Z ##[endgroup] 2025-08-14T20:44:11.3143490Z [command]/usr/bin/git sparse-checkout disable 2025-08-14T20:44:11.3323910Z [command]/usr/bin/git config --local --unset-all extensions.worktreeConfig 2025-08-14T20:44:11.3387290Z ##[group]Checking out the ref 2025-08-14T20:44:11.3390750Z [command]/usr/bin/git checkout --progress --force 1fc683cf17c8c673044538d10266c00f92987be2 2025-08-14T20:44:11.6297450Z Previous HEAD position was bdfe0a77e92 just do inductor sizevars version 2025-08-14T20:44:11.6316780Z HEAD is now at 1fc683cf17c [Inductor] Allow indexing a flexible layout for extract_input_node_reduction_ranges (#160645) 2025-08-14T20:44:11.6325790Z ##[endgroup] 2025-08-14T20:44:11.6326050Z ##[group]Setting up auth for fetching submodules 2025-08-14T20:44:11.6330610Z [command]/usr/bin/git config --global http.https://github.com/.extraheader AUTHORIZATION: basic *** 2025-08-14T20:44:11.6407570Z [command]/usr/bin/git config --global --unset-all url.https://github.com/.insteadOf 2025-08-14T20:44:11.6471040Z [command]/usr/bin/git config --global --add url.https://github.com/.insteadOf git@github.com: 2025-08-14T20:44:11.6534020Z [command]/usr/bin/git config --global --add url.https://github.com/.insteadOf org-21003710@github.com: 2025-08-14T20:44:11.6595280Z ##[endgroup] 2025-08-14T20:44:11.6595570Z ##[group]Fetching submodules 2025-08-14T20:44:11.6600370Z [command]/usr/bin/git submodule sync --recursive 2025-08-14T20:44:11.7119210Z Synchronizing submodule url for 'android/libs/fbjni' 2025-08-14T20:44:11.7160670Z Synchronizing submodule url for 'third_party/FP16' 2025-08-14T20:44:11.7198180Z Synchronizing submodule url for 'third_party/FXdiv' 2025-08-14T20:44:11.7241990Z Synchronizing submodule url for 'third_party/NNPACK' 2025-08-14T20:44:11.7279070Z Synchronizing submodule url for 'third_party/NVTX' 2025-08-14T20:44:11.7316960Z Synchronizing submodule url for 'third_party/VulkanMemoryAllocator' 2025-08-14T20:44:11.7354850Z Synchronizing submodule url for 'third_party/XNNPACK' 2025-08-14T20:44:11.7396480Z Synchronizing submodule url for 'third_party/aiter' 2025-08-14T20:44:11.7433120Z Synchronizing submodule url for 'third_party/aiter/3rdparty/composable_kernel' 2025-08-14T20:44:11.7474200Z Synchronizing submodule url for 'third_party/benchmark' 2025-08-14T20:44:11.7512730Z Synchronizing submodule url for 'third_party/composable_kernel' 2025-08-14T20:44:11.7552420Z Synchronizing submodule url for 'third_party/cpp-httplib' 2025-08-14T20:44:11.7589300Z Synchronizing submodule url for 'third_party/cpuinfo' 2025-08-14T20:44:11.7627280Z Synchronizing submodule url for 'third_party/cudnn_frontend' 2025-08-14T20:44:11.7664270Z Synchronizing submodule url for 'third_party/cutlass' 2025-08-14T20:44:11.7710800Z Synchronizing submodule url for 'third_party/fbgemm' 2025-08-14T20:44:11.7767360Z Synchronizing submodule url for 'third_party/fbgemm/external/asmjit' 2025-08-14T20:44:11.7804490Z Synchronizing submodule url for 'third_party/fbgemm/external/composable_kernel' 2025-08-14T20:44:11.7849470Z Synchronizing submodule url for 'third_party/fbgemm/external/cpuinfo' 2025-08-14T20:44:11.7893080Z Synchronizing submodule url for 'third_party/fbgemm/external/cutlass' 2025-08-14T20:44:11.7942040Z Synchronizing submodule url for 'third_party/fbgemm/external/googletest' 2025-08-14T20:44:11.7984430Z Synchronizing submodule url for 'third_party/fbgemm/external/hipify_torch' 2025-08-14T20:44:11.8025400Z Synchronizing submodule url for 'third_party/fbgemm/external/json' 2025-08-14T20:44:11.8064540Z Synchronizing submodule url for 'third_party/flash-attention' 2025-08-14T20:44:11.8099910Z Synchronizing submodule url for 'third_party/flash-attention/csrc/composable_kernel' 2025-08-14T20:44:11.8138130Z Synchronizing submodule url for 'third_party/flash-attention/csrc/cutlass' 2025-08-14T20:44:11.8179950Z Synchronizing submodule url for 'third_party/flatbuffers' 2025-08-14T20:44:11.8219800Z Synchronizing submodule url for 'third_party/fmt' 2025-08-14T20:44:11.8257100Z Synchronizing submodule url for 'third_party/gemmlowp/gemmlowp' 2025-08-14T20:44:11.8294250Z Synchronizing submodule url for 'third_party/gloo' 2025-08-14T20:44:11.8331780Z Synchronizing submodule url for 'third_party/googletest' 2025-08-14T20:44:11.8375460Z Synchronizing submodule url for 'third_party/ideep' 2025-08-14T20:44:11.8426740Z Synchronizing submodule url for 'third_party/ideep/mkl-dnn' 2025-08-14T20:44:11.8467930Z Synchronizing submodule url for 'third_party/ittapi' 2025-08-14T20:44:11.8506040Z Synchronizing submodule url for 'third_party/kineto' 2025-08-14T20:44:11.8540570Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/dynolog' 2025-08-14T20:44:11.8576050Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-08-14T20:44:11.8613960Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-08-14T20:44:11.8652730Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-08-14T20:44:11.8691300Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-08-14T20:44:11.8726050Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-08-14T20:44:11.8765210Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-08-14T20:44:11.8802660Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-08-14T20:44:11.8839380Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-08-14T20:44:11.8878000Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-08-14T20:44:11.8917450Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/fmt' 2025-08-14T20:44:11.8954360Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/googletest' 2025-08-14T20:44:11.8992750Z Synchronizing submodule url for 'third_party/kleidiai' 2025-08-14T20:44:11.9037050Z Synchronizing submodule url for 'third_party/mimalloc' 2025-08-14T20:44:11.9074880Z Synchronizing submodule url for 'third_party/nlohmann' 2025-08-14T20:44:11.9112240Z Synchronizing submodule url for 'third_party/onnx' 2025-08-14T20:44:11.9172010Z Synchronizing submodule url for 'third_party/onnx/third_party/pybind11' 2025-08-14T20:44:11.9212000Z Synchronizing submodule url for 'third_party/opentelemetry-cpp' 2025-08-14T20:44:11.9248560Z Synchronizing submodule url for 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-08-14T20:44:11.9285340Z Synchronizing submodule url for 'third_party/opentelemetry-cpp/third_party/googletest' 2025-08-14T20:44:11.9321880Z Synchronizing submodule url for 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-08-14T20:44:11.9358220Z Synchronizing submodule url for 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-08-14T20:44:11.9394930Z Synchronizing submodule url for 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-08-14T20:44:11.9431390Z Synchronizing submodule url for 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-08-14T20:44:11.9473680Z Synchronizing submodule url for 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-08-14T20:44:11.9508660Z Synchronizing submodule url for 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-08-14T20:44:11.9545210Z Synchronizing submodule url for 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-08-14T20:44:11.9620050Z Synchronizing submodule url for 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-08-14T20:44:11.9667430Z Synchronizing submodule url for 'third_party/pocketfft' 2025-08-14T20:44:11.9734610Z Synchronizing submodule url for 'third_party/protobuf' 2025-08-14T20:44:11.9795090Z Synchronizing submodule url for 'third_party/protobuf/third_party/benchmark' 2025-08-14T20:44:11.9847130Z Synchronizing submodule url for 'third_party/protobuf/third_party/googletest' 2025-08-14T20:44:11.9885620Z Synchronizing submodule url for 'third_party/psimd' 2025-08-14T20:44:11.9923570Z Synchronizing submodule url for 'third_party/pthreadpool' 2025-08-14T20:44:11.9959870Z Synchronizing submodule url for 'third_party/pybind11' 2025-08-14T20:44:11.9996410Z Synchronizing submodule url for 'third_party/python-peachpy' 2025-08-14T20:44:12.0032450Z Synchronizing submodule url for 'third_party/sleef' 2025-08-14T20:44:12.0069320Z Synchronizing submodule url for 'third_party/tensorpipe' 2025-08-14T20:44:12.0110010Z Synchronizing submodule url for 'third_party/tensorpipe/third_party/googletest' 2025-08-14T20:44:12.0152460Z Synchronizing submodule url for 'third_party/tensorpipe/third_party/libnop' 2025-08-14T20:44:12.0194280Z Synchronizing submodule url for 'third_party/tensorpipe/third_party/libuv' 2025-08-14T20:44:12.0236450Z Synchronizing submodule url for 'third_party/tensorpipe/third_party/pybind11' 2025-08-14T20:44:12.0282870Z Synchronizing submodule url for 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-08-14T20:44:12.0326770Z [command]/usr/bin/git -c protocol.version=2 submodule update --init --force --recursive 2025-08-14T20:44:12.1035440Z Submodule path 'android/libs/fbjni': checked out '7e1e1fe3858c63c251c637ae41a20de425dde96f' 2025-08-14T20:44:12.1215840Z Submodule path 'third_party/FP16': checked out '4dfe081cf6bcd15db339cf2680b9281b8451eeb3' 2025-08-14T20:44:12.1408360Z Submodule path 'third_party/FXdiv': checked out 'b408327ac2a15ec3e43352421954f5b1967701d1' 2025-08-14T20:44:12.1587770Z Submodule path 'third_party/NNPACK': checked out 'c07e3a0400713d546e0dea2d5466dd22ea389c73' 2025-08-14T20:44:12.2157460Z Submodule path 'third_party/NVTX': checked out '2942f167cc30c5e3a44a2aecd5b0d9c07ff61a07' 2025-08-14T20:44:12.2352040Z Submodule path 'third_party/VulkanMemoryAllocator': checked out '1d8f600fd424278486eade7ed3e877c99f0846b1' 2025-08-14T20:44:12.2725950Z Submodule path 'third_party/XNNPACK': checked out '51a0103656eff6fc9bfd39a4597923c4b542c883' 2025-08-14T20:44:12.3134630Z Submodule path 'third_party/aiter': checked out '01aae101b9e5e94d6c16a9514c9fb8df99c93150' 2025-08-14T20:44:12.4118520Z Submodule path 'third_party/aiter/3rdparty/composable_kernel': checked out 'cffe8fa2a442ac8e80dd236a1a5d24fe3d7e0cbf' 2025-08-14T20:44:12.4534840Z Submodule path 'third_party/benchmark': checked out '299e5928955cc62af9968370293b916f5130916f' 2025-08-14T20:44:12.5138450Z Submodule path 'third_party/composable_kernel': checked out '7fe50dc3da2069d6645d9deb8c017a876472a977' 2025-08-14T20:44:12.5395160Z Submodule path 'third_party/cpp-httplib': checked out '3af7f2c16147f3fbc6e4d717032daf505dc1652c' 2025-08-14T20:44:12.5606720Z Submodule path 'third_party/cpuinfo': checked out '5e3d2445e6a84d9599bee2bf78edbb4d80865e1d' 2025-08-14T20:44:12.5809210Z Submodule path 'third_party/cudnn_frontend': checked out 'f937055efc6d414d11f4c6577e3977fe74f35fb6' 2025-08-14T20:44:12.6518110Z Submodule path 'third_party/cutlass': checked out 'e51efbfe18fe4f4cbb66ab814c55bf4aa0185491' 2025-08-14T20:44:12.8406760Z Submodule path 'third_party/fbgemm': checked out '21c7d30c526c0f1ad873ecc632dca6cfa8a69067' 2025-08-14T20:44:12.8773430Z Submodule path 'third_party/fbgemm/external/asmjit': checked out 'a3199e8857792cd10b7589ff5d58343d2c9008ea' 2025-08-14T20:44:12.9169500Z Submodule path 'third_party/fbgemm/external/composable_kernel': checked out 'b1281b8b08d973a7064f864f47eeb30f3e2596e9' 2025-08-14T20:44:12.9505380Z Submodule path 'third_party/fbgemm/external/cpuinfo': checked out '6543fec09b2f04ac4a666882998b534afc9c1349' 2025-08-14T20:44:12.9907290Z Submodule path 'third_party/fbgemm/external/cutlass': checked out 'b40777404c174b9694a870bff5c13ce6b7f656ad' 2025-08-14T20:44:13.0442300Z Submodule path 'third_party/fbgemm/external/googletest': checked out '52eb8108c5bdec04579160ae17225d66034bd723' 2025-08-14T20:44:13.0686230Z Submodule path 'third_party/fbgemm/external/hipify_torch': checked out 'a4337c69fe0e2552a7b7b0669178926beeed828c' 2025-08-14T20:44:13.1675110Z Submodule path 'third_party/fbgemm/external/json': checked out '9cca280a4d0ccf0c08f47a99aa71d1b0e52f8d03' 2025-08-14T20:44:13.2412540Z Submodule path 'third_party/flash-attention': checked out '979702c87a8713a8e0a5e9fee122b90d2ef13be5' 2025-08-14T20:44:13.3468330Z Submodule path 'third_party/flash-attention/csrc/composable_kernel': checked out '888317e698e9803c62bd38568abc9e05d7709f33' 2025-08-14T20:44:13.4453350Z Submodule path 'third_party/flash-attention/csrc/cutlass': checked out 'c506e16788cb08416a4a57e11a9067beeee29420' 2025-08-14T20:44:13.4967540Z Submodule path 'third_party/flatbuffers': checked out 'a2cd1ea3b6d3fee220106b5fed3f7ce8da9eb757' 2025-08-14T20:44:13.5233900Z Submodule path 'third_party/fmt': checked out '40626af88bd7df9a5fb80be7b25ac85b122d6c21' 2025-08-14T20:44:13.5508150Z Submodule path 'third_party/gemmlowp/gemmlowp': checked out '3fb5c176c17c765a3492cd2f0321b0dab712f350' 2025-08-14T20:44:13.5858320Z Submodule path 'third_party/gloo': checked out 'c7b7b022c124d9643957d9bd55f57ac59fce8fa2' 2025-08-14T20:44:13.6223040Z Submodule path 'third_party/googletest': checked out '52eb8108c5bdec04579160ae17225d66034bd723' 2025-08-14T20:44:13.6443950Z Submodule path 'third_party/ideep': checked out '719d8e6cd7f7a0e01b155657526d693acf97c2b3' 2025-08-14T20:44:13.9145350Z Submodule path 'third_party/ideep/mkl-dnn': checked out '8d263e693366ef8db40acc569cc7d8edf644556d' 2025-08-14T20:44:13.9323040Z Submodule path 'third_party/ittapi': checked out 'dec1d23ca65ab069d225dfe40dea14f455170959' 2025-08-14T20:44:13.9593710Z Submodule path 'third_party/kineto': checked out '5e7501833f1021ce6f618572d3baf657b6319658' 2025-08-14T20:44:13.9940830Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog': checked out '7d04a0053a845370ae06ce317a22a48e9edcc74e' 2025-08-14T20:44:14.0289070Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM': checked out 'ffde4e54bc7249a6039a5e6b45b395141e1217f9' 2025-08-14T20:44:14.0618720Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr': checked out '871ed52d350214a034f6ef8a3b8f51c5ce1bd400' 2025-08-14T20:44:14.1117550Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt': checked out 'cd4af11efc9c622896a3e4cb599fa28668ca3d05' 2025-08-14T20:44:14.1350000Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags': checked out 'e171aa2d15ed9eb17054558e0b3a6a413bb01067' 2025-08-14T20:44:14.1574520Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc': checked out '8411df715cf522606e3b1aca386ddfc0b63d34b4' 2025-08-14T20:44:14.1852380Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog': checked out 'b33e3bad4c46c8a6345525fd822af355e5ef9446' 2025-08-14T20:44:14.2214290Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest': checked out '58d77fa8070e8cec2dc1ed015d66b454c8d78850' 2025-08-14T20:44:14.2842740Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/json': checked out '4f8fba14066156b73f1189a2b8bd568bde5284c5' 2025-08-14T20:44:14.3062980Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs': checked out 'f68a2fa8ea36c783bdd760371411fcb495aa3150' 2025-08-14T20:44:14.3567660Z Submodule path 'third_party/kineto/libkineto/third_party/fmt': checked out '0041a40c1350ba702d475b9c4ad62da77caea164' 2025-08-14T20:44:14.3946960Z Submodule path 'third_party/kineto/libkineto/third_party/googletest': checked out '7aca84427f224eeed3144123d5230d5871e93347' 2025-08-14T20:44:14.4354590Z Submodule path 'third_party/kleidiai': checked out 'cca02c2f69dd18e1f12647c1c0bdc8cf90e680c7' 2025-08-14T20:44:14.4834610Z Submodule path 'third_party/mimalloc': checked out 'fbd8b99c2b828428947d70fdc046bb55609be93e' 2025-08-14T20:44:14.5462440Z Submodule path 'third_party/nlohmann': checked out '55f93686c01528224f448c19128836e7df245f72' 2025-08-14T20:44:14.6175540Z Submodule path 'third_party/onnx': checked out 'e709452ef2bbc1d113faf678c24e6d3467696e83' 2025-08-14T20:44:14.7012960Z Submodule path 'third_party/onnx/third_party/pybind11': checked out 'a2e59f0e7065404b44dfe92a28aca47ba1378dc4' 2025-08-14T20:44:14.7603000Z Submodule path 'third_party/opentelemetry-cpp': checked out 'a799f4aed9c94b765dcdaabaeab7d5e7e2310878' 2025-08-14T20:44:14.7958820Z Submodule path 'third_party/opentelemetry-cpp/third_party/benchmark': checked out 'd572f4777349d43653b21d6c2fc63020ab326db2' 2025-08-14T20:44:14.8335430Z Submodule path 'third_party/opentelemetry-cpp/third_party/googletest': checked out 'b796f7d44681514f58a683a3a71ff17c94edb0c1' 2025-08-14T20:44:14.8638270Z Submodule path 'third_party/opentelemetry-cpp/third_party/ms-gsl': checked out '6f4529395c5b7c2d661812257cd6780c67e54afa' 2025-08-14T20:44:14.9254460Z Submodule path 'third_party/opentelemetry-cpp/third_party/nlohmann-json': checked out 'bc889afb4c5bf1c0d8ee29ef35eaaf4c8bef8a5d' 2025-08-14T20:44:14.9497130Z Submodule path 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto': checked out '4ca4f0335c63cda7ab31ea7ed70d6553aee14dce' 2025-08-14T20:44:14.9700960Z Submodule path 'third_party/opentelemetry-cpp/third_party/opentracing-cpp': checked out '06b57f48ded1fa3bdd3d4346f6ef29e40e08eaf5' 2025-08-14T20:44:15.0138690Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp': checked out 'c9ffcdda9086ffd9e1283ea7a0276d831f3c8a8d' 2025-08-14T20:44:15.0532570Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb': checked out 'eefb26f82b233268fc98577d265352720d477ba4' 2025-08-14T20:44:15.0908310Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest': checked out 'e2239ee6043f73722e7aa812a459f54a28552929' 2025-08-14T20:44:15.2505070Z Submodule path 'third_party/opentelemetry-cpp/tools/vcpkg': checked out '8eb57355a4ffb410a2e94c07b4dca2dffbee8e50' 2025-08-14T20:44:15.2720980Z Submodule path 'third_party/pocketfft': checked out '0fa0ef591e38c2758e3184c6c23e497b9f732ffa' 2025-08-14T20:44:15.3691380Z Submodule path 'third_party/protobuf': checked out 'd1eca4e4b421cd2997495c4b4e65cea6be4e9b8a' 2025-08-14T20:44:15.4228150Z Submodule path 'third_party/protobuf/third_party/benchmark': checked out '5b7683f49e1e9223cf9927b24f6fd3d6bd82e3f8' 2025-08-14T20:44:15.4901510Z Submodule path 'third_party/protobuf/third_party/googletest': checked out '5ec7f0c4a113e2f18ac2c6cc7df51ad6afc24081' 2025-08-14T20:44:15.5070190Z Submodule path 'third_party/psimd': checked out '072586a71b55b7f8c584153d223e95687148a900' 2025-08-14T20:44:15.5255600Z Submodule path 'third_party/pthreadpool': checked out '4fe0e1e183925bf8cfa6aae24237e724a96479b8' 2025-08-14T20:44:15.5645170Z Submodule path 'third_party/pybind11': checked out 'a2e59f0e7065404b44dfe92a28aca47ba1378dc4' 2025-08-14T20:44:15.5882350Z Submodule path 'third_party/python-peachpy': checked out 'f45429b087dd7d5bc78bb40dc7cf06425c252d67' 2025-08-14T20:44:15.6215380Z Submodule path 'third_party/sleef': checked out '5a1d179df9cf652951b59010a2d2075372d67f68' 2025-08-14T20:44:15.6635490Z Submodule path 'third_party/tensorpipe': checked out 'dacda0567d9f23d4bc503e1c4f84aa65f33ac38a' 2025-08-14T20:44:15.7316060Z Submodule path 'third_party/tensorpipe/third_party/googletest': checked out 'aee0f9d9b5b87796ee8a0ab26b7587ec30e8858e' 2025-08-14T20:44:15.7606770Z Submodule path 'third_party/tensorpipe/third_party/libnop': checked out '910b55815be16109f04f4180e9adee14fb4ce281' 2025-08-14T20:44:15.8726900Z Submodule path 'third_party/tensorpipe/third_party/libuv': checked out '5152db2cbfeb5582e9c27c5ea1dba2cd9e10759b' 2025-08-14T20:44:15.9579410Z Submodule path 'third_party/tensorpipe/third_party/pybind11': checked out 'a23996fce38ff6ccfbcdc09f1e63f2c4be5ea2ef' 2025-08-14T20:44:15.9830570Z Submodule path 'third_party/tensorpipe/third_party/pybind11/tools/clang': checked out '6a00cbc4a9b8e68b71caf7f774b3f9c753ae84d5' 2025-08-14T20:44:15.9878320Z [command]/usr/bin/git submodule foreach --recursive git config --local gc.auto 0 2025-08-14T20:44:16.0368130Z Entering 'android/libs/fbjni' 2025-08-14T20:44:16.0454670Z Entering 'third_party/FP16' 2025-08-14T20:44:16.0536630Z Entering 'third_party/FXdiv' 2025-08-14T20:44:16.0617570Z Entering 'third_party/NNPACK' 2025-08-14T20:44:16.0697980Z Entering 'third_party/NVTX' 2025-08-14T20:44:16.0779020Z Entering 'third_party/VulkanMemoryAllocator' 2025-08-14T20:44:16.0862040Z Entering 'third_party/XNNPACK' 2025-08-14T20:44:16.0949890Z Entering 'third_party/aiter' 2025-08-14T20:44:16.1033050Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-08-14T20:44:16.1118840Z Entering 'third_party/benchmark' 2025-08-14T20:44:16.1203570Z Entering 'third_party/composable_kernel' 2025-08-14T20:44:16.1288040Z Entering 'third_party/cpp-httplib' 2025-08-14T20:44:16.1370080Z Entering 'third_party/cpuinfo' 2025-08-14T20:44:16.1450200Z Entering 'third_party/cudnn_frontend' 2025-08-14T20:44:16.1531000Z Entering 'third_party/cutlass' 2025-08-14T20:44:16.1615440Z Entering 'third_party/fbgemm' 2025-08-14T20:44:16.1697360Z Entering 'third_party/fbgemm/external/asmjit' 2025-08-14T20:44:16.1778950Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-08-14T20:44:16.1863160Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-08-14T20:44:16.1944640Z Entering 'third_party/fbgemm/external/cutlass' 2025-08-14T20:44:16.2028490Z Entering 'third_party/fbgemm/external/googletest' 2025-08-14T20:44:16.2109280Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-08-14T20:44:16.2189480Z Entering 'third_party/fbgemm/external/json' 2025-08-14T20:44:16.2272370Z Entering 'third_party/flash-attention' 2025-08-14T20:44:16.2353350Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-08-14T20:44:16.2436710Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-08-14T20:44:16.2522460Z Entering 'third_party/flatbuffers' 2025-08-14T20:44:16.2607870Z Entering 'third_party/fmt' 2025-08-14T20:44:16.2691640Z Entering 'third_party/gemmlowp/gemmlowp' 2025-08-14T20:44:16.2773820Z Entering 'third_party/gloo' 2025-08-14T20:44:16.2856460Z Entering 'third_party/googletest' 2025-08-14T20:44:16.2937680Z Entering 'third_party/ideep' 2025-08-14T20:44:16.3018860Z Entering 'third_party/ideep/mkl-dnn' 2025-08-14T20:44:16.3103630Z Entering 'third_party/ittapi' 2025-08-14T20:44:16.3188310Z Entering 'third_party/kineto' 2025-08-14T20:44:16.3268370Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-08-14T20:44:16.3347720Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-08-14T20:44:16.3428130Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-08-14T20:44:16.3509260Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-08-14T20:44:16.3590750Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-08-14T20:44:16.3669900Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-08-14T20:44:16.3754190Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-08-14T20:44:16.3837250Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-08-14T20:44:16.3919310Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-08-14T20:44:16.4002970Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-08-14T20:44:16.4087000Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-08-14T20:44:16.4167730Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-08-14T20:44:16.4249970Z Entering 'third_party/kleidiai' 2025-08-14T20:44:16.4337200Z Entering 'third_party/mimalloc' 2025-08-14T20:44:16.4421550Z Entering 'third_party/nlohmann' 2025-08-14T20:44:16.4502690Z Entering 'third_party/onnx' 2025-08-14T20:44:16.4590570Z Entering 'third_party/onnx/third_party/pybind11' 2025-08-14T20:44:16.4676790Z Entering 'third_party/opentelemetry-cpp' 2025-08-14T20:44:16.4758250Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-08-14T20:44:16.4837800Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-08-14T20:44:16.4918560Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-08-14T20:44:16.4999300Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-08-14T20:44:16.5082000Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-08-14T20:44:16.5162910Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-08-14T20:44:16.5245370Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-08-14T20:44:16.5325390Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-08-14T20:44:16.5406620Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-08-14T20:44:16.5489000Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-08-14T20:44:16.5579250Z Entering 'third_party/pocketfft' 2025-08-14T20:44:16.5661860Z Entering 'third_party/protobuf' 2025-08-14T20:44:16.5741710Z Entering 'third_party/protobuf/third_party/benchmark' 2025-08-14T20:44:16.5823060Z Entering 'third_party/protobuf/third_party/googletest' 2025-08-14T20:44:16.5905370Z Entering 'third_party/psimd' 2025-08-14T20:44:16.5987360Z Entering 'third_party/pthreadpool' 2025-08-14T20:44:16.6069080Z Entering 'third_party/pybind11' 2025-08-14T20:44:16.6150570Z Entering 'third_party/python-peachpy' 2025-08-14T20:44:16.6232720Z Entering 'third_party/sleef' 2025-08-14T20:44:16.6312880Z Entering 'third_party/tensorpipe' 2025-08-14T20:44:16.6394070Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-08-14T20:44:16.6474290Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-08-14T20:44:16.6554470Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-08-14T20:44:16.6635350Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-08-14T20:44:16.6714170Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-08-14T20:44:16.6804700Z ##[endgroup] 2025-08-14T20:44:16.6804970Z ##[group]Persisting credentials for submodules 2025-08-14T20:44:16.6808730Z [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-08-14T20:44:16.7306020Z Entering 'android/libs/fbjni' 2025-08-14T20:44:16.7375650Z url.https://github.com/.insteadof 2025-08-14T20:44:16.7376090Z url.https://github.com/.insteadof 2025-08-14T20:44:16.7441040Z Entering 'third_party/FP16' 2025-08-14T20:44:16.7506260Z url.https://github.com/.insteadof 2025-08-14T20:44:16.7506480Z url.https://github.com/.insteadof 2025-08-14T20:44:16.7571680Z Entering 'third_party/FXdiv' 2025-08-14T20:44:16.7635450Z url.https://github.com/.insteadof 2025-08-14T20:44:16.7635690Z url.https://github.com/.insteadof 2025-08-14T20:44:16.7699460Z Entering 'third_party/NNPACK' 2025-08-14T20:44:16.7762810Z url.https://github.com/.insteadof 2025-08-14T20:44:16.7763020Z url.https://github.com/.insteadof 2025-08-14T20:44:16.7826660Z Entering 'third_party/NVTX' 2025-08-14T20:44:16.7890380Z url.https://github.com/.insteadof 2025-08-14T20:44:16.7890610Z url.https://github.com/.insteadof 2025-08-14T20:44:16.7954590Z Entering 'third_party/VulkanMemoryAllocator' 2025-08-14T20:44:16.8019620Z url.https://github.com/.insteadof 2025-08-14T20:44:16.8019930Z url.https://github.com/.insteadof 2025-08-14T20:44:16.8085220Z Entering 'third_party/XNNPACK' 2025-08-14T20:44:16.8151330Z url.https://github.com/.insteadof 2025-08-14T20:44:16.8151560Z url.https://github.com/.insteadof 2025-08-14T20:44:16.8221410Z Entering 'third_party/aiter' 2025-08-14T20:44:16.8288550Z url.https://github.com/.insteadof 2025-08-14T20:44:16.8288790Z url.https://github.com/.insteadof 2025-08-14T20:44:16.8352370Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-08-14T20:44:16.8417180Z url.https://github.com/.insteadof 2025-08-14T20:44:16.8417410Z url.https://github.com/.insteadof 2025-08-14T20:44:16.8486040Z Entering 'third_party/benchmark' 2025-08-14T20:44:16.8551630Z url.https://github.com/.insteadof 2025-08-14T20:44:16.8551860Z url.https://github.com/.insteadof 2025-08-14T20:44:16.8615600Z Entering 'third_party/composable_kernel' 2025-08-14T20:44:16.8679790Z url.https://github.com/.insteadof 2025-08-14T20:44:16.8680010Z url.https://github.com/.insteadof 2025-08-14T20:44:16.8748100Z Entering 'third_party/cpp-httplib' 2025-08-14T20:44:16.8814280Z url.https://github.com/.insteadof 2025-08-14T20:44:16.8814540Z url.https://github.com/.insteadof 2025-08-14T20:44:16.8879020Z Entering 'third_party/cpuinfo' 2025-08-14T20:44:16.8943200Z url.https://github.com/.insteadof 2025-08-14T20:44:16.8943440Z url.https://github.com/.insteadof 2025-08-14T20:44:16.9009350Z Entering 'third_party/cudnn_frontend' 2025-08-14T20:44:16.9073620Z url.https://github.com/.insteadof 2025-08-14T20:44:16.9073830Z url.https://github.com/.insteadof 2025-08-14T20:44:16.9139060Z Entering 'third_party/cutlass' 2025-08-14T20:44:16.9202940Z url.https://github.com/.insteadof 2025-08-14T20:44:16.9203160Z url.https://github.com/.insteadof 2025-08-14T20:44:16.9269420Z Entering 'third_party/fbgemm' 2025-08-14T20:44:16.9334900Z url.https://github.com/.insteadof 2025-08-14T20:44:16.9335130Z url.https://github.com/.insteadof 2025-08-14T20:44:16.9399550Z Entering 'third_party/fbgemm/external/asmjit' 2025-08-14T20:44:16.9463240Z url.https://github.com/.insteadof 2025-08-14T20:44:16.9463460Z url.https://github.com/.insteadof 2025-08-14T20:44:16.9527590Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-08-14T20:44:16.9593180Z url.https://github.com/.insteadof 2025-08-14T20:44:16.9593400Z url.https://github.com/.insteadof 2025-08-14T20:44:16.9660820Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-08-14T20:44:16.9727920Z url.https://github.com/.insteadof 2025-08-14T20:44:16.9728150Z url.https://github.com/.insteadof 2025-08-14T20:44:16.9792590Z Entering 'third_party/fbgemm/external/cutlass' 2025-08-14T20:44:16.9857780Z url.https://github.com/.insteadof 2025-08-14T20:44:16.9858010Z url.https://github.com/.insteadof 2025-08-14T20:44:16.9926660Z Entering 'third_party/fbgemm/external/googletest' 2025-08-14T20:44:16.9994320Z url.https://github.com/.insteadof 2025-08-14T20:44:16.9994550Z url.https://github.com/.insteadof 2025-08-14T20:44:17.0058460Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-08-14T20:44:17.0121630Z url.https://github.com/.insteadof 2025-08-14T20:44:17.0121840Z url.https://github.com/.insteadof 2025-08-14T20:44:17.0186380Z Entering 'third_party/fbgemm/external/json' 2025-08-14T20:44:17.0249670Z url.https://github.com/.insteadof 2025-08-14T20:44:17.0249900Z url.https://github.com/.insteadof 2025-08-14T20:44:17.0315900Z Entering 'third_party/flash-attention' 2025-08-14T20:44:17.0380520Z url.https://github.com/.insteadof 2025-08-14T20:44:17.0380740Z url.https://github.com/.insteadof 2025-08-14T20:44:17.0444890Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-08-14T20:44:17.0511910Z url.https://github.com/.insteadof 2025-08-14T20:44:17.0512140Z url.https://github.com/.insteadof 2025-08-14T20:44:17.0578740Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-08-14T20:44:17.0643400Z url.https://github.com/.insteadof 2025-08-14T20:44:17.0643610Z url.https://github.com/.insteadof 2025-08-14T20:44:17.0714020Z Entering 'third_party/flatbuffers' 2025-08-14T20:44:17.0782910Z url.https://github.com/.insteadof 2025-08-14T20:44:17.0783150Z url.https://github.com/.insteadof 2025-08-14T20:44:17.0850240Z Entering 'third_party/fmt' 2025-08-14T20:44:17.0915270Z url.https://github.com/.insteadof 2025-08-14T20:44:17.0915510Z url.https://github.com/.insteadof 2025-08-14T20:44:17.0980930Z Entering 'third_party/gemmlowp/gemmlowp' 2025-08-14T20:44:17.1046090Z url.https://github.com/.insteadof 2025-08-14T20:44:17.1046310Z url.https://github.com/.insteadof 2025-08-14T20:44:17.1110480Z Entering 'third_party/gloo' 2025-08-14T20:44:17.1174370Z url.https://github.com/.insteadof 2025-08-14T20:44:17.1174590Z url.https://github.com/.insteadof 2025-08-14T20:44:17.1238770Z Entering 'third_party/googletest' 2025-08-14T20:44:17.1302890Z url.https://github.com/.insteadof 2025-08-14T20:44:17.1303100Z url.https://github.com/.insteadof 2025-08-14T20:44:17.1368580Z Entering 'third_party/ideep' 2025-08-14T20:44:17.1436060Z url.https://github.com/.insteadof 2025-08-14T20:44:17.1436300Z url.https://github.com/.insteadof 2025-08-14T20:44:17.1502390Z Entering 'third_party/ideep/mkl-dnn' 2025-08-14T20:44:17.1569400Z url.https://github.com/.insteadof 2025-08-14T20:44:17.1569620Z url.https://github.com/.insteadof 2025-08-14T20:44:17.1640170Z Entering 'third_party/ittapi' 2025-08-14T20:44:17.1706590Z url.https://github.com/.insteadof 2025-08-14T20:44:17.1706810Z url.https://github.com/.insteadof 2025-08-14T20:44:17.1772410Z Entering 'third_party/kineto' 2025-08-14T20:44:17.1837550Z url.https://github.com/.insteadof 2025-08-14T20:44:17.1837780Z url.https://github.com/.insteadof 2025-08-14T20:44:17.1901310Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-08-14T20:44:17.1966670Z url.https://github.com/.insteadof 2025-08-14T20:44:17.1966900Z url.https://github.com/.insteadof 2025-08-14T20:44:17.2032400Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-08-14T20:44:17.2132830Z url.https://github.com/.insteadof 2025-08-14T20:44:17.2133060Z url.https://github.com/.insteadof 2025-08-14T20:44:17.2162120Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-08-14T20:44:17.2226820Z url.https://github.com/.insteadof 2025-08-14T20:44:17.2227030Z url.https://github.com/.insteadof 2025-08-14T20:44:17.2291100Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-08-14T20:44:17.2354290Z url.https://github.com/.insteadof 2025-08-14T20:44:17.2354510Z url.https://github.com/.insteadof 2025-08-14T20:44:17.2418950Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-08-14T20:44:17.2483610Z url.https://github.com/.insteadof 2025-08-14T20:44:17.2483830Z url.https://github.com/.insteadof 2025-08-14T20:44:17.2547250Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-08-14T20:44:17.2610950Z url.https://github.com/.insteadof 2025-08-14T20:44:17.2611180Z url.https://github.com/.insteadof 2025-08-14T20:44:17.2679080Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-08-14T20:44:17.2743740Z url.https://github.com/.insteadof 2025-08-14T20:44:17.2744230Z url.https://github.com/.insteadof 2025-08-14T20:44:17.2810890Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-08-14T20:44:17.2875200Z url.https://github.com/.insteadof 2025-08-14T20:44:17.2875430Z url.https://github.com/.insteadof 2025-08-14T20:44:17.2940800Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-08-14T20:44:17.3006810Z url.https://github.com/.insteadof 2025-08-14T20:44:17.3007040Z url.https://github.com/.insteadof 2025-08-14T20:44:17.3073300Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-08-14T20:44:17.3137910Z url.https://github.com/.insteadof 2025-08-14T20:44:17.3138130Z url.https://github.com/.insteadof 2025-08-14T20:44:17.3204600Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-08-14T20:44:17.3269300Z url.https://github.com/.insteadof 2025-08-14T20:44:17.3269520Z url.https://github.com/.insteadof 2025-08-14T20:44:17.3334810Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-08-14T20:44:17.3399710Z url.https://github.com/.insteadof 2025-08-14T20:44:17.3399930Z url.https://github.com/.insteadof 2025-08-14T20:44:17.3467940Z Entering 'third_party/kleidiai' 2025-08-14T20:44:17.3534260Z url.https://github.com/.insteadof 2025-08-14T20:44:17.3534480Z url.https://github.com/.insteadof 2025-08-14T20:44:17.3600740Z Entering 'third_party/mimalloc' 2025-08-14T20:44:17.3666140Z url.https://github.com/.insteadof 2025-08-14T20:44:17.3666370Z url.https://github.com/.insteadof 2025-08-14T20:44:17.3730910Z Entering 'third_party/nlohmann' 2025-08-14T20:44:17.3794770Z url.https://github.com/.insteadof 2025-08-14T20:44:17.3795000Z url.https://github.com/.insteadof 2025-08-14T20:44:17.3860790Z Entering 'third_party/onnx' 2025-08-14T20:44:17.3925140Z url.https://github.com/.insteadof 2025-08-14T20:44:17.3925370Z url.https://github.com/.insteadof 2025-08-14T20:44:17.3996020Z Entering 'third_party/onnx/third_party/pybind11' 2025-08-14T20:44:17.4061690Z url.https://github.com/.insteadof 2025-08-14T20:44:17.4061960Z url.https://github.com/.insteadof 2025-08-14T20:44:17.4129890Z Entering 'third_party/opentelemetry-cpp' 2025-08-14T20:44:17.4197160Z url.https://github.com/.insteadof 2025-08-14T20:44:17.4197380Z url.https://github.com/.insteadof 2025-08-14T20:44:17.4267810Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-08-14T20:44:17.4336310Z url.https://github.com/.insteadof 2025-08-14T20:44:17.4336540Z url.https://github.com/.insteadof 2025-08-14T20:44:17.4404280Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-08-14T20:44:17.4471300Z url.https://github.com/.insteadof 2025-08-14T20:44:17.4471550Z url.https://github.com/.insteadof 2025-08-14T20:44:17.4538330Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-08-14T20:44:17.4603790Z url.https://github.com/.insteadof 2025-08-14T20:44:17.4609820Z url.https://github.com/.insteadof 2025-08-14T20:44:17.4672930Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-08-14T20:44:17.4737560Z url.https://github.com/.insteadof 2025-08-14T20:44:17.4737770Z url.https://github.com/.insteadof 2025-08-14T20:44:17.4803120Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-08-14T20:44:17.4868720Z url.https://github.com/.insteadof 2025-08-14T20:44:17.4868930Z url.https://github.com/.insteadof 2025-08-14T20:44:17.4933280Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-08-14T20:44:17.4998110Z url.https://github.com/.insteadof 2025-08-14T20:44:17.4998330Z url.https://github.com/.insteadof 2025-08-14T20:44:17.5062870Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-08-14T20:44:17.5128230Z url.https://github.com/.insteadof 2025-08-14T20:44:17.5128460Z url.https://github.com/.insteadof 2025-08-14T20:44:17.5193790Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-08-14T20:44:17.5259520Z url.https://github.com/.insteadof 2025-08-14T20:44:17.5259760Z url.https://github.com/.insteadof 2025-08-14T20:44:17.5325690Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-08-14T20:44:17.5390390Z url.https://github.com/.insteadof 2025-08-14T20:44:17.5390620Z url.https://github.com/.insteadof 2025-08-14T20:44:17.5458170Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-08-14T20:44:17.5524110Z url.https://github.com/.insteadof 2025-08-14T20:44:17.5524320Z url.https://github.com/.insteadof 2025-08-14T20:44:17.5599950Z Entering 'third_party/pocketfft' 2025-08-14T20:44:17.5667940Z url.https://github.com/.insteadof 2025-08-14T20:44:17.5668170Z url.https://github.com/.insteadof 2025-08-14T20:44:17.5734270Z Entering 'third_party/protobuf' 2025-08-14T20:44:17.5801920Z url.https://github.com/.insteadof 2025-08-14T20:44:17.5802140Z url.https://github.com/.insteadof 2025-08-14T20:44:17.5868470Z Entering 'third_party/protobuf/third_party/benchmark' 2025-08-14T20:44:17.5933610Z url.https://github.com/.insteadof 2025-08-14T20:44:17.5933840Z url.https://github.com/.insteadof 2025-08-14T20:44:17.5998570Z Entering 'third_party/protobuf/third_party/googletest' 2025-08-14T20:44:17.6062120Z url.https://github.com/.insteadof 2025-08-14T20:44:17.6062330Z url.https://github.com/.insteadof 2025-08-14T20:44:17.6127840Z Entering 'third_party/psimd' 2025-08-14T20:44:17.6192040Z url.https://github.com/.insteadof 2025-08-14T20:44:17.6192260Z url.https://github.com/.insteadof 2025-08-14T20:44:17.6255810Z Entering 'third_party/pthreadpool' 2025-08-14T20:44:17.6318960Z url.https://github.com/.insteadof 2025-08-14T20:44:17.6319170Z url.https://github.com/.insteadof 2025-08-14T20:44:17.6383760Z Entering 'third_party/pybind11' 2025-08-14T20:44:17.6448030Z url.https://github.com/.insteadof 2025-08-14T20:44:17.6448250Z url.https://github.com/.insteadof 2025-08-14T20:44:17.6513200Z Entering 'third_party/python-peachpy' 2025-08-14T20:44:17.6578200Z url.https://github.com/.insteadof 2025-08-14T20:44:17.6578460Z url.https://github.com/.insteadof 2025-08-14T20:44:17.6645680Z Entering 'third_party/sleef' 2025-08-14T20:44:17.6711950Z url.https://github.com/.insteadof 2025-08-14T20:44:17.6712190Z url.https://github.com/.insteadof 2025-08-14T20:44:17.6776480Z Entering 'third_party/tensorpipe' 2025-08-14T20:44:17.6841520Z url.https://github.com/.insteadof 2025-08-14T20:44:17.6841740Z url.https://github.com/.insteadof 2025-08-14T20:44:17.6906400Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-08-14T20:44:17.6971050Z url.https://github.com/.insteadof 2025-08-14T20:44:17.6971270Z url.https://github.com/.insteadof 2025-08-14T20:44:17.7037540Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-08-14T20:44:17.7101590Z url.https://github.com/.insteadof 2025-08-14T20:44:17.7101820Z url.https://github.com/.insteadof 2025-08-14T20:44:17.7166370Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-08-14T20:44:17.7229850Z url.https://github.com/.insteadof 2025-08-14T20:44:17.7230070Z url.https://github.com/.insteadof 2025-08-14T20:44:17.7293420Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-08-14T20:44:17.7357660Z url.https://github.com/.insteadof 2025-08-14T20:44:17.7357890Z url.https://github.com/.insteadof 2025-08-14T20:44:17.7419980Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-08-14T20:44:17.7483250Z url.https://github.com/.insteadof 2025-08-14T20:44:17.7483470Z url.https://github.com/.insteadof 2025-08-14T20:44:17.7560280Z [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-08-14T20:44:17.8048110Z Entering 'android/libs/fbjni' 2025-08-14T20:44:17.8145400Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/android/libs/fbjni/config remote.origin.url 2025-08-14T20:44:17.8178550Z Entering 'third_party/FP16' 2025-08-14T20:44:17.8272860Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/FP16/config remote.origin.url 2025-08-14T20:44:17.8305980Z Entering 'third_party/FXdiv' 2025-08-14T20:44:17.8400540Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/FXdiv/config remote.origin.url 2025-08-14T20:44:17.8434100Z Entering 'third_party/NNPACK' 2025-08-14T20:44:17.8530510Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK/config remote.origin.url 2025-08-14T20:44:17.8564540Z Entering 'third_party/NVTX' 2025-08-14T20:44:17.8660910Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/NVTX/config remote.origin.url 2025-08-14T20:44:17.8695030Z Entering 'third_party/VulkanMemoryAllocator' 2025-08-14T20:44:17.8790640Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/VulkanMemoryAllocator/config remote.origin.url 2025-08-14T20:44:17.8824450Z Entering 'third_party/XNNPACK' 2025-08-14T20:44:17.8920940Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/XNNPACK/config remote.origin.url 2025-08-14T20:44:17.8960020Z Entering 'third_party/aiter' 2025-08-14T20:44:17.9058340Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/aiter/config remote.origin.url 2025-08-14T20:44:17.9090960Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-08-14T20:44:17.9187120Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/aiter/modules/3rdparty/composable_kernel/config remote.origin.url 2025-08-14T20:44:17.9226640Z Entering 'third_party/benchmark' 2025-08-14T20:44:17.9324450Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/benchmark/config remote.origin.url 2025-08-14T20:44:17.9358740Z Entering 'third_party/composable_kernel' 2025-08-14T20:44:17.9453610Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/composable_kernel/config remote.origin.url 2025-08-14T20:44:17.9490170Z Entering 'third_party/cpp-httplib' 2025-08-14T20:44:17.9585210Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/cpp-httplib/config remote.origin.url 2025-08-14T20:44:17.9618720Z Entering 'third_party/cpuinfo' 2025-08-14T20:44:17.9713570Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/cpuinfo/config remote.origin.url 2025-08-14T20:44:17.9747700Z Entering 'third_party/cudnn_frontend' 2025-08-14T20:44:17.9843030Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/cudnn_frontend/config remote.origin.url 2025-08-14T20:44:17.9876230Z Entering 'third_party/cutlass' 2025-08-14T20:44:17.9969930Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/cutlass/config remote.origin.url 2025-08-14T20:44:18.0006650Z Entering 'third_party/fbgemm' 2025-08-14T20:44:18.0104880Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/config remote.origin.url 2025-08-14T20:44:18.0138480Z Entering 'third_party/fbgemm/external/asmjit' 2025-08-14T20:44:18.0234690Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/asmjit/config remote.origin.url 2025-08-14T20:44:18.0267730Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-08-14T20:44:18.0361670Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/composable_kernel/config remote.origin.url 2025-08-14T20:44:18.0396570Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-08-14T20:44:18.0491610Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/cpuinfo/config remote.origin.url 2025-08-14T20:44:18.0524690Z Entering 'third_party/fbgemm/external/cutlass' 2025-08-14T20:44:18.0618480Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/cutlass/config remote.origin.url 2025-08-14T20:44:18.0654650Z Entering 'third_party/fbgemm/external/googletest' 2025-08-14T20:44:18.0750170Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/googletest/config remote.origin.url 2025-08-14T20:44:18.0783460Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-08-14T20:44:18.0878140Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/hipify_torch/config remote.origin.url 2025-08-14T20:44:18.0910930Z Entering 'third_party/fbgemm/external/json' 2025-08-14T20:44:18.1007390Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/json/config remote.origin.url 2025-08-14T20:44:18.1044130Z Entering 'third_party/flash-attention' 2025-08-14T20:44:18.1140580Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/flash-attention/config remote.origin.url 2025-08-14T20:44:18.1173660Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-08-14T20:44:18.1268090Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/flash-attention/modules/csrc/composable_kernel/config remote.origin.url 2025-08-14T20:44:18.1302970Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-08-14T20:44:18.1397660Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/flash-attention/modules/csrc/cutlass/config remote.origin.url 2025-08-14T20:44:18.1434650Z Entering 'third_party/flatbuffers' 2025-08-14T20:44:18.1531110Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/flatbuffers/config remote.origin.url 2025-08-14T20:44:18.1566320Z Entering 'third_party/fmt' 2025-08-14T20:44:18.1665880Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fmt/config remote.origin.url 2025-08-14T20:44:18.1700570Z Entering 'third_party/gemmlowp/gemmlowp' 2025-08-14T20:44:18.1797060Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/gemmlowp/gemmlowp/config remote.origin.url 2025-08-14T20:44:18.1831050Z Entering 'third_party/gloo' 2025-08-14T20:44:18.1928310Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/gloo/config remote.origin.url 2025-08-14T20:44:18.1962930Z Entering 'third_party/googletest' 2025-08-14T20:44:18.2060770Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/googletest/config remote.origin.url 2025-08-14T20:44:18.2094810Z Entering 'third_party/ideep' 2025-08-14T20:44:18.2190200Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/ideep/config remote.origin.url 2025-08-14T20:44:18.2221750Z Entering 'third_party/ideep/mkl-dnn' 2025-08-14T20:44:18.2318370Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/ideep/modules/mkl-dnn/config remote.origin.url 2025-08-14T20:44:18.2355620Z Entering 'third_party/ittapi' 2025-08-14T20:44:18.2452550Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/ittapi/config remote.origin.url 2025-08-14T20:44:18.2485910Z Entering 'third_party/kineto' 2025-08-14T20:44:18.2579540Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/config remote.origin.url 2025-08-14T20:44:18.2611160Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-08-14T20:44:18.2707830Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/config remote.origin.url 2025-08-14T20:44:18.2739850Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-08-14T20:44:18.2836780Z 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-08-14T20:44:18.2870820Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-08-14T20:44:18.2967420Z 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-08-14T20:44:18.3000140Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-08-14T20:44:18.3094220Z 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-08-14T20:44:18.3126410Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-08-14T20:44:18.3219410Z 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-08-14T20:44:18.3250800Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-08-14T20:44:18.3346500Z 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-08-14T20:44:18.3383160Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-08-14T20:44:18.3482580Z 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-08-14T20:44:18.3517310Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-08-14T20:44:18.3616620Z 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-08-14T20:44:18.3651990Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-08-14T20:44:18.3752330Z 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-08-14T20:44:18.3786340Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-08-14T20:44:18.3882920Z 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-08-14T20:44:18.3918260Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-08-14T20:44:18.4012740Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/fmt/config remote.origin.url 2025-08-14T20:44:18.4045680Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-08-14T20:44:18.4139790Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/googletest/config remote.origin.url 2025-08-14T20:44:18.4173920Z Entering 'third_party/kleidiai' 2025-08-14T20:44:18.4272490Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kleidiai/config remote.origin.url 2025-08-14T20:44:18.4306010Z Entering 'third_party/mimalloc' 2025-08-14T20:44:18.4402620Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/mimalloc/config remote.origin.url 2025-08-14T20:44:18.4436890Z Entering 'third_party/nlohmann' 2025-08-14T20:44:18.4536080Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/nlohmann/config remote.origin.url 2025-08-14T20:44:18.4571170Z Entering 'third_party/onnx' 2025-08-14T20:44:18.4666230Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/onnx/config remote.origin.url 2025-08-14T20:44:18.4704840Z Entering 'third_party/onnx/third_party/pybind11' 2025-08-14T20:44:18.4805820Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/onnx/modules/third_party/pybind11/config remote.origin.url 2025-08-14T20:44:18.4841400Z Entering 'third_party/opentelemetry-cpp' 2025-08-14T20:44:18.4939510Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/config remote.origin.url 2025-08-14T20:44:18.4972050Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-08-14T20:44:18.5066850Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/benchmark/config remote.origin.url 2025-08-14T20:44:18.5099750Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-08-14T20:44:18.5195610Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/googletest/config remote.origin.url 2025-08-14T20:44:18.5228810Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-08-14T20:44:18.5323630Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/ms-gsl/config remote.origin.url 2025-08-14T20:44:18.5356660Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-08-14T20:44:18.5450610Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/nlohmann-json/config remote.origin.url 2025-08-14T20:44:18.5484640Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-08-14T20:44:18.5579690Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/opentelemetry-proto/config remote.origin.url 2025-08-14T20:44:18.5612300Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-08-14T20:44:18.5708750Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/opentracing-cpp/config remote.origin.url 2025-08-14T20:44:18.5741580Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-08-14T20:44:18.5836160Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/prometheus-cpp/config remote.origin.url 2025-08-14T20:44:18.5867320Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-08-14T20:44:18.5961670Z 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-08-14T20:44:18.5996700Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-08-14T20:44:18.6099030Z 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-08-14T20:44:18.6133700Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-08-14T20:44:18.6231240Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/tools/vcpkg/config remote.origin.url 2025-08-14T20:44:18.6274130Z Entering 'third_party/pocketfft' 2025-08-14T20:44:18.6371580Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/pocketfft/config remote.origin.url 2025-08-14T20:44:18.6405360Z Entering 'third_party/protobuf' 2025-08-14T20:44:18.6500520Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/config remote.origin.url 2025-08-14T20:44:18.6534630Z Entering 'third_party/protobuf/third_party/benchmark' 2025-08-14T20:44:18.6630630Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/modules/third_party/benchmark/config remote.origin.url 2025-08-14T20:44:18.6665070Z Entering 'third_party/protobuf/third_party/googletest' 2025-08-14T20:44:18.6762190Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/modules/third_party/googletest/config remote.origin.url 2025-08-14T20:44:18.6798360Z Entering 'third_party/psimd' 2025-08-14T20:44:18.6896140Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/psimd/config remote.origin.url 2025-08-14T20:44:18.6930140Z Entering 'third_party/pthreadpool' 2025-08-14T20:44:18.7026640Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/pthreadpool/config remote.origin.url 2025-08-14T20:44:18.7060120Z Entering 'third_party/pybind11' 2025-08-14T20:44:18.7154720Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/pybind11/config remote.origin.url 2025-08-14T20:44:18.7188260Z Entering 'third_party/python-peachpy' 2025-08-14T20:44:18.7284150Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/python-peachpy/config remote.origin.url 2025-08-14T20:44:18.7318000Z Entering 'third_party/sleef' 2025-08-14T20:44:18.7413650Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/sleef/config remote.origin.url 2025-08-14T20:44:18.7447750Z Entering 'third_party/tensorpipe' 2025-08-14T20:44:18.7544870Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/config remote.origin.url 2025-08-14T20:44:18.7577130Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-08-14T20:44:18.7673160Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/googletest/config remote.origin.url 2025-08-14T20:44:18.7706310Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-08-14T20:44:18.7802480Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/libnop/config remote.origin.url 2025-08-14T20:44:18.7836030Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-08-14T20:44:18.7931670Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/libuv/config remote.origin.url 2025-08-14T20:44:18.7964700Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-08-14T20:44:18.8061420Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/pybind11/config remote.origin.url 2025-08-14T20:44:18.8093840Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-08-14T20:44:18.8190950Z 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-08-14T20:44:18.8384000Z [command]/usr/bin/git submodule foreach --recursive git config --local --add 'url.https://github.com/.insteadOf' 'git@github.com:' 2025-08-14T20:44:18.8883480Z Entering 'android/libs/fbjni' 2025-08-14T20:44:18.8965720Z Entering 'third_party/FP16' 2025-08-14T20:44:18.9047950Z Entering 'third_party/FXdiv' 2025-08-14T20:44:18.9129610Z Entering 'third_party/NNPACK' 2025-08-14T20:44:18.9212150Z Entering 'third_party/NVTX' 2025-08-14T20:44:18.9296860Z Entering 'third_party/VulkanMemoryAllocator' 2025-08-14T20:44:18.9377450Z Entering 'third_party/XNNPACK' 2025-08-14T20:44:18.9462790Z Entering 'third_party/aiter' 2025-08-14T20:44:18.9545110Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-08-14T20:44:18.9630300Z Entering 'third_party/benchmark' 2025-08-14T20:44:18.9715190Z Entering 'third_party/composable_kernel' 2025-08-14T20:44:18.9800260Z Entering 'third_party/cpp-httplib' 2025-08-14T20:44:18.9881380Z Entering 'third_party/cpuinfo' 2025-08-14T20:44:18.9963930Z Entering 'third_party/cudnn_frontend' 2025-08-14T20:44:19.0047340Z Entering 'third_party/cutlass' 2025-08-14T20:44:19.0131730Z Entering 'third_party/fbgemm' 2025-08-14T20:44:19.0213700Z Entering 'third_party/fbgemm/external/asmjit' 2025-08-14T20:44:19.0292700Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-08-14T20:44:19.0372560Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-08-14T20:44:19.0450510Z Entering 'third_party/fbgemm/external/cutlass' 2025-08-14T20:44:19.0531450Z Entering 'third_party/fbgemm/external/googletest' 2025-08-14T20:44:19.0611290Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-08-14T20:44:19.0689170Z Entering 'third_party/fbgemm/external/json' 2025-08-14T20:44:19.0771270Z Entering 'third_party/flash-attention' 2025-08-14T20:44:19.0853120Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-08-14T20:44:19.0935240Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-08-14T20:44:19.1021190Z Entering 'third_party/flatbuffers' 2025-08-14T20:44:19.1108160Z Entering 'third_party/fmt' 2025-08-14T20:44:19.1189600Z Entering 'third_party/gemmlowp/gemmlowp' 2025-08-14T20:44:19.1270760Z Entering 'third_party/gloo' 2025-08-14T20:44:19.1351020Z Entering 'third_party/googletest' 2025-08-14T20:44:19.1430910Z Entering 'third_party/ideep' 2025-08-14T20:44:19.1509850Z Entering 'third_party/ideep/mkl-dnn' 2025-08-14T20:44:19.1592620Z Entering 'third_party/ittapi' 2025-08-14T20:44:19.1672870Z Entering 'third_party/kineto' 2025-08-14T20:44:19.1750890Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-08-14T20:44:19.1832250Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-08-14T20:44:19.1914780Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-08-14T20:44:19.1995510Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-08-14T20:44:19.2075810Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-08-14T20:44:19.2153860Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-08-14T20:44:19.2235770Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-08-14T20:44:19.2316970Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-08-14T20:44:19.2396060Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-08-14T20:44:19.2477480Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-08-14T20:44:19.2561430Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-08-14T20:44:19.2643960Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-08-14T20:44:19.2728180Z Entering 'third_party/kleidiai' 2025-08-14T20:44:19.2811190Z Entering 'third_party/mimalloc' 2025-08-14T20:44:19.2891740Z Entering 'third_party/nlohmann' 2025-08-14T20:44:19.2975550Z Entering 'third_party/onnx' 2025-08-14T20:44:19.3063320Z Entering 'third_party/onnx/third_party/pybind11' 2025-08-14T20:44:19.3150870Z Entering 'third_party/opentelemetry-cpp' 2025-08-14T20:44:19.3233390Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-08-14T20:44:19.3314090Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-08-14T20:44:19.3396140Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-08-14T20:44:19.3477300Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-08-14T20:44:19.3558930Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-08-14T20:44:19.3640700Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-08-14T20:44:19.3722380Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-08-14T20:44:19.3805600Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-08-14T20:44:19.3889000Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-08-14T20:44:19.3973690Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-08-14T20:44:19.4061720Z Entering 'third_party/pocketfft' 2025-08-14T20:44:19.4142440Z Entering 'third_party/protobuf' 2025-08-14T20:44:19.4220340Z Entering 'third_party/protobuf/third_party/benchmark' 2025-08-14T20:44:19.4298610Z Entering 'third_party/protobuf/third_party/googletest' 2025-08-14T20:44:19.4378580Z Entering 'third_party/psimd' 2025-08-14T20:44:19.4460860Z Entering 'third_party/pthreadpool' 2025-08-14T20:44:19.4543780Z Entering 'third_party/pybind11' 2025-08-14T20:44:19.4625990Z Entering 'third_party/python-peachpy' 2025-08-14T20:44:19.4707790Z Entering 'third_party/sleef' 2025-08-14T20:44:19.4789910Z Entering 'third_party/tensorpipe' 2025-08-14T20:44:19.4868840Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-08-14T20:44:19.4948880Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-08-14T20:44:19.5029140Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-08-14T20:44:19.5106640Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-08-14T20:44:19.5183670Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-08-14T20:44:19.5277840Z [command]/usr/bin/git submodule foreach --recursive git config --local --add 'url.https://github.com/.insteadOf' 'org-21003710@github.com:' 2025-08-14T20:44:19.5770020Z Entering 'android/libs/fbjni' 2025-08-14T20:44:19.5855340Z Entering 'third_party/FP16' 2025-08-14T20:44:19.5936710Z Entering 'third_party/FXdiv' 2025-08-14T20:44:19.6019620Z Entering 'third_party/NNPACK' 2025-08-14T20:44:19.6102870Z Entering 'third_party/NVTX' 2025-08-14T20:44:19.6185060Z Entering 'third_party/VulkanMemoryAllocator' 2025-08-14T20:44:19.6267440Z Entering 'third_party/XNNPACK' 2025-08-14T20:44:19.6353800Z Entering 'third_party/aiter' 2025-08-14T20:44:19.6436320Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-08-14T20:44:19.6521320Z Entering 'third_party/benchmark' 2025-08-14T20:44:19.6603780Z Entering 'third_party/composable_kernel' 2025-08-14T20:44:19.6690020Z Entering 'third_party/cpp-httplib' 2025-08-14T20:44:19.6772880Z Entering 'third_party/cpuinfo' 2025-08-14T20:44:19.6862000Z Entering 'third_party/cudnn_frontend' 2025-08-14T20:44:19.6944950Z Entering 'third_party/cutlass' 2025-08-14T20:44:19.7032490Z Entering 'third_party/fbgemm' 2025-08-14T20:44:19.7116050Z Entering 'third_party/fbgemm/external/asmjit' 2025-08-14T20:44:19.7197370Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-08-14T20:44:19.7281910Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-08-14T20:44:19.7366060Z Entering 'third_party/fbgemm/external/cutlass' 2025-08-14T20:44:19.7450690Z Entering 'third_party/fbgemm/external/googletest' 2025-08-14T20:44:19.7533360Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-08-14T20:44:19.7614800Z Entering 'third_party/fbgemm/external/json' 2025-08-14T20:44:19.7699360Z Entering 'third_party/flash-attention' 2025-08-14T20:44:19.7781570Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-08-14T20:44:19.7866990Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-08-14T20:44:19.7953300Z Entering 'third_party/flatbuffers' 2025-08-14T20:44:19.8037650Z Entering 'third_party/fmt' 2025-08-14T20:44:19.8119910Z Entering 'third_party/gemmlowp/gemmlowp' 2025-08-14T20:44:19.8205030Z Entering 'third_party/gloo' 2025-08-14T20:44:19.8290300Z Entering 'third_party/googletest' 2025-08-14T20:44:19.8425430Z Entering 'third_party/ideep' 2025-08-14T20:44:19.8507180Z Entering 'third_party/ideep/mkl-dnn' 2025-08-14T20:44:19.8595790Z Entering 'third_party/ittapi' 2025-08-14T20:44:19.8682500Z Entering 'third_party/kineto' 2025-08-14T20:44:19.8763530Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-08-14T20:44:19.8841560Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-08-14T20:44:19.8921440Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-08-14T20:44:19.9001490Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-08-14T20:44:19.9082530Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-08-14T20:44:19.9160970Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-08-14T20:44:19.9243290Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-08-14T20:44:19.9322910Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-08-14T20:44:19.9403090Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-08-14T20:44:19.9483020Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-08-14T20:44:19.9564750Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-08-14T20:44:19.9647620Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-08-14T20:44:19.9731260Z Entering 'third_party/kleidiai' 2025-08-14T20:44:19.9813690Z Entering 'third_party/mimalloc' 2025-08-14T20:44:19.9894580Z Entering 'third_party/nlohmann' 2025-08-14T20:44:19.9974980Z Entering 'third_party/onnx' 2025-08-14T20:44:20.0060230Z Entering 'third_party/onnx/third_party/pybind11' 2025-08-14T20:44:20.0144090Z Entering 'third_party/opentelemetry-cpp' 2025-08-14T20:44:20.0224490Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-08-14T20:44:20.0301880Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-08-14T20:44:20.0382220Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-08-14T20:44:20.0462030Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-08-14T20:44:20.0543520Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-08-14T20:44:20.0623710Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-08-14T20:44:20.0704750Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-08-14T20:44:20.0784830Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-08-14T20:44:20.0866340Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-08-14T20:44:20.0949440Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-08-14T20:44:20.1039500Z Entering 'third_party/pocketfft' 2025-08-14T20:44:20.1123950Z Entering 'third_party/protobuf' 2025-08-14T20:44:20.1204300Z Entering 'third_party/protobuf/third_party/benchmark' 2025-08-14T20:44:20.1285110Z Entering 'third_party/protobuf/third_party/googletest' 2025-08-14T20:44:20.1367330Z Entering 'third_party/psimd' 2025-08-14T20:44:20.1448660Z Entering 'third_party/pthreadpool' 2025-08-14T20:44:20.1528270Z Entering 'third_party/pybind11' 2025-08-14T20:44:20.1608990Z Entering 'third_party/python-peachpy' 2025-08-14T20:44:20.1689600Z Entering 'third_party/sleef' 2025-08-14T20:44:20.1769350Z Entering 'third_party/tensorpipe' 2025-08-14T20:44:20.1849980Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-08-14T20:44:20.1931560Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-08-14T20:44:20.2014190Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-08-14T20:44:20.2095230Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-08-14T20:44:20.2173500Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-08-14T20:44:20.2264310Z ##[endgroup] 2025-08-14T20:44:20.2337080Z [command]/usr/bin/git log -1 --format=%H 2025-08-14T20:44:20.2399380Z 1fc683cf17c8c673044538d10266c00f92987be2 2025-08-14T20:44:20.2469620Z ##[group]Run if [ -n "${XCODE_VERSION}" ]; then 2025-08-14T20:44:20.2469840Z if [ -n "${XCODE_VERSION}" ]; then 2025-08-14T20:44:20.2470180Z  echo "DEVELOPER_DIR=/Applications/Xcode_${XCODE_VERSION}.app/Contents/Developer" >> "${GITHUB_ENV}" 2025-08-14T20:44:20.2470480Z fi 2025-08-14T20:44:20.2533080Z shell: /bin/bash -e {0} 2025-08-14T20:44:20.2533220Z env: 2025-08-14T20:44:20.2533340Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-08-14T20:44:20.2533510Z SCCACHE_USE_GHA: false 2025-08-14T20:44:20.2533640Z XCODE_VERSION: 2025-08-14T20:44:20.2533760Z ##[endgroup] 2025-08-14T20:44:20.2820760Z ##[group]Run pytorch/test-infra/.github/actions/setup-python@main 2025-08-14T20:44:20.2821020Z with: 2025-08-14T20:44:20.2821150Z python-version: 3.12.7 2025-08-14T20:44:20.2821390Z pip-requirements-file: .github/requirements/pip-requirements-macOS.txt 2025-08-14T20:44:20.2821890Z env: 2025-08-14T20:44:20.2822020Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-08-14T20:44:20.2822210Z SCCACHE_USE_GHA: false 2025-08-14T20:44:20.2822350Z ##[endgroup] 2025-08-14T20:44:20.3236340Z Warning: HomeBrew only supports version specified by major and minor, but got 3.12.7 2025-08-14T20:44:21.1125090Z ==> Updating Homebrew... 2025-08-14T20:44:22.9463520Z ==> Homebrew's analytics have entirely moved to our InfluxDB instance in the EU. 2025-08-14T20:44:22.9463990Z We gather less data than before and have destroyed all Google Analytics data: 2025-08-14T20:44:22.9464420Z https://docs.brew.sh/Analytics 2025-08-14T20:44:22.9464850Z Please reconsider re-enabling analytics to help our volunteer maintainers with: 2025-08-14T20:44:22.9465140Z brew analytics on 2025-08-14T20:44:22.9665020Z ==> Homebrew is run entirely by unpaid volunteers. Please consider donating: 2025-08-14T20:44:22.9665470Z https://github.com/Homebrew/brew#donations 2025-08-14T20:44:22.9665680Z 2025-08-14T20:44:23.6175660Z Already up-to-date. 2025-08-14T20:44:24.6099620Z ##[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-08-14T20:44:24.6402720Z Using python at /opt/homebrew/bin/python3.12 to create venv /Users/ec2-user/runner/_work/_temp/venv-3.12-1755204260 2025-08-14T20:44:26.0656220Z Installing requirements from .github/requirements/pip-requirements-macOS.txt 2025-08-14T20:44:26.4233500Z Collecting boto3==1.35.42 (from -r .github/requirements/pip-requirements-macOS.txt (line 1)) 2025-08-14T20:44:26.4243500Z Using cached boto3-1.35.42-py3-none-any.whl.metadata (6.7 kB) 2025-08-14T20:44:26.4878920Z Collecting cmake==3.27.* (from -r .github/requirements/pip-requirements-macOS.txt (line 2)) 2025-08-14T20:44:26.4901420Z 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-08-14T20:44:26.5022600Z Collecting expecttest==0.3.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 3)) 2025-08-14T20:44:26.5042240Z Using cached expecttest-0.3.0-py3-none-any.whl.metadata (3.8 kB) 2025-08-14T20:44:26.5155300Z Collecting fbscribelogger==0.1.7 (from -r .github/requirements/pip-requirements-macOS.txt (line 4)) 2025-08-14T20:44:26.5175540Z Using cached fbscribelogger-0.1.7-py3-none-any.whl.metadata (684 bytes) 2025-08-14T20:44:26.5349050Z Collecting filelock==3.18.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 5)) 2025-08-14T20:44:26.5363090Z Using cached filelock-3.18.0-py3-none-any.whl.metadata (2.9 kB) 2025-08-14T20:44:26.6422420Z Collecting hypothesis==6.56.4 (from -r .github/requirements/pip-requirements-macOS.txt (line 6)) 2025-08-14T20:44:26.6440800Z Using cached hypothesis-6.56.4-py3-none-any.whl.metadata (6.1 kB) 2025-08-14T20:44:26.6633930Z Collecting librosa>=0.6.2 (from -r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-08-14T20:44:26.6653910Z Using cached librosa-0.11.0-py3-none-any.whl.metadata (8.7 kB) 2025-08-14T20:44:26.6788200Z Collecting mpmath==1.3.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 8)) 2025-08-14T20:44:26.6801620Z Using cached mpmath-1.3.0-py3-none-any.whl.metadata (8.6 kB) 2025-08-14T20:44:26.6992520Z Collecting networkx==2.8.7 (from -r .github/requirements/pip-requirements-macOS.txt (line 9)) 2025-08-14T20:44:26.7013040Z Using cached networkx-2.8.7-py3-none-any.whl.metadata (5.1 kB) 2025-08-14T20:44:26.7240130Z Collecting ninja==1.10.2.4 (from -r .github/requirements/pip-requirements-macOS.txt (line 10)) 2025-08-14T20:44:26.7255850Z 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-08-14T20:44:26.7897780Z Collecting numba==0.59.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 11)) 2025-08-14T20:44:26.7920790Z Using cached numba-0.59.0-cp312-cp312-macosx_11_0_arm64.whl.metadata (2.7 kB) 2025-08-14T20:44:26.8749560Z Collecting numpy==1.26.4 (from -r .github/requirements/pip-requirements-macOS.txt (line 12)) 2025-08-14T20:44:26.8773140Z Using cached numpy-1.26.4-cp312-cp312-macosx_11_0_arm64.whl.metadata (61 kB) 2025-08-14T20:44:26.8957220Z Collecting opt-einsum>=3.3 (from -r .github/requirements/pip-requirements-macOS.txt (line 13)) 2025-08-14T20:44:26.8970380Z Using cached opt_einsum-3.4.0-py3-none-any.whl.metadata (6.3 kB) 2025-08-14T20:44:26.9410850Z Collecting optree==0.13.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 14)) 2025-08-14T20:44:26.9425780Z Using cached optree-0.13.0-cp312-cp312-macosx_11_0_arm64.whl.metadata (47 kB) 2025-08-14T20:44:26.9593120Z Collecting packaging==23.1 (from -r .github/requirements/pip-requirements-macOS.txt (line 15)) 2025-08-14T20:44:26.9612440Z Using cached packaging-23.1-py3-none-any.whl.metadata (3.1 kB) 2025-08-14T20:44:26.9723460Z Collecting parameterized==0.8.1 (from -r .github/requirements/pip-requirements-macOS.txt (line 16)) 2025-08-14T20:44:26.9743560Z Using cached parameterized-0.8.1-py2.py3-none-any.whl.metadata (18 kB) 2025-08-14T20:44:27.0551730Z Collecting pillow==10.3.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 17)) 2025-08-14T20:44:27.0567810Z Using cached pillow-10.3.0-cp312-cp312-macosx_11_0_arm64.whl.metadata (9.2 kB) 2025-08-14T20:44:27.1385510Z Collecting protobuf==5.29.4 (from -r .github/requirements/pip-requirements-macOS.txt (line 18)) 2025-08-14T20:44:27.1401520Z Using cached protobuf-5.29.4-cp38-abi3-macosx_10_9_universal2.whl.metadata (592 bytes) 2025-08-14T20:44:27.2039050Z Collecting psutil==5.9.8 (from -r .github/requirements/pip-requirements-macOS.txt (line 19)) 2025-08-14T20:44:27.2060770Z Using cached psutil-5.9.8-cp38-abi3-macosx_11_0_arm64.whl.metadata (21 kB) 2025-08-14T20:44:27.2230260Z Collecting pygments==2.15.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 20)) 2025-08-14T20:44:27.2244280Z Using cached Pygments-2.15.0-py3-none-any.whl.metadata (2.5 kB) 2025-08-14T20:44:27.2378140Z Collecting pytest-cpp==2.3.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 21)) 2025-08-14T20:44:27.2392010Z Using cached pytest_cpp-2.3.0-py3-none-any.whl.metadata (5.4 kB) 2025-08-14T20:44:27.2502590Z Collecting pytest-flakefinder==1.1.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 22)) 2025-08-14T20:44:27.2516130Z Using cached pytest_flakefinder-1.1.0-py2.py3-none-any.whl.metadata (3.3 kB) 2025-08-14T20:44:27.2658560Z Collecting pytest-rerunfailures==10.3 (from -r .github/requirements/pip-requirements-macOS.txt (line 23)) 2025-08-14T20:44:27.2678450Z Using cached pytest_rerunfailures-10.3-py3-none-any.whl.metadata (15 kB) 2025-08-14T20:44:27.2809860Z Collecting pytest-subtests==0.13.1 (from -r .github/requirements/pip-requirements-macOS.txt (line 24)) 2025-08-14T20:44:27.2830770Z Using cached pytest_subtests-0.13.1-py3-none-any.whl.metadata (6.1 kB) 2025-08-14T20:44:27.2968450Z Collecting pytest-xdist==3.3.1 (from -r .github/requirements/pip-requirements-macOS.txt (line 25)) 2025-08-14T20:44:27.2981510Z Using cached pytest_xdist-3.3.1-py3-none-any.whl.metadata (3.1 kB) 2025-08-14T20:44:27.3215970Z Collecting pytest==7.3.2 (from -r .github/requirements/pip-requirements-macOS.txt (line 26)) 2025-08-14T20:44:27.3230790Z Using cached pytest-7.3.2-py3-none-any.whl.metadata (8.0 kB) 2025-08-14T20:44:27.3452290Z Collecting pyyaml==6.0.2 (from -r .github/requirements/pip-requirements-macOS.txt (line 27)) 2025-08-14T20:44:27.3466690Z Using cached PyYAML-6.0.2-cp312-cp312-macosx_11_0_arm64.whl.metadata (2.1 kB) 2025-08-14T20:44:27.4052900Z Collecting scipy==1.12.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 28)) 2025-08-14T20:44:27.4074050Z Using cached scipy-1.12.0-cp312-cp312-macosx_12_0_arm64.whl.metadata (217 kB) 2025-08-14T20:44:27.4984400Z Collecting setuptools==72.1.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 29)) 2025-08-14T20:44:27.5001310Z Using cached setuptools-72.1.0-py3-none-any.whl.metadata (6.6 kB) 2025-08-14T20:44:27.5175900Z Collecting sympy==1.13.3 (from -r .github/requirements/pip-requirements-macOS.txt (line 30)) 2025-08-14T20:44:27.5196370Z Using cached sympy-1.13.3-py3-none-any.whl.metadata (12 kB) 2025-08-14T20:44:27.5415160Z Collecting tlparse==0.3.30 (from -r .github/requirements/pip-requirements-macOS.txt (line 31)) 2025-08-14T20:44:27.5429860Z Using cached tlparse-0.3.30-py3-none-macosx_11_0_arm64.whl.metadata (1.9 kB) 2025-08-14T20:44:27.5563980Z Collecting tensorboard==2.13.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-08-14T20:44:27.5583290Z Using cached tensorboard-2.13.0-py3-none-any.whl.metadata (1.8 kB) 2025-08-14T20:44:27.5741450Z Collecting typing-extensions==4.12.2 (from -r .github/requirements/pip-requirements-macOS.txt (line 33)) 2025-08-14T20:44:27.5755710Z Using cached typing_extensions-4.12.2-py3-none-any.whl.metadata (3.0 kB) 2025-08-14T20:44:27.5897560Z Collecting unittest-xml-reporting<=3.2.0,>=2.0.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 34)) 2025-08-14T20:44:27.5912410Z Using cached unittest_xml_reporting-3.2.0-py2.py3-none-any.whl.metadata (11 kB) 2025-08-14T20:44:27.6058990Z Collecting xdoctest==1.1.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 35)) 2025-08-14T20:44:27.6072540Z Using cached xdoctest-1.1.0-py3-none-any.whl.metadata (37 kB) 2025-08-14T20:44:27.6549560Z Collecting z3-solver==4.15.1.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 36)) 2025-08-14T20:44:27.6563710Z Using cached z3_solver-4.15.1.0-py3-none-macosx_13_0_arm64.whl.metadata (778 bytes) 2025-08-14T20:44:27.8566530Z Collecting botocore<1.36.0,>=1.35.42 (from boto3==1.35.42->-r .github/requirements/pip-requirements-macOS.txt (line 1)) 2025-08-14T20:44:27.8584300Z Using cached botocore-1.35.99-py3-none-any.whl.metadata (5.7 kB) 2025-08-14T20:44:27.8692310Z Collecting jmespath<2.0.0,>=0.7.1 (from boto3==1.35.42->-r .github/requirements/pip-requirements-macOS.txt (line 1)) 2025-08-14T20:44:27.8699700Z Using cached jmespath-1.0.1-py3-none-any.whl.metadata (7.6 kB) 2025-08-14T20:44:27.8825860Z Collecting s3transfer<0.11.0,>=0.10.0 (from boto3==1.35.42->-r .github/requirements/pip-requirements-macOS.txt (line 1)) 2025-08-14T20:44:27.8845780Z Using cached s3transfer-0.10.4-py3-none-any.whl.metadata (1.7 kB) 2025-08-14T20:44:28.1496340Z Collecting aiohttp<4.0.0,>=3.10.4 (from fbscribelogger==0.1.7->-r .github/requirements/pip-requirements-macOS.txt (line 4)) 2025-08-14T20:44:28.1520290Z Using cached aiohttp-3.12.15-cp312-cp312-macosx_11_0_arm64.whl.metadata (7.7 kB) 2025-08-14T20:44:28.1693260Z Collecting thriftpy2<0.6.0,>=0.5.2 (from fbscribelogger==0.1.7->-r .github/requirements/pip-requirements-macOS.txt (line 4)) 2025-08-14T20:44:28.1713750Z Using cached thriftpy2-0.5.3-cp312-cp312-macosx_11_0_arm64.whl.metadata (8.2 kB) 2025-08-14T20:44:28.1873150Z Collecting attrs>=19.2.0 (from hypothesis==6.56.4->-r .github/requirements/pip-requirements-macOS.txt (line 6)) 2025-08-14T20:44:28.1893620Z Using cached attrs-25.3.0-py3-none-any.whl.metadata (10 kB) 2025-08-14T20:44:28.2059150Z Collecting sortedcontainers<3.0.0,>=2.1.0 (from hypothesis==6.56.4->-r .github/requirements/pip-requirements-macOS.txt (line 6)) 2025-08-14T20:44:28.2079460Z Using cached sortedcontainers-2.4.0-py2.py3-none-any.whl.metadata (10 kB) 2025-08-14T20:44:28.2434430Z Collecting llvmlite<0.43,>=0.42.0dev0 (from numba==0.59.0->-r .github/requirements/pip-requirements-macOS.txt (line 11)) 2025-08-14T20:44:28.2455440Z Using cached llvmlite-0.42.0-cp312-cp312-macosx_11_0_arm64.whl.metadata (4.8 kB) 2025-08-14T20:44:28.2675830Z Collecting colorama (from pytest-cpp==2.3.0->-r .github/requirements/pip-requirements-macOS.txt (line 21)) 2025-08-14T20:44:28.2683250Z Using cached colorama-0.4.6-py2.py3-none-any.whl.metadata (17 kB) 2025-08-14T20:44:28.2963490Z Collecting execnet>=1.1 (from pytest-xdist==3.3.1->-r .github/requirements/pip-requirements-macOS.txt (line 25)) 2025-08-14T20:44:28.2985970Z Using cached execnet-2.1.1-py3-none-any.whl.metadata (2.9 kB) 2025-08-14T20:44:28.3139200Z Collecting iniconfig (from pytest==7.3.2->-r .github/requirements/pip-requirements-macOS.txt (line 26)) 2025-08-14T20:44:28.3159010Z Using cached iniconfig-2.1.0-py3-none-any.whl.metadata (2.7 kB) 2025-08-14T20:44:28.3273180Z Collecting pluggy<2.0,>=0.12 (from pytest==7.3.2->-r .github/requirements/pip-requirements-macOS.txt (line 26)) 2025-08-14T20:44:28.3292680Z Using cached pluggy-1.6.0-py3-none-any.whl.metadata (4.8 kB) 2025-08-14T20:44:28.3492910Z Collecting absl-py>=0.4 (from tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-08-14T20:44:28.3507760Z Using cached absl_py-2.3.1-py3-none-any.whl.metadata (3.3 kB) 2025-08-14T20:44:28.5676380Z Collecting grpcio>=1.48.2 (from tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-08-14T20:44:28.5699590Z Using cached grpcio-1.74.0-cp312-cp312-macosx_11_0_universal2.whl.metadata (3.8 kB) 2025-08-14T20:44:28.6397090Z Collecting google-auth<3,>=1.6.3 (from tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-08-14T20:44:28.6419490Z Using cached google_auth-2.40.3-py2.py3-none-any.whl.metadata (6.2 kB) 2025-08-14T20:44:28.6570640Z Collecting google-auth-oauthlib<1.1,>=0.5 (from tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-08-14T20:44:28.6591160Z Using cached google_auth_oauthlib-1.0.0-py2.py3-none-any.whl.metadata (2.7 kB) 2025-08-14T20:44:28.6727580Z Collecting markdown>=2.6.8 (from tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-08-14T20:44:28.6747910Z Using cached markdown-3.8.2-py3-none-any.whl.metadata (5.1 kB) 2025-08-14T20:44:28.7054390Z Collecting requests<3,>=2.21.0 (from tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-08-14T20:44:28.7068880Z Using cached requests-2.32.4-py3-none-any.whl.metadata (4.9 kB) 2025-08-14T20:44:28.7399830Z 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-08-14T20:44:28.7419780Z Using cached tensorboard_data_server-0.7.2-py3-none-any.whl.metadata (1.1 kB) 2025-08-14T20:44:28.7589320Z Collecting werkzeug>=1.0.1 (from tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-08-14T20:44:28.7609880Z Using cached werkzeug-3.1.3-py3-none-any.whl.metadata (3.7 kB) 2025-08-14T20:44:28.7795220Z Collecting wheel>=0.26 (from tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-08-14T20:44:28.7808830Z Using cached wheel-0.45.1-py3-none-any.whl.metadata (2.3 kB) 2025-08-14T20:44:28.7917170Z Collecting six (from xdoctest==1.1.0->-r .github/requirements/pip-requirements-macOS.txt (line 35)) 2025-08-14T20:44:28.7924470Z Using cached six-1.17.0-py2.py3-none-any.whl.metadata (1.7 kB) 2025-08-14T20:44:28.8826430Z Collecting lxml (from unittest-xml-reporting<=3.2.0,>=2.0.0->-r .github/requirements/pip-requirements-macOS.txt (line 34)) 2025-08-14T20:44:28.8843530Z Using cached lxml-6.0.0-cp312-cp312-macosx_10_13_universal2.whl.metadata (6.6 kB) 2025-08-14T20:44:28.8996440Z 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-08-14T20:44:28.9010540Z Using cached aiohappyeyeballs-2.6.1-py3-none-any.whl.metadata (5.9 kB) 2025-08-14T20:44:28.9116520Z 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-08-14T20:44:28.9130200Z Using cached aiosignal-1.4.0-py3-none-any.whl.metadata (3.7 kB) 2025-08-14T20:44:28.9521430Z 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-08-14T20:44:28.9543480Z Using cached frozenlist-1.7.0-cp312-cp312-macosx_11_0_arm64.whl.metadata (18 kB) 2025-08-14T20:44:29.0664610Z 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-08-14T20:44:29.0681570Z Using cached multidict-6.6.4-cp312-cp312-macosx_11_0_arm64.whl.metadata (5.3 kB) 2025-08-14T20:44:29.0973520Z 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-08-14T20:44:29.0994760Z Using cached propcache-0.3.2-cp312-cp312-macosx_11_0_arm64.whl.metadata (12 kB) 2025-08-14T20:44:29.2698840Z 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-08-14T20:44:29.2721550Z Using cached yarl-1.20.1-cp312-cp312-macosx_11_0_arm64.whl.metadata (73 kB) 2025-08-14T20:44:29.2879910Z 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-08-14T20:44:29.2887390Z Using cached python_dateutil-2.9.0.post0-py2.py3-none-any.whl.metadata (8.4 kB) 2025-08-14T20:44:29.3073630Z 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-08-14T20:44:29.3081200Z Using cached urllib3-2.5.0-py3-none-any.whl.metadata (6.5 kB) 2025-08-14T20:44:29.3244010Z 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-08-14T20:44:29.3258090Z Using cached cachetools-5.5.2-py3-none-any.whl.metadata (5.4 kB) 2025-08-14T20:44:29.3422090Z 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-08-14T20:44:29.3435220Z Using cached pyasn1_modules-0.4.2-py3-none-any.whl.metadata (3.5 kB) 2025-08-14T20:44:29.3552070Z 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-08-14T20:44:29.3566040Z Using cached rsa-4.9.1-py3-none-any.whl.metadata (5.6 kB) 2025-08-14T20:44:29.3807650Z 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-08-14T20:44:29.3822090Z Using cached requests_oauthlib-2.0.0-py2.py3-none-any.whl.metadata (11 kB) 2025-08-14T20:44:29.4334620Z 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-08-14T20:44:29.4350390Z Using cached charset_normalizer-3.4.3-cp312-cp312-macosx_10_13_universal2.whl.metadata (36 kB) 2025-08-14T20:44:29.4495600Z 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-08-14T20:44:29.4508740Z Using cached idna-3.10-py3-none-any.whl.metadata (10 kB) 2025-08-14T20:44:29.4744560Z 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-08-14T20:44:29.4758160Z Using cached certifi-2025.8.3-py3-none-any.whl.metadata (2.4 kB) 2025-08-14T20:44:29.5044410Z 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-08-14T20:44:29.5052000Z Using cached pyasn1-0.6.1-py3-none-any.whl.metadata (8.4 kB) 2025-08-14T20:44:29.6276300Z 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-08-14T20:44:29.6290430Z Using cached ply-3.11-py2.py3-none-any.whl.metadata (844 bytes) 2025-08-14T20:44:29.6528840Z Collecting audioread>=2.1.9 (from librosa>=0.6.2->-r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-08-14T20:44:29.6548320Z Using cached audioread-3.0.1-py3-none-any.whl.metadata (8.4 kB) 2025-08-14T20:44:29.7067330Z Collecting scikit-learn>=1.1.0 (from librosa>=0.6.2->-r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-08-14T20:44:29.7088600Z Using cached scikit_learn-1.7.1-cp312-cp312-macosx_12_0_arm64.whl.metadata (11 kB) 2025-08-14T20:44:29.7283410Z Collecting joblib>=1.0 (from librosa>=0.6.2->-r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-08-14T20:44:29.7297270Z Using cached joblib-1.5.1-py3-none-any.whl.metadata (5.6 kB) 2025-08-14T20:44:29.7415850Z Collecting decorator>=4.3.0 (from librosa>=0.6.2->-r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-08-14T20:44:29.7435590Z Using cached decorator-5.2.1-py3-none-any.whl.metadata (3.9 kB) 2025-08-14T20:44:29.7549500Z Collecting soundfile>=0.12.1 (from librosa>=0.6.2->-r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-08-14T20:44:29.7568970Z Using cached soundfile-0.13.1-py2.py3-none-macosx_11_0_arm64.whl.metadata (16 kB) 2025-08-14T20:44:29.7697680Z Collecting pooch>=1.1 (from librosa>=0.6.2->-r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-08-14T20:44:29.7711230Z Using cached pooch-1.8.2-py3-none-any.whl.metadata (10 kB) 2025-08-14T20:44:29.8064310Z Collecting soxr>=0.3.2 (from librosa>=0.6.2->-r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-08-14T20:44:29.8086020Z Using cached soxr-0.5.0.post1-cp312-abi3-macosx_11_0_arm64.whl.metadata (5.6 kB) 2025-08-14T20:44:29.8210990Z Collecting lazy_loader>=0.1 (from librosa>=0.6.2->-r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-08-14T20:44:29.8230380Z Using cached lazy_loader-0.4-py3-none-any.whl.metadata (7.6 kB) 2025-08-14T20:44:29.8614790Z Collecting msgpack>=1.0 (from librosa>=0.6.2->-r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-08-14T20:44:29.8629930Z Using cached msgpack-1.1.1-cp312-cp312-macosx_11_0_arm64.whl.metadata (8.4 kB) 2025-08-14T20:44:29.8964910Z Collecting platformdirs>=2.5.0 (from pooch>=1.1->librosa>=0.6.2->-r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-08-14T20:44:29.8979630Z Using cached platformdirs-4.3.8-py3-none-any.whl.metadata (12 kB) 2025-08-14T20:44:29.9241810Z 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-08-14T20:44:29.9255480Z Using cached oauthlib-3.3.1-py3-none-any.whl.metadata (7.9 kB) 2025-08-14T20:44:29.9484400Z 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-08-14T20:44:29.9498270Z Using cached threadpoolctl-3.6.0-py3-none-any.whl.metadata (13 kB) 2025-08-14T20:44:30.0051370Z Collecting cffi>=1.0 (from soundfile>=0.12.1->librosa>=0.6.2->-r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-08-14T20:44:30.0067260Z Using cached cffi-1.17.1-cp312-cp312-macosx_11_0_arm64.whl.metadata (1.5 kB) 2025-08-14T20:44:30.0179600Z Collecting pycparser (from cffi>=1.0->soundfile>=0.12.1->librosa>=0.6.2->-r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-08-14T20:44:30.0193330Z Using cached pycparser-2.22-py3-none-any.whl.metadata (943 bytes) 2025-08-14T20:44:30.0527810Z Collecting MarkupSafe>=2.1.1 (from werkzeug>=1.0.1->tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-08-14T20:44:30.0549360Z Using cached MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl.metadata (4.0 kB) 2025-08-14T20:44:30.0666180Z Using cached boto3-1.35.42-py3-none-any.whl (139 kB) 2025-08-14T20:44:30.0686200Z Using cached expecttest-0.3.0-py3-none-any.whl (8.2 kB) 2025-08-14T20:44:30.0710520Z Using cached fbscribelogger-0.1.7-py3-none-any.whl (6.9 kB) 2025-08-14T20:44:30.0729870Z Using cached typing_extensions-4.12.2-py3-none-any.whl (37 kB) 2025-08-14T20:44:30.0755820Z Using cached filelock-3.18.0-py3-none-any.whl (16 kB) 2025-08-14T20:44:30.0781440Z Using cached hypothesis-6.56.4-py3-none-any.whl (395 kB) 2025-08-14T20:44:30.0825340Z Using cached mpmath-1.3.0-py3-none-any.whl (536 kB) 2025-08-14T20:44:30.0868690Z Using cached networkx-2.8.7-py3-none-any.whl (2.0 MB) 2025-08-14T20:44:30.0965170Z 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-08-14T20:44:30.0997830Z Using cached numba-0.59.0-cp312-cp312-macosx_11_0_arm64.whl (2.6 MB) 2025-08-14T20:44:30.1117730Z Using cached numpy-1.26.4-cp312-cp312-macosx_11_0_arm64.whl (13.7 MB) 2025-08-14T20:44:30.1424390Z Using cached optree-0.13.0-cp312-cp312-macosx_11_0_arm64.whl (305 kB) 2025-08-14T20:44:30.1457070Z Using cached packaging-23.1-py3-none-any.whl (48 kB) 2025-08-14T20:44:30.1476890Z Using cached parameterized-0.8.1-py2.py3-none-any.whl (26 kB) 2025-08-14T20:44:30.1492550Z Using cached pillow-10.3.0-cp312-cp312-macosx_11_0_arm64.whl (3.4 MB) 2025-08-14T20:44:30.1608500Z Using cached protobuf-5.29.4-cp38-abi3-macosx_10_9_universal2.whl (417 kB) 2025-08-14T20:44:30.1641750Z Using cached psutil-5.9.8-cp38-abi3-macosx_11_0_arm64.whl (249 kB) 2025-08-14T20:44:30.1668180Z Using cached Pygments-2.15.0-py3-none-any.whl (1.1 MB) 2025-08-14T20:44:30.1719300Z Using cached pytest_cpp-2.3.0-py3-none-any.whl (14 kB) 2025-08-14T20:44:30.1738700Z Using cached pytest_flakefinder-1.1.0-py2.py3-none-any.whl (4.6 kB) 2025-08-14T20:44:30.1752030Z Using cached pytest_rerunfailures-10.3-py3-none-any.whl (11 kB) 2025-08-14T20:44:30.1766950Z Using cached pytest_subtests-0.13.1-py3-none-any.whl (8.0 kB) 2025-08-14T20:44:30.1784990Z Using cached pytest_xdist-3.3.1-py3-none-any.whl (41 kB) 2025-08-14T20:44:30.1800540Z Using cached pytest-7.3.2-py3-none-any.whl (320 kB) 2025-08-14T20:44:30.1832960Z Using cached PyYAML-6.0.2-cp312-cp312-macosx_11_0_arm64.whl (173 kB) 2025-08-14T20:44:30.1854970Z Using cached scipy-1.12.0-cp312-cp312-macosx_12_0_arm64.whl (31.4 MB) 2025-08-14T20:44:30.2412990Z Using cached setuptools-72.1.0-py3-none-any.whl (2.3 MB) 2025-08-14T20:44:30.2505110Z Using cached sympy-1.13.3-py3-none-any.whl (6.2 MB) 2025-08-14T20:44:30.2679090Z Using cached tlparse-0.3.30-py3-none-macosx_11_0_arm64.whl (2.0 MB) 2025-08-14T20:44:30.2754840Z Using cached tensorboard-2.13.0-py3-none-any.whl (5.6 MB) 2025-08-14T20:44:30.2918630Z Using cached xdoctest-1.1.0-py3-none-any.whl (135 kB) 2025-08-14T20:44:30.2948620Z Using cached z3_solver-4.15.1.0-py3-none-macosx_13_0_arm64.whl (37.5 MB) 2025-08-14T20:44:30.3611530Z 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-08-14T20:44:30.8204740Z Using cached unittest_xml_reporting-3.2.0-py2.py3-none-any.whl (20 kB) 2025-08-14T20:44:30.8242460Z Using cached aiohttp-3.12.15-cp312-cp312-macosx_11_0_arm64.whl (469 kB) 2025-08-14T20:44:30.8277380Z Using cached botocore-1.35.99-py3-none-any.whl (13.3 MB) 2025-08-14T20:44:30.9768820Z Using cached google_auth-2.40.3-py2.py3-none-any.whl (216 kB) 2025-08-14T20:44:30.9789860Z Using cached cachetools-5.5.2-py3-none-any.whl (10 kB) 2025-08-14T20:44:30.9809260Z Using cached google_auth_oauthlib-1.0.0-py2.py3-none-any.whl (18 kB) 2025-08-14T20:44:30.9820590Z Using cached jmespath-1.0.1-py3-none-any.whl (20 kB) 2025-08-14T20:44:30.9830900Z Using cached llvmlite-0.42.0-cp312-cp312-macosx_11_0_arm64.whl (28.8 MB) 2025-08-14T20:44:31.2997250Z Using cached multidict-6.6.4-cp312-cp312-macosx_11_0_arm64.whl (43 kB) 2025-08-14T20:44:31.3016790Z Using cached pluggy-1.6.0-py3-none-any.whl (20 kB) 2025-08-14T20:44:31.3031550Z Using cached python_dateutil-2.9.0.post0-py2.py3-none-any.whl (229 kB) 2025-08-14T20:44:31.3046720Z Using cached requests-2.32.4-py3-none-any.whl (64 kB) 2025-08-14T20:44:31.3062980Z Using cached charset_normalizer-3.4.3-cp312-cp312-macosx_10_13_universal2.whl (205 kB) 2025-08-14T20:44:31.3089750Z Using cached idna-3.10-py3-none-any.whl (70 kB) 2025-08-14T20:44:31.3111230Z Using cached rsa-4.9.1-py3-none-any.whl (34 kB) 2025-08-14T20:44:31.3126510Z Using cached s3transfer-0.10.4-py3-none-any.whl (83 kB) 2025-08-14T20:44:31.3143810Z Using cached sortedcontainers-2.4.0-py2.py3-none-any.whl (29 kB) 2025-08-14T20:44:31.3163480Z Using cached tensorboard_data_server-0.7.2-py3-none-any.whl (2.4 kB) 2025-08-14T20:44:31.3176860Z Using cached thriftpy2-0.5.3-cp312-cp312-macosx_11_0_arm64.whl (833 kB) 2025-08-14T20:44:31.3219870Z Using cached ply-3.11-py2.py3-none-any.whl (49 kB) 2025-08-14T20:44:31.3236670Z Using cached six-1.17.0-py2.py3-none-any.whl (11 kB) 2025-08-14T20:44:31.3242970Z Using cached urllib3-2.5.0-py3-none-any.whl (129 kB) 2025-08-14T20:44:31.3254330Z Using cached yarl-1.20.1-cp312-cp312-macosx_11_0_arm64.whl (89 kB) 2025-08-14T20:44:31.3276310Z Using cached librosa-0.11.0-py3-none-any.whl (260 kB) 2025-08-14T20:44:31.3302820Z Using cached opt_einsum-3.4.0-py3-none-any.whl (71 kB) 2025-08-14T20:44:31.3323430Z Using cached absl_py-2.3.1-py3-none-any.whl (135 kB) 2025-08-14T20:44:31.3345900Z Using cached aiohappyeyeballs-2.6.1-py3-none-any.whl (15 kB) 2025-08-14T20:44:31.3359930Z Using cached aiosignal-1.4.0-py3-none-any.whl (7.5 kB) 2025-08-14T20:44:31.3377940Z Using cached attrs-25.3.0-py3-none-any.whl (63 kB) 2025-08-14T20:44:31.3397800Z Using cached audioread-3.0.1-py3-none-any.whl (23 kB) 2025-08-14T20:44:31.3416750Z Using cached certifi-2025.8.3-py3-none-any.whl (161 kB) 2025-08-14T20:44:31.3439480Z Using cached decorator-5.2.1-py3-none-any.whl (9.2 kB) 2025-08-14T20:44:31.3460750Z Using cached execnet-2.1.1-py3-none-any.whl (40 kB) 2025-08-14T20:44:31.3479740Z Using cached frozenlist-1.7.0-cp312-cp312-macosx_11_0_arm64.whl (46 kB) 2025-08-14T20:44:31.3499210Z Using cached grpcio-1.74.0-cp312-cp312-macosx_11_0_universal2.whl (11.0 MB) 2025-08-14T20:44:31.4530830Z Using cached joblib-1.5.1-py3-none-any.whl (307 kB) 2025-08-14T20:44:31.4592910Z Using cached lazy_loader-0.4-py3-none-any.whl (12 kB) 2025-08-14T20:44:31.4606770Z Using cached markdown-3.8.2-py3-none-any.whl (106 kB) 2025-08-14T20:44:31.4628100Z Using cached msgpack-1.1.1-cp312-cp312-macosx_11_0_arm64.whl (79 kB) 2025-08-14T20:44:31.4650110Z Using cached pooch-1.8.2-py3-none-any.whl (64 kB) 2025-08-14T20:44:31.4671160Z Using cached platformdirs-4.3.8-py3-none-any.whl (18 kB) 2025-08-14T20:44:31.4686570Z Using cached propcache-0.3.2-cp312-cp312-macosx_11_0_arm64.whl (43 kB) 2025-08-14T20:44:31.4703080Z Using cached pyasn1-0.6.1-py3-none-any.whl (83 kB) 2025-08-14T20:44:31.4713760Z Using cached pyasn1_modules-0.4.2-py3-none-any.whl (181 kB) 2025-08-14T20:44:31.4737510Z Using cached requests_oauthlib-2.0.0-py2.py3-none-any.whl (24 kB) 2025-08-14T20:44:31.4752260Z Using cached oauthlib-3.3.1-py3-none-any.whl (160 kB) 2025-08-14T20:44:31.4777190Z Using cached scikit_learn-1.7.1-cp312-cp312-macosx_12_0_arm64.whl (8.6 MB) 2025-08-14T20:44:31.5626020Z Using cached soundfile-0.13.1-py2.py3-none-macosx_11_0_arm64.whl (1.1 MB) 2025-08-14T20:44:31.5764050Z Using cached cffi-1.17.1-cp312-cp312-macosx_11_0_arm64.whl (178 kB) 2025-08-14T20:44:31.5787350Z Using cached soxr-0.5.0.post1-cp312-abi3-macosx_11_0_arm64.whl (156 kB) 2025-08-14T20:44:31.5819340Z Using cached threadpoolctl-3.6.0-py3-none-any.whl (18 kB) 2025-08-14T20:44:31.5833990Z Using cached werkzeug-3.1.3-py3-none-any.whl (224 kB) 2025-08-14T20:44:31.5855170Z Using cached MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl (12 kB) 2025-08-14T20:44:31.5873470Z Using cached wheel-0.45.1-py3-none-any.whl (72 kB) 2025-08-14T20:44:31.5886960Z Using cached colorama-0.4.6-py2.py3-none-any.whl (25 kB) 2025-08-14T20:44:31.5908050Z Using cached iniconfig-2.1.0-py3-none-any.whl (6.0 kB) 2025-08-14T20:44:31.5925440Z Using cached lxml-6.0.0-cp312-cp312-macosx_10_13_universal2.whl (8.4 MB) 2025-08-14T20:44:31.6808320Z Using cached pycparser-2.22-py3-none-any.whl (117 kB) 2025-08-14T20:44:31.9744360Z 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-08-14T20:44:46.4047020Z 2025-08-14T20:44:46.4086780Z 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.1 lazy_loader-0.4 librosa-0.11.0 llvmlite-0.42.0 lxml-6.0.0 markdown-3.8.2 mpmath-1.3.0 msgpack-1.1.1 multidict-6.6.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.3.8 pluggy-1.6.0 ply-3.11 pooch-1.8.2 propcache-0.3.2 protobuf-5.29.4 psutil-5.9.8 pyasn1-0.6.1 pyasn1-modules-0.4.2 pycparser-2.22 pygments-2.15.0 pytest-7.3.2 pytest-cpp-2.3.0 pytest-flakefinder-1.1.0 pytest-rerunfailures-10.3 pytest-subtests-0.13.1 pytest-xdist-3.3.1 python-dateutil-2.9.0.post0 pyyaml-6.0.2 requests-2.32.4 requests-oauthlib-2.0.0 rsa-4.9.1 s3transfer-0.10.4 scikit-learn-1.7.1 scipy-1.12.0 setuptools-72.1.0 six-1.17.0 sortedcontainers-2.4.0 soundfile-0.13.1 soxr-0.5.0.post1 sympy-1.13.3 tensorboard-2.13.0 tensorboard-data-server-0.7.2 threadpoolctl-3.6.0 thriftpy2-0.5.3 tlparse-0.3.30 typing-extensions-4.12.2 unittest-xml-reporting-3.2.0 urllib3-2.5.0 werkzeug-3.1.3 wheel-0.45.1 xdoctest-1.1.0 yarl-1.20.1 z3-solver-4.15.1.0 2025-08-14T20:44:46.4378150Z 2025-08-14T20:44:46.4378480Z [notice] A new release of pip is available: 25.1.1 -> 25.2 2025-08-14T20:44:46.4378950Z [notice] To update, run: /Users/ec2-user/runner/_work/_temp/venv-3.12-1755204260/bin/python -m pip install --upgrade pip 2025-08-14T20:44:47.0593140Z ##[group]Run nick-fields/retry@7152eba30c6575329ac0576536151aca5a72780e 2025-08-14T20:44:47.0593380Z with: 2025-08-14T20:44:47.0593480Z timeout_minutes: 5 2025-08-14T20:44:47.0593600Z max_attempts: 3 2025-08-14T20:44:47.0593720Z retry_wait_seconds: 90 2025-08-14T20:44:47.0596020Z 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-08-14T20:44:47.0598410Z polling_interval_seconds: 1 2025-08-14T20:44:47.0598560Z warning_on_retry: true 2025-08-14T20:44:47.0598800Z continue_on_error: false 2025-08-14T20:44:47.0598930Z env: 2025-08-14T20:44:47.0599040Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-08-14T20:44:47.0599200Z SCCACHE_USE_GHA: false 2025-08-14T20:44:47.0599400Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1755204260 2025-08-14T20:44:47.0599620Z ##[endgroup] 2025-08-14T20:44:47.1346710Z + DOWNLOAD_SCCACHE=0 2025-08-14T20:44:47.1346960Z + SCCACHE_VERSION=0.4.1 2025-08-14T20:44:47.1347150Z + LOCAL_PATH=/usr/local/bin 2025-08-14T20:44:47.1347350Z + '[' '!' -f /usr/local/bin/sccache ']' 2025-08-14T20:44:47.1361280Z ++ /usr/local/bin/sccache --version 2025-08-14T20:44:47.1361920Z ++ cut '-d ' -f2 2025-08-14T20:44:47.1862150Z + LOCAL_VERSION=0.4.1 2025-08-14T20:44:47.1862360Z + '[' 0.4.1 '!=' 0.4.1 ']' 2025-08-14T20:44:47.1862520Z + '[' 0 == 1 ']' 2025-08-14T20:44:47.1862670Z + [[ false == \t\r\u\e ]] 2025-08-14T20:44:47.1862900Z + echo SCCACHE_BUCKET=ossci-compiler-cache-circleci-v2 2025-08-14T20:44:47.1871830Z + echo SCCACHE_S3_KEY_PREFIX=trunk 2025-08-14T20:44:47.1873570Z + echo /usr/local/bin 2025-08-14T20:44:48.1376150Z Command completed after 1 attempt(s). 2025-08-14T20:44:48.1553210Z Prepare all required actions 2025-08-14T20:44:48.1631170Z ##[group]Run ./.github/actions/get-workflow-job-id 2025-08-14T20:44:48.1631860Z with: 2025-08-14T20:44:48.1633100Z github-token: *** 2025-08-14T20:44:48.1633570Z env: 2025-08-14T20:44:48.1633980Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-08-14T20:44:48.1634540Z SCCACHE_USE_GHA: false 2025-08-14T20:44:48.1635180Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1755204260 2025-08-14T20:44:48.1635950Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-08-14T20:44:48.1636560Z SCCACHE_S3_KEY_PREFIX: trunk 2025-08-14T20:44:48.1637020Z ##[endgroup] 2025-08-14T20:44:48.1672590Z ##[group]Run set -eux 2025-08-14T20:44:48.1673130Z set -eux 2025-08-14T20:44:48.1673940Z python3 .github/scripts/get_workflow_job_id.py "${GITHUB_RUN_ID}" "${RUNNER_NAME}" 2025-08-14T20:44:48.1726490Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-08-14T20:44:48.1727150Z env: 2025-08-14T20:44:48.1727660Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-08-14T20:44:48.1728220Z SCCACHE_USE_GHA: false 2025-08-14T20:44:48.1729000Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1755204260 2025-08-14T20:44:48.1729710Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-08-14T20:44:48.1730270Z SCCACHE_S3_KEY_PREFIX: trunk 2025-08-14T20:44:48.1730970Z GITHUB_TOKEN: *** 2025-08-14T20:44:48.1731300Z ##[endgroup] 2025-08-14T20:44:48.2154570Z + python3 .github/scripts/get_workflow_job_id.py 16976255045 i-03915bc5d520427be 2025-08-14T20:44:48.5746730Z Setting output job-id=48125835262 2025-08-14T20:44:48.5748280Z Setting output job-name=macos-py3-arm64 / build 2025-08-14T20:44:48.6167490Z Prepare all required actions 2025-08-14T20:44:48.6167960Z Getting action download info 2025-08-14T20:44:48.7524070Z Download action repository 'nick-fields/retry@v3.0.0' (SHA:7152eba30c6575329ac0576536151aca5a72780e) 2025-08-14T20:44:49.0101040Z ##[group]Run ./.github/actions/filter-test-configs 2025-08-14T20:44:49.0101280Z with: 2025-08-14T20:44:49.0101580Z github-token: *** 2025-08-14T20:44:49.0102360Z 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-08-14T20:44:49.0103190Z job-name: macos-py3-arm64 / build 2025-08-14T20:44:49.0103390Z env: 2025-08-14T20:44:49.0103520Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-08-14T20:44:49.0103720Z SCCACHE_USE_GHA: false 2025-08-14T20:44:49.0103950Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1755204260 2025-08-14T20:44:49.0104260Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-08-14T20:44:49.0104590Z SCCACHE_S3_KEY_PREFIX: trunk 2025-08-14T20:44:49.0104750Z ##[endgroup] 2025-08-14T20:44:49.0127280Z ##[group]Run nick-fields/retry@v3.0.0 2025-08-14T20:44:49.0127450Z with: 2025-08-14T20:44:49.0127550Z shell: bash 2025-08-14T20:44:49.0127690Z timeout_minutes: 10 2025-08-14T20:44:49.0127840Z max_attempts: 5 2025-08-14T20:44:49.0127970Z retry_wait_seconds: 30 2025-08-14T20:44:49.0128500Z 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-08-14T20:44:49.0129010Z polling_interval_seconds: 1 2025-08-14T20:44:49.0129190Z warning_on_retry: true 2025-08-14T20:44:49.0129340Z continue_on_error: false 2025-08-14T20:44:49.0129510Z env: 2025-08-14T20:44:49.0129640Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-08-14T20:44:49.0129830Z SCCACHE_USE_GHA: false 2025-08-14T20:44:49.0130060Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1755204260 2025-08-14T20:44:49.0130370Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-08-14T20:44:49.0130600Z SCCACHE_S3_KEY_PREFIX: trunk 2025-08-14T20:44:49.0130860Z GITHUB_TOKEN: *** 2025-08-14T20:44:49.0131010Z ##[endgroup] 2025-08-14T20:44:49.0904840Z + python3 -m pip install requests==2.27.1 pyyaml==6.0.2 2025-08-14T20:44:49.2910150Z Collecting requests==2.27.1 2025-08-14T20:44:49.2941290Z Using cached requests-2.27.1-py2.py3-none-any.whl.metadata (5.0 kB) 2025-08-14T20:44:49.2981790Z Requirement already satisfied: pyyaml==6.0.2 in /Users/ec2-user/runner/_work/_temp/venv-3.12-1755204260/lib/python3.12/site-packages (6.0.2) 2025-08-14T20:44:49.3118030Z Collecting urllib3<1.27,>=1.21.1 (from requests==2.27.1) 2025-08-14T20:44:49.3134180Z Using cached urllib3-1.26.20-py2.py3-none-any.whl.metadata (50 kB) 2025-08-14T20:44:49.3205020Z Requirement already satisfied: certifi>=2017.4.17 in /Users/ec2-user/runner/_work/_temp/venv-3.12-1755204260/lib/python3.12/site-packages (from requests==2.27.1) (2025.8.3) 2025-08-14T20:44:49.3562590Z Collecting charset-normalizer~=2.0.0 (from requests==2.27.1) 2025-08-14T20:44:49.3590560Z Using cached charset_normalizer-2.0.12-py3-none-any.whl.metadata (11 kB) 2025-08-14T20:44:49.3634270Z Requirement already satisfied: idna<4,>=2.5 in /Users/ec2-user/runner/_work/_temp/venv-3.12-1755204260/lib/python3.12/site-packages (from requests==2.27.1) (3.10) 2025-08-14T20:44:49.3667440Z Using cached requests-2.27.1-py2.py3-none-any.whl (63 kB) 2025-08-14T20:44:49.3697830Z Using cached charset_normalizer-2.0.12-py3-none-any.whl (39 kB) 2025-08-14T20:44:49.3718960Z Using cached urllib3-1.26.20-py2.py3-none-any.whl (144 kB) 2025-08-14T20:44:49.4495660Z Installing collected packages: urllib3, charset-normalizer, requests 2025-08-14T20:44:49.4497610Z Attempting uninstall: urllib3 2025-08-14T20:44:49.4508830Z Found existing installation: urllib3 2.5.0 2025-08-14T20:44:49.4532610Z Uninstalling urllib3-2.5.0: 2025-08-14T20:44:49.4541630Z Successfully uninstalled urllib3-2.5.0 2025-08-14T20:44:49.5005350Z Attempting uninstall: charset-normalizer 2025-08-14T20:44:49.5026990Z Found existing installation: charset-normalizer 3.4.3 2025-08-14T20:44:49.5046180Z Uninstalling charset-normalizer-3.4.3: 2025-08-14T20:44:49.5056120Z Successfully uninstalled charset-normalizer-3.4.3 2025-08-14T20:44:49.5247570Z Attempting uninstall: requests 2025-08-14T20:44:49.5264630Z Found existing installation: requests 2.32.4 2025-08-14T20:44:49.5279870Z Uninstalling requests-2.32.4: 2025-08-14T20:44:49.5285810Z Successfully uninstalled requests-2.32.4 2025-08-14T20:44:49.5522190Z 2025-08-14T20:44:49.5557520Z Successfully installed charset-normalizer-2.0.12 requests-2.27.1 urllib3-1.26.20 2025-08-14T20:44:49.5579510Z 2025-08-14T20:44:49.5579750Z [notice] A new release of pip is available: 25.1.1 -> 25.2 2025-08-14T20:44:49.5580060Z [notice] To update, run: pip install --upgrade pip 2025-08-14T20:44:50.0935320Z Command completed after 1 attempt(s). 2025-08-14T20:44:50.1116940Z ##[group]Run set -x 2025-08-14T20:44:50.1117480Z set -x 2025-08-14T20:44:50.1117980Z  2025-08-14T20:44:50.1118750Z # Use relative path here as this could be checked out anywhere, not necessarily 2025-08-14T20:44:50.1119730Z # in runner workspace 2025-08-14T20:44:50.1120500Z python3 "${GITHUB_ACTION_PATH}/../../scripts/parse_ref.py" 2025-08-14T20:44:50.1179880Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-08-14T20:44:50.1180790Z env: 2025-08-14T20:44:50.1181310Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-08-14T20:44:50.1181860Z SCCACHE_USE_GHA: false 2025-08-14T20:44:50.1182630Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1755204260 2025-08-14T20:44:50.1183650Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-08-14T20:44:50.1184260Z SCCACHE_S3_KEY_PREFIX: trunk 2025-08-14T20:44:50.1184840Z ##[endgroup] 2025-08-14T20:44:50.1674930Z + python3 /Users/ec2-user/runner/_work/pytorch/pytorch/./.github/actions/filter-test-configs/../../scripts/parse_ref.py 2025-08-14T20:44:50.1867070Z Setting output branch=main 2025-08-14T20:44:50.1923970Z ##[group]Run echo "Workflow: ${GITHUB_WORKFLOW}" 2025-08-14T20:44:50.1924260Z echo "Workflow: ${GITHUB_WORKFLOW}" 2025-08-14T20:44:50.1924470Z echo "Job name: ${JOB_NAME}" 2025-08-14T20:44:50.1924640Z  2025-08-14T20:44:50.1924900Z # Use relative path here as this could be checked out anywhere, not necessarily 2025-08-14T20:44:50.1925200Z # in runner workspace 2025-08-14T20:44:50.1925470Z python3 "${GITHUB_ACTION_PATH}/../../scripts/filter_test_configs.py" \ 2025-08-14T20:44:50.1925780Z  --workflow "${GITHUB_WORKFLOW}" \ 2025-08-14T20:44:50.1926030Z  --job-name "${JOB_NAME}" \ 2025-08-14T20:44:50.1926220Z  --test-matrix "{ include: [ 2025-08-14T20:44:50.1926510Z  { config: "default", shard: 1, num_shards: 3, runner: "macos-m1-stable" }, 2025-08-14T20:44:50.1926900Z  { config: "default", shard: 2, num_shards: 3, runner: "macos-m1-stable" }, 2025-08-14T20:44:50.1927270Z  { config: "default", shard: 3, num_shards: 3, runner: "macos-m1-stable" }, 2025-08-14T20:44:50.1927610Z  { config: "mps", shard: 1, num_shards: 1, runner: "macos-m1-14" }, 2025-08-14T20:44:50.1927930Z  { config: "mps", shard: 1, num_shards: 1, runner: "macos-m2-15" }, 2025-08-14T20:44:50.1928190Z ]} 2025-08-14T20:44:50.1928320Z " \ 2025-08-14T20:44:50.1928470Z  --selected-test-configs "" \ 2025-08-14T20:44:50.1928700Z  --pr-number "${PR_NUMBER}" \ 2025-08-14T20:44:50.1928890Z  --tag "${TAG}" \ 2025-08-14T20:44:50.1929070Z  --event-name "${EVENT_NAME}" \ 2025-08-14T20:44:50.1929480Z  --schedule "${SCHEDULE}" \ 2025-08-14T20:44:50.1929680Z  --branch "${HEAD_BRANCH}" 2025-08-14T20:44:50.1945650Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-08-14T20:44:50.1945870Z env: 2025-08-14T20:44:50.1946000Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-08-14T20:44:50.1946180Z SCCACHE_USE_GHA: false 2025-08-14T20:44:50.1946410Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1755204260 2025-08-14T20:44:50.1946690Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-08-14T20:44:50.1946910Z SCCACHE_S3_KEY_PREFIX: trunk 2025-08-14T20:44:50.1947270Z GITHUB_TOKEN: *** 2025-08-14T20:44:50.1947420Z JOB_NAME: macos-py3-arm64 / build 2025-08-14T20:44:50.1947590Z PR_NUMBER: 2025-08-14T20:44:50.1947710Z TAG: 2025-08-14T20:44:50.1947850Z EVENT_NAME: push 2025-08-14T20:44:50.1947980Z SCHEDULE: 2025-08-14T20:44:50.1948110Z HEAD_BRANCH: main 2025-08-14T20:44:50.1948230Z ##[endgroup] 2025-08-14T20:44:50.2214060Z Workflow: trunk 2025-08-14T20:44:50.2214350Z Job name: macos-py3-arm64 / build 2025-08-14T20:44:50.4887220Z Setting output keep-going=True 2025-08-14T20:44:50.4887680Z Setting output ci-verbose-test-logs=False 2025-08-14T20:44:50.4888030Z Setting output ci-test-showlocals=False 2025-08-14T20:44:50.4888810Z Setting output ci-no-test-timeout=False 2025-08-14T20:44:50.4889120Z Setting output ci-no-td=False 2025-08-14T20:44:50.4889440Z Setting output ci-td-distributed=False 2025-08-14T20:44:50.4889750Z Setting output is-unstable=False 2025-08-14T20:44:50.4890050Z Setting output reenabled-issues= 2025-08-14T20:44:50.4891480Z 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-08-14T20:44:50.4892880Z Setting output is-test-matrix-empty=False 2025-08-14T20:44:50.5020080Z ##[group]Run echo "Filtered matrix:" 2025-08-14T20:44:50.5020360Z echo "Filtered matrix:" 2025-08-14T20:44:50.5021450Z 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-08-14T20:44:50.5022470Z  2025-08-14T20:44:50.5022630Z echo 2025-08-14T20:44:50.5022860Z echo "Is the current job unstable? False" 2025-08-14T20:44:50.5023110Z  2025-08-14T20:44:50.5023260Z echo 2025-08-14T20:44:50.5023450Z echo "Is keep-going label set? True" 2025-08-14T20:44:50.5023710Z  2025-08-14T20:44:50.5023860Z echo 2025-08-14T20:44:50.5024040Z echo "Reenabled issues? " 2025-08-14T20:44:50.5045240Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-08-14T20:44:50.5045500Z env: 2025-08-14T20:44:50.5045680Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-08-14T20:44:50.5045900Z SCCACHE_USE_GHA: false 2025-08-14T20:44:50.5046180Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1755204260 2025-08-14T20:44:50.5046520Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-08-14T20:44:50.5046790Z SCCACHE_S3_KEY_PREFIX: trunk 2025-08-14T20:44:50.5046980Z ##[endgroup] 2025-08-14T20:44:50.5334080Z Filtered matrix: 2025-08-14T20:44:50.5335510Z {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-08-14T20:44:50.5336610Z 2025-08-14T20:44:50.5336710Z Is the current job unstable? False 2025-08-14T20:44:50.5336840Z 2025-08-14T20:44:50.5336920Z Is keep-going label set? True 2025-08-14T20:44:50.5337110Z 2025-08-14T20:44:50.5337170Z Reenabled issues? 2025-08-14T20:44:50.5375390Z ##[group]Run # TODO: Remove me later, and properly activate venv 2025-08-14T20:44:50.5375700Z # TODO: Remove me later, and properly activate venv 2025-08-14T20:44:50.5375930Z PATH="$VENV_PATH/bin:$PATH" 2025-08-14T20:44:50.5376110Z export PATH 2025-08-14T20:44:50.5376240Z  2025-08-14T20:44:50.5376480Z # NB: Same trick as Linux, there is no need to initialize sccache with the risk of getting 2025-08-14T20:44:50.5376880Z # it hangs or timeout at initialization. The cache will be started automatically 2025-08-14T20:44:50.5377180Z export SKIP_SCCACHE_INITIALIZATION=1 2025-08-14T20:44:50.5377400Z .ci/pytorch/macos-build.sh 2025-08-14T20:44:50.5393550Z shell: /bin/bash -e {0} 2025-08-14T20:44:50.5393710Z env: 2025-08-14T20:44:50.5393830Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-08-14T20:44:50.5394000Z SCCACHE_USE_GHA: false 2025-08-14T20:44:50.5394430Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1755204260 2025-08-14T20:44:50.5394750Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-08-14T20:44:50.5394970Z SCCACHE_S3_KEY_PREFIX: trunk 2025-08-14T20:44:50.5395150Z OUR_GITHUB_JOB_ID: 48125835262 2025-08-14T20:44:50.5395320Z ##[endgroup] 2025-08-14T20:44:50.5936560Z +++ [[ macos-py3-arm64 == *rocm* ]] 2025-08-14T20:44:50.5936850Z +++ BUILD_TEST_LIBTORCH=0 2025-08-14T20:44:50.5939230Z ++ sysctl -a 2025-08-14T20:44:50.5940140Z ++ grep machdep.cpu 2025-08-14T20:44:50.6055980Z machdep.cpu.cores_per_package: 8 2025-08-14T20:44:50.6056300Z machdep.cpu.core_count: 8 2025-08-14T20:44:50.6056520Z machdep.cpu.logical_per_package: 8 2025-08-14T20:44:50.6056730Z machdep.cpu.thread_count: 8 2025-08-14T20:44:50.6056920Z machdep.cpu.brand_string: Apple M1 2025-08-14T20:44:50.6057420Z ++ export MACOSX_DEPLOYMENT_TARGET=11.1 2025-08-14T20:44:50.6057650Z ++ MACOSX_DEPLOYMENT_TARGET=11.1 2025-08-14T20:44:50.6057830Z ++ export CXX=clang++ 2025-08-14T20:44:50.6058060Z ++ CXX=clang++ 2025-08-14T20:44:50.6058230Z ++ export CC=clang 2025-08-14T20:44:50.6058370Z ++ CC=clang 2025-08-14T20:44:50.6061630Z ++ dirname .ci/pytorch/macos-build.sh 2025-08-14T20:44:50.6071250Z + source .ci/pytorch/common-build.sh 2025-08-14T20:44:50.6078510Z ++ [[ macos-py3-arm64 != *win-* ]] 2025-08-14T20:44:50.6083550Z ++++ dirname .ci/pytorch/common-build.sh 2025-08-14T20:44:50.6094820Z +++ cd .ci/pytorch 2025-08-14T20:44:50.6095100Z +++ pwd -P 2025-08-14T20:44:50.6096300Z ++ script_dir=/Users/ec2-user/runner/_work/pytorch/pytorch/.ci/pytorch 2025-08-14T20:44:50.6096600Z ++ [[ macos-py3-arm64 == *-pch* ]] 2025-08-14T20:44:50.6096800Z ++ which sccache 2025-08-14T20:44:50.6107930Z ++ [[ -z ossci-compiler-cache-circleci-v2 ]] 2025-08-14T20:44:50.6108160Z ++ sccache --stop-server 2025-08-14T20:44:50.6218210Z ++ true 2025-08-14T20:44:50.6218380Z ++ rm -f /Users/ec2-user/sccache_error.log 2025-08-14T20:44:50.6244110Z ++ trap_add sccache_epilogue EXIT 2025-08-14T20:44:50.6244350Z ++ trap_add_cmd=sccache_epilogue 2025-08-14T20:44:50.6244550Z ++ shift 2025-08-14T20:44:50.6244700Z ++ for trap_add_name in '"$@"' 2025-08-14T20:44:50.6249910Z ++++ trap -p EXIT 2025-08-14T20:44:50.6250980Z +++ eval 'extract_trap_cmd ' 2025-08-14T20:44:50.6251180Z ++++ extract_trap_cmd 2025-08-14T20:44:50.6251330Z ++++ printf '%s\n' '' 2025-08-14T20:44:50.6251500Z +++ printf '%s\n' sccache_epilogue 2025-08-14T20:44:50.6253030Z ++ trap -- ' 2025-08-14T20:44:50.6253320Z sccache_epilogue' EXIT 2025-08-14T20:44:50.6253490Z ++ [[ -n 1 ]] 2025-08-14T20:44:50.6253750Z ++ echo 'Skipping sccache server initialization, setting environment variables' 2025-08-14T20:44:50.6254070Z ++ export SCCACHE_IDLE_TIMEOUT=0 2025-08-14T20:44:50.6254260Z ++ SCCACHE_IDLE_TIMEOUT=0 2025-08-14T20:44:50.6254500Z ++ export SCCACHE_ERROR_LOG=/Users/ec2-user/sccache_error.log 2025-08-14T20:44:50.6254810Z ++ SCCACHE_ERROR_LOG=/Users/ec2-user/sccache_error.log 2025-08-14T20:44:50.6255130Z Skipping sccache server initialization, setting environment variables 2025-08-14T20:44:50.6259670Z ++ export RUST_LOG=sccache::server=error 2025-08-14T20:44:50.6259890Z ++ RUST_LOG=sccache::server=error 2025-08-14T20:44:50.6260080Z ++ sccache --zero-stats 2025-08-14T20:44:51.1547570Z Compile requests 0 2025-08-14T20:44:51.1547910Z Compile requests executed 0 2025-08-14T20:44:51.1548210Z Cache hits 0 2025-08-14T20:44:51.1548480Z Cache misses 0 2025-08-14T20:44:51.1548760Z Cache timeouts 0 2025-08-14T20:44:51.1549050Z Cache read errors 0 2025-08-14T20:44:51.1549320Z Forced recaches 0 2025-08-14T20:44:51.1549620Z Cache write errors 0 2025-08-14T20:44:51.1549890Z Compilation failures 0 2025-08-14T20:44:51.1550170Z Cache errors 0 2025-08-14T20:44:51.1550450Z Non-cacheable compilations 0 2025-08-14T20:44:51.1550750Z Non-cacheable calls 0 2025-08-14T20:44:51.1551390Z Non-compilation calls 0 2025-08-14T20:44:51.1551700Z Unsupported compiler calls 0 2025-08-14T20:44:51.1552010Z Average cache write 0.000 s 2025-08-14T20:44:51.1552290Z Average compiler 0.000 s 2025-08-14T20:44:51.1552550Z ++ which ccache 2025-08-14T20:44:51.1552770Z Average cache read hit 0.000 s 2025-08-14T20:44:51.1553100Z Failed distributed compilations 0 2025-08-14T20:44:51.1553550Z Cache location s3, name: ossci-compiler-cache-circleci-v2, prefix: /trunk/ 2025-08-14T20:44:51.1553970Z Version (client) 0.4.1 2025-08-14T20:44:51.1571510Z + '[' -z true ']' 2025-08-14T20:44:51.1571900Z + which sccache 2025-08-14T20:44:51.1589590Z ++ mktemp -d 2025-08-14T20:44:51.1641190Z + tmp_dir=/var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.ay8w3oV9ND 2025-08-14T20:44:51.1641650Z + trap 'rm -rfv ${tmp_dir}' EXIT 2025-08-14T20:44:51.1642090Z + write_sccache_stub /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.ay8w3oV9ND/clang++ 2025-08-14T20:44:51.1642720Z + output=/var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.ay8w3oV9ND/clang++ 2025-08-14T20:44:51.1645030Z ++ basename /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.ay8w3oV9ND/clang++ 2025-08-14T20:44:51.1658510Z + binary=clang++ 2025-08-14T20:44:51.1662140Z ++ which clang++ 2025-08-14T20:44:51.1675680Z ++ which clang++ 2025-08-14T20:44:51.1686270Z + 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-08-14T20:44:51.1687640Z + chmod a+x /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.ay8w3oV9ND/clang++ 2025-08-14T20:44:51.1700310Z + write_sccache_stub /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.ay8w3oV9ND/clang 2025-08-14T20:44:51.1700810Z + output=/var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.ay8w3oV9ND/clang 2025-08-14T20:44:51.1703260Z ++ basename /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.ay8w3oV9ND/clang 2025-08-14T20:44:51.1714540Z + binary=clang 2025-08-14T20:44:51.1717730Z ++ which clang 2025-08-14T20:44:51.1729810Z ++ which clang 2025-08-14T20:44:51.1739130Z + 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-08-14T20:44:51.1740140Z + chmod a+x /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.ay8w3oV9ND/clang 2025-08-14T20:44:51.1753030Z + export PATH=/var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.ay8w3oV9ND:/Users/ec2-user/runner/_work/_temp/venv-3.12-1755204260/bin:/usr/local/bin:/Users/ec2-user/runner/_work/_temp/venv-3.12-1755204260/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-08-14T20:44:51.1755290Z + PATH=/var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.ay8w3oV9ND:/Users/ec2-user/runner/_work/_temp/venv-3.12-1755204260/bin:/usr/local/bin:/Users/ec2-user/runner/_work/_temp/venv-3.12-1755204260/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-08-14T20:44:51.1756360Z + print_cmake_info 2025-08-14T20:44:51.1756510Z ++ which cmake 2025-08-14T20:44:51.1764540Z + CMAKE_EXEC=/Users/ec2-user/runner/_work/_temp/venv-3.12-1755204260/bin/cmake 2025-08-14T20:44:51.1765000Z + echo /Users/ec2-user/runner/_work/_temp/venv-3.12-1755204260/bin/cmake 2025-08-14T20:44:51.1765370Z /Users/ec2-user/runner/_work/_temp/venv-3.12-1755204260/bin/cmake 2025-08-14T20:44:51.1767590Z ++ dirname /Users/ec2-user/runner/_work/_temp/venv-3.12-1755204260/bin/cmake 2025-08-14T20:44:51.1776570Z + CONDA_INSTALLATION_DIR=/Users/ec2-user/runner/_work/_temp/venv-3.12-1755204260/bin 2025-08-14T20:44:51.1777140Z + ls -la /Users/ec2-user/runner/_work/_temp/venv-3.12-1755204260/bin/../lib 2025-08-14T20:44:51.1800040Z total 0 2025-08-14T20:44:51.1800260Z drwxr-xr-x 3 ec2-user staff 96 Aug 14 20:44 . 2025-08-14T20:44:51.1800510Z drwxr-xr-x 8 ec2-user staff 256 Aug 14 20:44 .. 2025-08-14T20:44:51.1800810Z drwxr-xr-x 3 ec2-user staff 96 Aug 14 20:44 python3.12 2025-08-14T20:44:51.1801840Z + [[ macos-py3-arm64 == *\d\i\s\t\r\i\b\u\t\e\d* ]] 2025-08-14T20:44:51.1802150Z + USE_DISTRIBUTED=0 2025-08-14T20:44:51.1802310Z + USE_OPENMP=1 2025-08-14T20:44:51.1802500Z + MACOSX_DEPLOYMENT_TARGET=11.0 2025-08-14T20:44:51.1802670Z + WERROR=1 2025-08-14T20:44:51.1802800Z + BUILD_TEST=OFF 2025-08-14T20:44:51.1802960Z + USE_PYTORCH_METAL=1 2025-08-14T20:44:51.1803200Z + python setup.py bdist_wheel --plat-name macosx_11_0_arm64 2025-08-14T20:44:51.2990710Z Building wheel torch-2.9.0a0+git1fc683c 2025-08-14T20:44:51.7413330Z Found cmake (/Users/ec2-user/runner/_work/_temp/venv-3.12-1755204260/bin/cmake) version: 3.27.9 (>=3.27) 2025-08-14T20:44:51.8388020Z -- Building version 2.9.0a0+git1fc683c 2025-08-14T20:44:52.8371640Z 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-1755204260/lib/python3.12/site-packages -DPython_EXECUTABLE=/Users/ec2-user/runner/_work/_temp/venv-3.12-1755204260/bin/python -DPython_NumPy_INCLUDE_DIR=/Users/ec2-user/runner/_work/_temp/venv-3.12-1755204260/lib/python3.12/site-packages/numpy/core/include -DTORCH_BUILD_VERSION=2.9.0a0+git1fc683c -DUSE_DISTRIBUTED=0 -DUSE_NUMPY=True -DUSE_OPENMP=1 -DUSE_PYTORCH_METAL=1 -DWERROR=1 /Users/ec2-user/runner/_work/pytorch/pytorch 2025-08-14T20:44:53.1402890Z -- The CXX compiler identification is AppleClang 15.0.0.15000309 2025-08-14T20:44:53.2556590Z -- The C compiler identification is AppleClang 15.0.0.15000309 2025-08-14T20:44:53.3164050Z -- Detecting CXX compiler ABI info 2025-08-14T20:44:53.6244400Z -- Detecting CXX compiler ABI info - done 2025-08-14T20:44:53.6282170Z -- Check for working CXX compiler: /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.ay8w3oV9ND/clang++ - skipped 2025-08-14T20:44:53.6283840Z -- Detecting CXX compile features 2025-08-14T20:44:53.6287580Z -- Detecting CXX compile features - done 2025-08-14T20:44:53.6868600Z -- Detecting C compiler ABI info 2025-08-14T20:44:53.9549800Z -- Detecting C compiler ABI info - done 2025-08-14T20:44:53.9585540Z -- Check for working C compiler: /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.ay8w3oV9ND/clang - skipped 2025-08-14T20:44:53.9587290Z -- Detecting C compile features 2025-08-14T20:44:53.9590430Z -- Detecting C compile features - done 2025-08-14T20:44:53.9636930Z -- Not forcing any particular BLAS to be found 2025-08-14T20:44:53.9869450Z -- CLANG_VERSION_STRING: 15.0 2025-08-14T20:44:53.9943860Z -- sdk version: 14.4, mps supported: ON 2025-08-14T20:44:54.0074560Z -- MPSGraph framework found 2025-08-14T20:44:54.0098670Z -- Could not find ccache. Consider installing ccache to speed up compilation. 2025-08-14T20:44:54.0131630Z -- Performing Test C_HAS_AVX_1 2025-08-14T20:44:54.3076750Z -- Performing Test C_HAS_AVX_1 - Failed 2025-08-14T20:44:54.3077200Z -- Performing Test C_HAS_AVX_2 2025-08-14T20:44:54.4814390Z -- Performing Test C_HAS_AVX_2 - Failed 2025-08-14T20:44:54.4814750Z -- Performing Test C_HAS_AVX_3 2025-08-14T20:44:54.6280650Z -- Performing Test C_HAS_AVX_3 - Failed 2025-08-14T20:44:54.6281230Z -- Performing Test C_HAS_AVX2_1 2025-08-14T20:44:54.8020370Z -- Performing Test C_HAS_AVX2_1 - Failed 2025-08-14T20:44:54.8020630Z -- Performing Test C_HAS_AVX2_2 2025-08-14T20:44:54.9758080Z -- Performing Test C_HAS_AVX2_2 - Failed 2025-08-14T20:44:54.9758490Z -- Performing Test C_HAS_AVX2_3 2025-08-14T20:44:55.1214910Z -- Performing Test C_HAS_AVX2_3 - Failed 2025-08-14T20:44:55.1215460Z -- Performing Test C_HAS_AVX512_1 2025-08-14T20:44:55.2953770Z -- Performing Test C_HAS_AVX512_1 - Failed 2025-08-14T20:44:55.2954030Z -- Performing Test C_HAS_AVX512_2 2025-08-14T20:44:55.4698140Z -- Performing Test C_HAS_AVX512_2 - Failed 2025-08-14T20:44:55.4698460Z -- Performing Test C_HAS_AVX512_3 2025-08-14T20:44:55.6160690Z -- Performing Test C_HAS_AVX512_3 - Failed 2025-08-14T20:44:55.6161230Z -- Performing Test CXX_HAS_AVX_1 2025-08-14T20:44:55.7893120Z -- Performing Test CXX_HAS_AVX_1 - Failed 2025-08-14T20:44:55.7893410Z -- Performing Test CXX_HAS_AVX_2 2025-08-14T20:44:55.9616460Z -- Performing Test CXX_HAS_AVX_2 - Failed 2025-08-14T20:44:55.9616820Z -- Performing Test CXX_HAS_AVX_3 2025-08-14T20:44:56.1071920Z -- Performing Test CXX_HAS_AVX_3 - Failed 2025-08-14T20:44:56.1072550Z -- Performing Test CXX_HAS_AVX2_1 2025-08-14T20:44:56.2796020Z -- Performing Test CXX_HAS_AVX2_1 - Failed 2025-08-14T20:44:56.2796300Z -- Performing Test CXX_HAS_AVX2_2 2025-08-14T20:44:56.4531450Z -- Performing Test CXX_HAS_AVX2_2 - Failed 2025-08-14T20:44:56.4531800Z -- Performing Test CXX_HAS_AVX2_3 2025-08-14T20:44:56.5978990Z -- Performing Test CXX_HAS_AVX2_3 - Failed 2025-08-14T20:44:56.5979620Z -- Performing Test CXX_HAS_AVX512_1 2025-08-14T20:44:56.7708870Z -- Performing Test CXX_HAS_AVX512_1 - Failed 2025-08-14T20:44:56.7709210Z -- Performing Test CXX_HAS_AVX512_2 2025-08-14T20:44:56.9443440Z -- Performing Test CXX_HAS_AVX512_2 - Failed 2025-08-14T20:44:56.9443800Z -- Performing Test CXX_HAS_AVX512_3 2025-08-14T20:44:57.0896340Z -- Performing Test CXX_HAS_AVX512_3 - Failed 2025-08-14T20:44:57.0900960Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_VISIBILITY 2025-08-14T20:44:57.3024700Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_VISIBILITY - Success 2025-08-14T20:44:57.3028760Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_INLINE_VISIBILITY 2025-08-14T20:44:57.5181570Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_INLINE_VISIBILITY - Success 2025-08-14T20:44:57.5185740Z -- Performing Test COMPILER_SUPPORTS_RDYNAMIC 2025-08-14T20:44:57.7350940Z -- Performing Test COMPILER_SUPPORTS_RDYNAMIC - Success 2025-08-14T20:44:57.7375510Z -- No OMAP3 processor on this machine. 2025-08-14T20:44:57.7375770Z -- No OMAP4 processor on this machine. 2025-08-14T20:44:57.7376050Z -- Compiler does not support SVE extension. Will not build perfkernels. 2025-08-14T20:44:57.7405820Z CMake Warning at CMakeLists.txt:840 (message): 2025-08-14T20:44:57.7406150Z x64 operating system is required for FBGEMM. Not compiling with FBGEMM. 2025-08-14T20:44:57.7406440Z Turn this warning off by USE_FBGEMM=OFF. 2025-08-14T20:44:57.7406590Z 2025-08-14T20:44:57.7406590Z 2025-08-14T20:44:57.7505420Z CUDA_TOOLKIT_ROOT_DIR not found or specified 2025-08-14T20:44:59.0080240Z -- Could NOT find CUDA (missing: CUDA_TOOLKIT_ROOT_DIR CUDA_NVCC_EXECUTABLE CUDA_INCLUDE_DIRS CUDA_CUDART_LIBRARY) 2025-08-14T20:44:59.0091220Z CMake Warning at cmake/public/cuda.cmake:31 (message): 2025-08-14T20:44:59.0091560Z PyTorch: CUDA cannot be found. Depending on whether you are building 2025-08-14T20:44:59.0092250Z PyTorch or a PyTorch dependent library, the next warning / error will give 2025-08-14T20:44:59.0092530Z you more info. 2025-08-14T20:44:59.0092680Z Call Stack (most recent call first): 2025-08-14T20:44:59.0092880Z cmake/Dependencies.cmake:44 (include) 2025-08-14T20:44:59.0093070Z CMakeLists.txt:868 (include) 2025-08-14T20:44:59.0093200Z 2025-08-14T20:44:59.0093200Z 2025-08-14T20:44:59.0093290Z CMake Warning at cmake/Dependencies.cmake:76 (message): 2025-08-14T20:44:59.0093580Z Not compiling with CUDA. Suppress this warning with -DUSE_CUDA=OFF. 2025-08-14T20:44:59.0093860Z Call Stack (most recent call first): 2025-08-14T20:44:59.0094040Z CMakeLists.txt:868 (include) 2025-08-14T20:44:59.0094150Z 2025-08-14T20:44:59.0094150Z 2025-08-14T20:44:59.0118210Z CMake Warning at cmake/Dependencies.cmake:95 (message): 2025-08-14T20:44:59.0130590Z Not compiling with XPU. Could NOT find SYCL. Suppress this warning with 2025-08-14T20:44:59.0130870Z -DUSE_XPU=OFF. 2025-08-14T20:44:59.0131020Z Call Stack (most recent call first): 2025-08-14T20:44:59.0131350Z CMakeLists.txt:868 (include) 2025-08-14T20:44:59.0131460Z 2025-08-14T20:44:59.0131470Z 2025-08-14T20:44:59.0131590Z -- Building using own protobuf under third_party per request. 2025-08-14T20:44:59.0131830Z -- Use custom protobuf build. 2025-08-14T20:44:59.0142150Z CMake Deprecation Warning at third_party/protobuf/cmake/CMakeLists.txt:2 (cmake_minimum_required): 2025-08-14T20:44:59.0142580Z Compatibility with CMake < 3.5 will be removed from a future version of 2025-08-14T20:44:59.0142820Z CMake. 2025-08-14T20:44:59.0142890Z 2025-08-14T20:44:59.0143030Z Update the VERSION argument value or use a ... suffix to tell 2025-08-14T20:44:59.0143380Z CMake that the project does not need compatibility with older versions. 2025-08-14T20:44:59.0143600Z 2025-08-14T20:44:59.0143600Z 2025-08-14T20:44:59.0159510Z -- 2025-08-14T20:44:59.0159800Z -- 3.13.0.0 2025-08-14T20:44:59.0164900Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD 2025-08-14T20:44:59.2669170Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success 2025-08-14T20:44:59.2675480Z -- Found Threads: TRUE 2025-08-14T20:44:59.2677700Z -- Performing Test protobuf_HAVE_BUILTIN_ATOMICS 2025-08-14T20:44:59.6304060Z -- Performing Test protobuf_HAVE_BUILTIN_ATOMICS - Success 2025-08-14T20:44:59.6566690Z -- Caffe2 protobuf include directory: $$ 2025-08-14T20:44:59.6577680Z -- Trying to find preferred BLAS backend of choice: MKL 2025-08-14T20:44:59.6604740Z CMake Warning at cmake/Dependencies.cmake:212 (message): 2025-08-14T20:44:59.6605010Z MKL could not be found. Defaulting to Eigen 2025-08-14T20:44:59.6605280Z Call Stack (most recent call first): 2025-08-14T20:44:59.6605480Z CMakeLists.txt:868 (include) 2025-08-14T20:44:59.6605610Z 2025-08-14T20:44:59.6605610Z 2025-08-14T20:44:59.6605730Z CMake Warning at cmake/Dependencies.cmake:269 (message): 2025-08-14T20:44:59.6606060Z Preferred BLAS (MKL) cannot be found, now searching for a general BLAS 2025-08-14T20:44:59.6606320Z library 2025-08-14T20:44:59.6606470Z Call Stack (most recent call first): 2025-08-14T20:44:59.6606650Z CMakeLists.txt:868 (include) 2025-08-14T20:44:59.6606770Z 2025-08-14T20:44:59.6606780Z 2025-08-14T20:44:59.6619770Z -- Checking for [blis] 2025-08-14T20:44:59.6626950Z -- Library blis: BLAS_blis_LIBRARY-NOTFOUND 2025-08-14T20:44:59.6627170Z -- Checking for [Accelerate] 2025-08-14T20:44:59.6633580Z -- Library Accelerate: /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks/Accelerate.framework 2025-08-14T20:44:59.6634040Z -- Looking for sgemm_ 2025-08-14T20:44:59.8931140Z -- Looking for sgemm_ - found 2025-08-14T20:44:59.8935420Z -- Performing Test BLAS_F2C_DOUBLE_WORKS 2025-08-14T20:45:00.2022610Z -- Performing Test BLAS_F2C_DOUBLE_WORKS - Success 2025-08-14T20:45:00.2023230Z -- Performing Test BLAS_F2C_FLOAT_WORKS 2025-08-14T20:45:00.5419720Z -- Performing Test BLAS_F2C_FLOAT_WORKS - Failed 2025-08-14T20:45:00.5420620Z -- This BLAS uses the F2C return conventions 2025-08-14T20:45:00.5421000Z -- Performing Test BLAS_USE_CBLAS_DOT 2025-08-14T20:45:00.8542030Z -- Performing Test BLAS_USE_CBLAS_DOT - Success 2025-08-14T20:45:00.8542450Z -- BLAS_USE_CBLAS_DOT: TRUE 2025-08-14T20:45:00.8542700Z -- BLAS_F2C: TRUE 2025-08-14T20:45:00.8543440Z -- Found a library with BLAS API (accelerate). Full path: (/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks/Accelerate.framework) 2025-08-14T20:45:00.8545910Z -- Looking for sbgemm_ 2025-08-14T20:45:01.0905470Z -- Looking for sbgemm_ - not found 2025-08-14T20:45:01.0905960Z -- Using pocketfft in directory: /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/pocketfft/ 2025-08-14T20:45:01.1564170Z -- The ASM compiler identification is AppleClang 2025-08-14T20:45:01.1580230Z -- Found assembler: /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.ay8w3oV9ND/clang 2025-08-14T20:45:01.2185740Z CMake Deprecation Warning at third_party/psimd/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-08-14T20:45:01.2186440Z Compatibility with CMake < 3.5 will be removed from a future version of 2025-08-14T20:45:01.2186700Z CMake. 2025-08-14T20:45:01.2186770Z 2025-08-14T20:45:01.2186900Z Update the VERSION argument value or use a ... suffix to tell 2025-08-14T20:45:01.2187250Z CMake that the project does not need compatibility with older versions. 2025-08-14T20:45:01.2187450Z 2025-08-14T20:45:01.2187450Z 2025-08-14T20:45:01.2208900Z CMake Deprecation Warning at third_party/FP16/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-08-14T20:45:01.2209380Z Compatibility with CMake < 3.5 will be removed from a future version of 2025-08-14T20:45:01.2209650Z CMake. 2025-08-14T20:45:01.2209730Z 2025-08-14T20:45:01.2209860Z Update the VERSION argument value or use a ... suffix to tell 2025-08-14T20:45:01.2210220Z CMake that the project does not need compatibility with older versions. 2025-08-14T20:45:01.2210430Z 2025-08-14T20:45:01.2210430Z 2025-08-14T20:45:01.2231540Z -- Brace yourself, we are building NNPACK 2025-08-14T20:45:01.2264690Z CMake Deprecation Warning at third_party/NNPACK/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-08-14T20:45:01.2265090Z Compatibility with CMake < 3.5 will be removed from a future version of 2025-08-14T20:45:01.2265340Z CMake. 2025-08-14T20:45:01.2265400Z 2025-08-14T20:45:01.2265530Z Update the VERSION argument value or use a ... suffix to tell 2025-08-14T20:45:01.2265860Z CMake that the project does not need compatibility with older versions. 2025-08-14T20:45:01.2266050Z 2025-08-14T20:45:01.2266060Z 2025-08-14T20:45:01.2818630Z -- NNPACK backend is neon 2025-08-14T20:45:01.3537140Z -- Building for XNNPACK_TARGET_PROCESSOR: arm64 2025-08-14T20:45:01.3549240Z -- Generating microkernels.cmake 2025-08-14T20:45:09.4630630Z 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-08-14T20:45:09.4631620Z 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-08-14T20:45:09.4632200Z No microkernel found in src/reference/unary-elementwise.cc 2025-08-14T20:45:09.4632450Z No microkernel found in src/reference/packing.cc 2025-08-14T20:45:09.4632700Z No microkernel found in src/reference/binary-elementwise.cc 2025-08-14T20:45:09.5305650Z -- Using third party subdirectory Eigen. 2025-08-14T20:45:09.7808440Z -- Found Python: /Users/ec2-user/runner/_work/_temp/venv-3.12-1755204260/bin/python (found version "3.12.11") found components: Interpreter Development.Module NumPy 2025-08-14T20:45:09.7808960Z -- Using third_party/pybind11. 2025-08-14T20:45:09.7809420Z -- pybind11 include dirs: /Users/ec2-user/runner/_work/pytorch/pytorch/cmake/../third_party/pybind11/include 2025-08-14T20:45:09.8548020Z -- Could NOT find OpenTelemetryApi (missing: OpenTelemetryApi_INCLUDE_DIRS) 2025-08-14T20:45:09.8548690Z -- Using third_party/opentelemetry-cpp. 2025-08-14T20:45:09.8549140Z -- opentelemetry api include dirs: /Users/ec2-user/runner/_work/pytorch/pytorch/cmake/../third_party/opentelemetry-cpp/api/include 2025-08-14T20:45:09.8615360Z -- Check OMP with lib /opt/homebrew/opt/libomp/lib/libomp.dylib and flags -Xpreprocessor -fopenmp -v 2025-08-14T20:45:10.0164190Z CMake Warning at cmake/Modules/FindOpenMP.cmake:335 (message): 2025-08-14T20:45:10.0164600Z Detecting C OpenMP compiler ABI info compiled with the following output: 2025-08-14T20:45:10.0164820Z 2025-08-14T20:45:10.0164860Z Change Dir: 2025-08-14T20:45:10.0165090Z '/Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/CMakeTmp' 2025-08-14T20:45:10.0165300Z 2025-08-14T20:45:10.0165300Z 2025-08-14T20:45:10.0165310Z 2025-08-14T20:45:10.0165360Z Run Build Command(s): 2025-08-14T20:45:10.0165590Z /Users/ec2-user/runner/_work/_temp/venv-3.12-1755204260/bin/ninja -v 2025-08-14T20:45:10.0165990Z cmTC_4aae2 2025-08-14T20:45:10.0166070Z 2025-08-14T20:45:10.0166230Z [1/2] /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.ay8w3oV9ND/clang 2025-08-14T20:45:10.0166580Z -Xpreprocessor -fopenmp -v -std=gnu11 -arch arm64 -isysroot 2025-08-14T20:45:10.0166880Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk 2025-08-14T20:45:10.0167090Z -mmacosx-version-min=11.0 -MD -MT 2025-08-14T20:45:10.0167290Z CMakeFiles/cmTC_4aae2.dir/OpenMPTryFlag.c.o -MF 2025-08-14T20:45:10.0167520Z CMakeFiles/cmTC_4aae2.dir/OpenMPTryFlag.c.o.d -o 2025-08-14T20:45:10.0167740Z CMakeFiles/cmTC_4aae2.dir/OpenMPTryFlag.c.o -c 2025-08-14T20:45:10.0168100Z /Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/FindOpenMP/OpenMPTryFlag.c 2025-08-14T20:45:10.0168350Z 2025-08-14T20:45:10.0168350Z 2025-08-14T20:45:10.0168440Z FAILED: CMakeFiles/cmTC_4aae2.dir/OpenMPTryFlag.c.o 2025-08-14T20:45:10.0168590Z 2025-08-14T20:45:10.0168730Z /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.ay8w3oV9ND/clang 2025-08-14T20:45:10.0169060Z -Xpreprocessor -fopenmp -v -std=gnu11 -arch arm64 -isysroot 2025-08-14T20:45:10.0169320Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk 2025-08-14T20:45:10.0169520Z -mmacosx-version-min=11.0 -MD -MT 2025-08-14T20:45:10.0169710Z CMakeFiles/cmTC_4aae2.dir/OpenMPTryFlag.c.o -MF 2025-08-14T20:45:10.0169930Z CMakeFiles/cmTC_4aae2.dir/OpenMPTryFlag.c.o.d -o 2025-08-14T20:45:10.0170150Z CMakeFiles/cmTC_4aae2.dir/OpenMPTryFlag.c.o -c 2025-08-14T20:45:10.0170460Z /Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/FindOpenMP/OpenMPTryFlag.c 2025-08-14T20:45:10.0170700Z 2025-08-14T20:45:10.0170700Z 2025-08-14T20:45:10.0170770Z Apple clang version 15.0.0 (clang-1500.3.9.4) 2025-08-14T20:45:10.0170910Z 2025-08-14T20:45:10.0170970Z Target: arm64-apple-darwin23.4.0 2025-08-14T20:45:10.0171080Z 2025-08-14T20:45:10.0171120Z Thread model: posix 2025-08-14T20:45:10.0171210Z 2025-08-14T20:45:10.0171310Z InstalledDir: /Library/Developer/CommandLineTools/usr/bin 2025-08-14T20:45:10.0171480Z 2025-08-14T20:45:10.0179280Z "/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_4aae2.dir/OpenMPTryFlag.c.o.d -skip-unused-modulemap-deps -MT CMakeFiles/cmTC_4aae2.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-08-14T20:45:10.0187250Z 2025-08-14T20:45:10.0187360Z clang -cc1 version 15.0.0 (clang-1500.3.9.4) default target 2025-08-14T20:45:10.0187590Z arm64-apple-darwin23.4.0 2025-08-14T20:45:10.0187700Z 2025-08-14T20:45:10.0187790Z ignoring nonexistent directory "/usr/local/include" 2025-08-14T20:45:10.0187940Z 2025-08-14T20:45:10.0188000Z ignoring nonexistent directory 2025-08-14T20:45:10.0188250Z "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/local/include" 2025-08-14T20:45:10.0188460Z 2025-08-14T20:45:10.0188510Z ignoring nonexistent directory 2025-08-14T20:45:10.0188760Z "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/Library/Frameworks" 2025-08-14T20:45:10.0188980Z 2025-08-14T20:45:10.0189030Z #include "..." search starts here: 2025-08-14T20:45:10.0189150Z 2025-08-14T20:45:10.0189200Z #include <...> search starts here: 2025-08-14T20:45:10.0189310Z 2025-08-14T20:45:10.0189440Z /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include 2025-08-14T20:45:10.0189750Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include 2025-08-14T20:45:10.0190020Z /Library/Developer/CommandLineTools/usr/include 2025-08-14T20:45:10.0190390Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks (framework directory) 2025-08-14T20:45:10.0190670Z 2025-08-14T20:45:10.0190720Z End of search list. 2025-08-14T20:45:10.0190810Z 2025-08-14T20:45:10.0190810Z 2025-08-14T20:45:10.0191010Z /Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/FindOpenMP/OpenMPTryFlag.c:2:10: 2025-08-14T20:45:10.0191340Z fatal error: 'omp.h' file not found 2025-08-14T20:45:10.0191460Z 2025-08-14T20:45:10.0191510Z #include 2025-08-14T20:45:10.0191590Z 2025-08-14T20:45:10.0191630Z ^~~~~~~ 2025-08-14T20:45:10.0191700Z 2025-08-14T20:45:10.0191740Z 1 error generated. 2025-08-14T20:45:10.0191830Z 2025-08-14T20:45:10.0191890Z ninja: build stopped: subcommand failed. 2025-08-14T20:45:10.0192020Z 2025-08-14T20:45:10.0192020Z 2025-08-14T20:45:10.0192020Z 2025-08-14T20:45:10.0192090Z Call Stack (most recent call first): 2025-08-14T20:45:10.0192410Z cmake/Modules/FindOpenMP.cmake:551 (_OPENMP_GET_FLAGS) 2025-08-14T20:45:10.0192650Z cmake/Dependencies.cmake:891 (include) 2025-08-14T20:45:10.0192830Z CMakeLists.txt:868 (include) 2025-08-14T20:45:10.0192930Z 2025-08-14T20:45:10.0192940Z 2025-08-14T20:45:10.3288930Z -- Check OMP with lib /opt/homebrew/opt/libomp/lib/libomp.dylib and flags -Xpreprocessor -fopenmp -I/opt/homebrew/opt/libomp/include -v 2025-08-14T20:45:10.5966150Z -- Check OMP with lib /opt/homebrew/opt/libomp/lib/libomp.dylib and flags -Xpreprocessor -fopenmp -v 2025-08-14T20:45:10.7503060Z CMake Warning at cmake/Modules/FindOpenMP.cmake:335 (message): 2025-08-14T20:45:10.7503470Z Detecting CXX OpenMP compiler ABI info compiled with the following output: 2025-08-14T20:45:10.7503700Z 2025-08-14T20:45:10.7503750Z Change Dir: 2025-08-14T20:45:10.7503980Z '/Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/CMakeTmp' 2025-08-14T20:45:10.7504400Z 2025-08-14T20:45:10.7504410Z 2025-08-14T20:45:10.7504420Z 2025-08-14T20:45:10.7504470Z Run Build Command(s): 2025-08-14T20:45:10.7504740Z /Users/ec2-user/runner/_work/_temp/venv-3.12-1755204260/bin/ninja -v 2025-08-14T20:45:10.7505000Z cmTC_fb02d 2025-08-14T20:45:10.7505070Z 2025-08-14T20:45:10.7505110Z [1/2] 2025-08-14T20:45:10.7505340Z /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.ay8w3oV9ND/clang++ 2025-08-14T20:45:10.7505720Z -fvisibility-inlines-hidden -DUSE_PTHREADPOOL -Xpreprocessor -fopenmp -v 2025-08-14T20:45:10.7506010Z -std=gnu++17 -arch arm64 -isysroot 2025-08-14T20:45:10.7506220Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk 2025-08-14T20:45:10.7506440Z -mmacosx-version-min=11.0 -MD -MT 2025-08-14T20:45:10.7506660Z CMakeFiles/cmTC_fb02d.dir/OpenMPTryFlag.cpp.o -MF 2025-08-14T20:45:10.7506910Z CMakeFiles/cmTC_fb02d.dir/OpenMPTryFlag.cpp.o.d -o 2025-08-14T20:45:10.7507150Z CMakeFiles/cmTC_fb02d.dir/OpenMPTryFlag.cpp.o -c 2025-08-14T20:45:10.7507520Z /Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/FindOpenMP/OpenMPTryFlag.cpp 2025-08-14T20:45:10.7507790Z 2025-08-14T20:45:10.7507790Z 2025-08-14T20:45:10.7507890Z FAILED: CMakeFiles/cmTC_fb02d.dir/OpenMPTryFlag.cpp.o 2025-08-14T20:45:10.7508050Z 2025-08-14T20:45:10.7508200Z /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.ay8w3oV9ND/clang++ 2025-08-14T20:45:10.7508570Z -fvisibility-inlines-hidden -DUSE_PTHREADPOOL -Xpreprocessor -fopenmp -v 2025-08-14T20:45:10.7508850Z -std=gnu++17 -arch arm64 -isysroot 2025-08-14T20:45:10.7509060Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk 2025-08-14T20:45:10.7509280Z -mmacosx-version-min=11.0 -MD -MT 2025-08-14T20:45:10.7509490Z CMakeFiles/cmTC_fb02d.dir/OpenMPTryFlag.cpp.o -MF 2025-08-14T20:45:10.7509740Z CMakeFiles/cmTC_fb02d.dir/OpenMPTryFlag.cpp.o.d -o 2025-08-14T20:45:10.7509970Z CMakeFiles/cmTC_fb02d.dir/OpenMPTryFlag.cpp.o -c 2025-08-14T20:45:10.7510320Z /Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/FindOpenMP/OpenMPTryFlag.cpp 2025-08-14T20:45:10.7510580Z 2025-08-14T20:45:10.7510590Z 2025-08-14T20:45:10.7510660Z Apple clang version 15.0.0 (clang-1500.3.9.4) 2025-08-14T20:45:10.7510800Z 2025-08-14T20:45:10.7510850Z Target: arm64-apple-darwin23.4.0 2025-08-14T20:45:10.7510970Z 2025-08-14T20:45:10.7511010Z Thread model: posix 2025-08-14T20:45:10.7511100Z 2025-08-14T20:45:10.7511200Z InstalledDir: /Library/Developer/CommandLineTools/usr/bin 2025-08-14T20:45:10.7511370Z 2025-08-14T20:45:10.7520050Z "/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_fb02d.dir/OpenMPTryFlag.cpp.o.d -skip-unused-modulemap-deps -MT CMakeFiles/cmTC_fb02d.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-08-14T20:45:10.7528560Z 2025-08-14T20:45:10.7528660Z clang -cc1 version 15.0.0 (clang-1500.3.9.4) default target 2025-08-14T20:45:10.7528890Z arm64-apple-darwin23.4.0 2025-08-14T20:45:10.7529000Z 2025-08-14T20:45:10.7529090Z ignoring nonexistent directory "/usr/local/include" 2025-08-14T20:45:10.7529240Z 2025-08-14T20:45:10.7529290Z ignoring nonexistent directory 2025-08-14T20:45:10.7529560Z "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/local/include" 2025-08-14T20:45:10.7529770Z 2025-08-14T20:45:10.7529830Z ignoring nonexistent directory 2025-08-14T20:45:10.7530080Z "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/Library/Frameworks" 2025-08-14T20:45:10.7530290Z 2025-08-14T20:45:10.7530350Z #include "..." search starts here: 2025-08-14T20:45:10.7530470Z 2025-08-14T20:45:10.7530520Z #include <...> search starts here: 2025-08-14T20:45:10.7530630Z 2025-08-14T20:45:10.7530770Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1 2025-08-14T20:45:10.7531100Z /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include 2025-08-14T20:45:10.7531420Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include 2025-08-14T20:45:10.7531690Z /Library/Developer/CommandLineTools/usr/include 2025-08-14T20:45:10.7532050Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks (framework directory) 2025-08-14T20:45:10.7532340Z 2025-08-14T20:45:10.7532390Z End of search list. 2025-08-14T20:45:10.7532640Z 2025-08-14T20:45:10.7532640Z 2025-08-14T20:45:10.7532860Z /Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/FindOpenMP/OpenMPTryFlag.cpp:2:10: 2025-08-14T20:45:10.7533210Z fatal error: 'omp.h' file not found 2025-08-14T20:45:10.7533330Z 2025-08-14T20:45:10.7533370Z #include 2025-08-14T20:45:10.7533450Z 2025-08-14T20:45:10.7533490Z ^~~~~~~ 2025-08-14T20:45:10.7533560Z 2025-08-14T20:45:10.7533610Z 1 error generated. 2025-08-14T20:45:10.7533690Z 2025-08-14T20:45:10.7533760Z ninja: build stopped: subcommand failed. 2025-08-14T20:45:10.7533890Z 2025-08-14T20:45:10.7533890Z 2025-08-14T20:45:10.7533890Z 2025-08-14T20:45:10.7533950Z Call Stack (most recent call first): 2025-08-14T20:45:10.7534160Z cmake/Modules/FindOpenMP.cmake:551 (_OPENMP_GET_FLAGS) 2025-08-14T20:45:10.7534390Z cmake/Dependencies.cmake:891 (include) 2025-08-14T20:45:10.7534560Z CMakeLists.txt:868 (include) 2025-08-14T20:45:10.7534740Z 2025-08-14T20:45:10.7534740Z 2025-08-14T20:45:11.0549230Z -- Check OMP with lib /opt/homebrew/opt/libomp/lib/libomp.dylib and flags -Xpreprocessor -fopenmp -I/opt/homebrew/opt/libomp/include -v 2025-08-14T20:45:11.5008090Z -- Found OpenMP_C: -Xpreprocessor -fopenmp -I/opt/homebrew/opt/libomp/include 2025-08-14T20:45:11.7830370Z -- Found OpenMP_CXX: -Xpreprocessor -fopenmp -I/opt/homebrew/opt/libomp/include 2025-08-14T20:45:11.7831700Z -- Found OpenMP: TRUE 2025-08-14T20:45:11.7832630Z -- Adding OpenMP CXX_FLAGS: -Xpreprocessor -fopenmp -I/opt/homebrew/opt/libomp/include 2025-08-14T20:45:11.7833060Z -- Will link against OpenMP libraries: /opt/homebrew/opt/libomp/lib/libomp.dylib 2025-08-14T20:45:11.7834300Z -- Found nvtx3: /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/NVTX/c/include 2025-08-14T20:45:11.9018010Z -- Found Python3: /Users/ec2-user/runner/_work/_temp/venv-3.12-1755204260/bin/python (found version "3.12.11") found components: Interpreter 2025-08-14T20:45:11.9021410Z -- ONNX_PROTOC_EXECUTABLE: $ 2025-08-14T20:45:11.9021670Z -- Protobuf_VERSION: Protobuf_VERSION_NOTFOUND 2025-08-14T20:45:11.9023090Z Generated: /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_onnx_torch-ml.proto 2025-08-14T20:45:11.9024810Z Generated: /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch-ml.proto 2025-08-14T20:45:11.9026220Z Generated: /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-data_onnx_torch.proto 2025-08-14T20:45:12.4737160Z -- 2025-08-14T20:45:12.4737310Z -- ******** Summary ******** 2025-08-14T20:45:12.4738150Z -- CMake version : 3.27.9 2025-08-14T20:45:12.4738580Z -- CMake command : /Users/ec2-user/runner/_work/_temp/venv-3.12-1755204260/lib/python3.12/site-packages/cmake/data/bin/cmake 2025-08-14T20:45:12.4738980Z -- System : Darwin 2025-08-14T20:45:12.4739340Z -- C++ compiler : /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.ay8w3oV9ND/clang++ 2025-08-14T20:45:12.4739690Z -- C++ compiler version : 15.0.0.15000309 2025-08-14T20:45:12.4740010Z -- CXX flags : -fvisibility-inlines-hidden -DUSE_PTHREADPOOL -Wnon-virtual-dtor 2025-08-14T20:45:12.4740310Z -- Build type : Release 2025-08-14T20:45:12.4740560Z CMake Warning at cmake/Dependencies.cmake:1408 (message): 2025-08-14T20:45:12.4740860Z Not compiling with MAGMA. Suppress this warning with -DUSE_MAGMA=OFF. 2025-08-14T20:45:12.4741120Z Call Stack (most recent call first): 2025-08-14T20:45:12.4741300Z CMakeLists.txt:868 (include) 2025-08-14T20:45:12.4741410Z 2025-08-14T20:45:12.4741420Z 2025-08-14T20:45:12.4741540Z -- Compile definitions : ONNX_ML=1;ONNXIFI_ENABLE_EXT=1 2025-08-14T20:45:12.4741950Z -- CMAKE_PREFIX_PATH : /Users/ec2-user/runner/_work/_temp/venv-3.12-1755204260/lib/python3.12/site-packages 2025-08-14T20:45:12.4742670Z -- CMAKE_INSTALL_PREFIX : /Users/ec2-user/runner/_work/pytorch/pytorch/torch 2025-08-14T20:45:12.4743280Z -- 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-08-14T20:45:12.4743740Z -- 2025-08-14T20:45:12.4743860Z -- ONNX version : 1.18.0 2025-08-14T20:45:12.4744080Z -- ONNX NAMESPACE : onnx_torch 2025-08-14T20:45:12.4744290Z -- ONNX_USE_LITE_PROTO : OFF 2025-08-14T20:45:12.4744490Z -- USE_PROTOBUF_SHARED_LIBS : OFF 2025-08-14T20:45:12.4744690Z -- ONNX_DISABLE_EXCEPTIONS : OFF 2025-08-14T20:45:12.4744890Z -- ONNX_DISABLE_STATIC_REGISTRATION : OFF 2025-08-14T20:45:12.4745090Z -- ONNX_WERROR : OFF 2025-08-14T20:45:12.4745280Z -- ONNX_BUILD_TESTS : OFF 2025-08-14T20:45:12.4745460Z -- BUILD_SHARED_LIBS : OFF 2025-08-14T20:45:12.4745750Z -- 2025-08-14T20:45:12.4745960Z -- Protobuf compiler : $ 2025-08-14T20:45:12.4746210Z -- Protobuf includes : 2025-08-14T20:45:12.4746390Z -- Protobuf libraries : 2025-08-14T20:45:12.4746570Z -- ONNX_BUILD_PYTHON : OFF 2025-08-14T20:45:12.4746830Z -- Found CUDA with FP16 support, compiling with torch.cuda.HalfTensor 2025-08-14T20:45:12.4747090Z -- Adding -DNDEBUG to compile flags 2025-08-14T20:45:12.4760490Z -- No OMAP3 processor on this machine. 2025-08-14T20:45:12.4760720Z -- No OMAP4 processor on this machine. 2025-08-14T20:45:12.4760930Z -- Neon found with compiler flag : -D__NEON__ 2025-08-14T20:45:12.4776490Z -- Looking for cheev_ 2025-08-14T20:45:12.7041390Z -- Looking for cheev_ - found 2025-08-14T20:45:12.7041650Z -- Found a library with LAPACK API (accelerate). 2025-08-14T20:45:12.7042150Z disabling CUDA because NOT USE_CUDA is set 2025-08-14T20:45:12.7042520Z disabling ROCM because NOT USE_ROCM is set 2025-08-14T20:45:12.7042770Z -- MIOpen not found. Compiling without MIOpen support 2025-08-14T20:45:12.7043010Z disabling MKLDNN because USE_MKLDNN is not set 2025-08-14T20:45:12.7676250Z -- Looking for mmap 2025-08-14T20:45:12.9840850Z -- Looking for mmap - found 2025-08-14T20:45:12.9841050Z -- Looking for shm_open 2025-08-14T20:45:13.2014530Z -- Looking for shm_open - found 2025-08-14T20:45:13.2014750Z -- Looking for shm_unlink 2025-08-14T20:45:13.4318790Z -- Looking for shm_unlink - found 2025-08-14T20:45:13.4319030Z -- Looking for malloc_usable_size 2025-08-14T20:45:13.6550010Z -- Looking for malloc_usable_size - not found 2025-08-14T20:45:13.6630220Z -- {fmt} version: 11.2.0 2025-08-14T20:45:13.6630400Z -- Build type: Release 2025-08-14T20:45:13.6642470Z -- Performing Test HAS_NULLPTR_WARNING 2025-08-14T20:45:13.9047290Z -- Performing Test HAS_NULLPTR_WARNING - Success 2025-08-14T20:45:13.9110350Z -- Using CPU-only version of Kineto 2025-08-14T20:45:13.9110600Z -- Configuring Kineto dependency: 2025-08-14T20:45:13.9112490Z -- KINETO_SOURCE_DIR = /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/kineto/libkineto 2025-08-14T20:45:13.9112820Z -- KINETO_BUILD_TESTS = OFF 2025-08-14T20:45:13.9117990Z -- KINETO_LIBRARY_TYPE = static 2025-08-14T20:45:13.9134950Z CMake Warning (dev) at third_party/kineto/libkineto/CMakeLists.txt:15 (find_package): 2025-08-14T20:45:13.9135340Z Policy CMP0148 is not set: The FindPythonInterp and FindPythonLibs modules 2025-08-14T20:45:13.9135690Z are removed. Run "cmake --help-policy CMP0148" for policy details. Use 2025-08-14T20:45:13.9136030Z the cmake_policy command to set the policy and suppress this warning. 2025-08-14T20:45:13.9136230Z 2025-08-14T20:45:13.9136370Z This warning is for project developers. Use -Wno-dev to suppress it. 2025-08-14T20:45:13.9136570Z 2025-08-14T20:45:13.9318680Z -- Found PythonInterp: /Users/ec2-user/runner/_work/_temp/venv-3.12-1755204260/bin/python (found version "3.12.11") 2025-08-14T20:45:13.9320150Z -- CUDA_SOURCE_DIR = 2025-08-14T20:45:13.9320300Z -- ROCM_SOURCE_DIR = 2025-08-14T20:45:13.9497730Z -- CUPTI unavailable or disabled - not building GPU profilers 2025-08-14T20:45:13.9838570Z -- Kineto: FMT_SOURCE_DIR = /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/fmt 2025-08-14T20:45:13.9839050Z -- Kineto: FMT_INCLUDE_DIR = /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/fmt/include 2025-08-14T20:45:13.9839390Z -- CUPTI_INCLUDE_DIR = /extras/CUPTI/include 2025-08-14T20:45:13.9839600Z -- ROCTRACER_INCLUDE_DIR = /include/roctracer 2025-08-14T20:45:13.9840000Z -- DYNOLOG_INCLUDE_DIR = /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/ 2025-08-14T20:45:13.9840650Z -- IPCFABRIC_INCLUDE_DIR = /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog//dynolog/src/ipcfabric/ 2025-08-14T20:45:13.9853600Z -- Configured Kineto (CPU) 2025-08-14T20:45:13.9865860Z -- Running on macOS with Apple silicon 2025-08-14T20:45:13.9882160Z -- Performing Test HAS_WERROR_RETURN_TYPE 2025-08-14T20:45:14.2058710Z -- Performing Test HAS_WERROR_RETURN_TYPE - Success 2025-08-14T20:45:14.2063210Z -- Performing Test HAS_WERROR_NON_VIRTUAL_DTOR 2025-08-14T20:45:14.4236100Z -- Performing Test HAS_WERROR_NON_VIRTUAL_DTOR - Success 2025-08-14T20:45:14.4240740Z -- Performing Test HAS_WERROR_BRACED_SCALAR_INIT 2025-08-14T20:45:14.6397470Z -- Performing Test HAS_WERROR_BRACED_SCALAR_INIT - Success 2025-08-14T20:45:14.6402120Z -- Performing Test HAS_WERROR_RANGE_LOOP_CONSTRUCT 2025-08-14T20:45:14.8884940Z -- Performing Test HAS_WERROR_RANGE_LOOP_CONSTRUCT - Success 2025-08-14T20:45:14.8889590Z -- Performing Test HAS_WERROR_BOOL_OPERATION 2025-08-14T20:45:15.1203300Z -- Performing Test HAS_WERROR_BOOL_OPERATION - Success 2025-08-14T20:45:15.1207990Z -- Performing Test HAS_WNARROWING 2025-08-14T20:45:15.3363060Z -- Performing Test HAS_WNARROWING - Success 2025-08-14T20:45:15.3367510Z -- Performing Test HAS_WNO_MISSING_FIELD_INITIALIZERS 2025-08-14T20:45:15.5675240Z -- Performing Test HAS_WNO_MISSING_FIELD_INITIALIZERS - Success 2025-08-14T20:45:15.5679810Z -- Performing Test HAS_WNO_UNKNOWN_PRAGMAS 2025-08-14T20:45:15.7845710Z -- Performing Test HAS_WNO_UNKNOWN_PRAGMAS - Success 2025-08-14T20:45:15.7850250Z -- Performing Test HAS_WNO_UNUSED_PARAMETER 2025-08-14T20:45:16.0144400Z -- Performing Test HAS_WNO_UNUSED_PARAMETER - Success 2025-08-14T20:45:16.0149000Z -- Performing Test HAS_WNO_STRICT_OVERFLOW 2025-08-14T20:45:16.2512750Z -- Performing Test HAS_WNO_STRICT_OVERFLOW - Success 2025-08-14T20:45:16.2517410Z -- Performing Test HAS_WNO_STRICT_ALIASING 2025-08-14T20:45:16.4669760Z -- Performing Test HAS_WNO_STRICT_ALIASING - Success 2025-08-14T20:45:16.4674370Z -- Performing Test HAS_WNO_STRINGOP_OVERFLOW 2025-08-14T20:45:16.6817270Z -- Performing Test HAS_WNO_STRINGOP_OVERFLOW - Failed 2025-08-14T20:45:16.6821760Z -- Performing Test HAS_WVLA_EXTENSION 2025-08-14T20:45:16.9095030Z -- Performing Test HAS_WVLA_EXTENSION - Success 2025-08-14T20:45:16.9099550Z -- Performing Test HAS_WSUGGEST_OVERRIDE 2025-08-14T20:45:17.1239020Z -- Performing Test HAS_WSUGGEST_OVERRIDE - Success 2025-08-14T20:45:17.1243460Z -- Performing Test HAS_WNEWLINE_EOF 2025-08-14T20:45:17.3457140Z -- Performing Test HAS_WNEWLINE_EOF - Success 2025-08-14T20:45:17.3461700Z -- Performing Test HAS_WINCONSISTENT_MISSING_OVERRIDE 2025-08-14T20:45:17.5654130Z -- Performing Test HAS_WINCONSISTENT_MISSING_OVERRIDE - Success 2025-08-14T20:45:17.5658750Z -- Performing Test HAS_WINCONSISTENT_MISSING_DESTRUCTOR_OVERRIDE 2025-08-14T20:45:17.7790740Z -- Performing Test HAS_WINCONSISTENT_MISSING_DESTRUCTOR_OVERRIDE - Success 2025-08-14T20:45:17.7795280Z -- Performing Test HAS_WNO_ERROR_OLD_STYLE_CAST 2025-08-14T20:45:17.9964930Z -- Performing Test HAS_WNO_ERROR_OLD_STYLE_CAST - Success 2025-08-14T20:45:17.9969470Z -- Performing Test HAS_WCONSTANT_CONVERSION 2025-08-14T20:45:18.2112640Z -- Performing Test HAS_WCONSTANT_CONVERSION - Success 2025-08-14T20:45:18.2117540Z -- Performing Test HAS_WNO_ALIGNED_ALLOCATION_UNAVAILABLE 2025-08-14T20:45:18.4295250Z -- Performing Test HAS_WNO_ALIGNED_ALLOCATION_UNAVAILABLE - Failed 2025-08-14T20:45:18.4299680Z -- Performing Test HAS_QUNUSED_ARGUMENTS 2025-08-14T20:45:18.6570850Z -- Performing Test HAS_QUNUSED_ARGUMENTS - Success 2025-08-14T20:45:18.6575280Z -- Performing Test HAS_FALIGNED_NEW 2025-08-14T20:45:18.9333450Z -- Performing Test HAS_FALIGNED_NEW - Success 2025-08-14T20:45:18.9338050Z -- Performing Test HAS_WERROR 2025-08-14T20:45:19.1492640Z -- Performing Test HAS_WERROR - Success 2025-08-14T20:45:19.1497510Z -- Performing Test HAS_WNO_MAYBE_UNINITIALIZED 2025-08-14T20:45:19.3027170Z -- Performing Test HAS_WNO_MAYBE_UNINITIALIZED - Failed 2025-08-14T20:45:19.3031660Z -- Performing Test HAS_FSTANDALONE_DEBUG 2025-08-14T20:45:19.5470060Z -- Performing Test HAS_FSTANDALONE_DEBUG - Success 2025-08-14T20:45:19.5474770Z -- Performing Test HAS_FNO_MATH_ERRNO 2025-08-14T20:45:19.7653550Z -- Performing Test HAS_FNO_MATH_ERRNO - Success 2025-08-14T20:45:19.7658100Z -- Performing Test HAS_FNO_TRAPPING_MATH 2025-08-14T20:45:20.0687080Z -- Performing Test HAS_FNO_TRAPPING_MATH - Success 2025-08-14T20:45:20.0691470Z -- Performing Test HAS_WERROR_FORMAT 2025-08-14T20:45:20.3542400Z -- Performing Test HAS_WERROR_FORMAT - Success 2025-08-14T20:45:20.3547260Z -- Performing Test HAS_WNO_UNGUARDED_AVAILABILITY_NEW 2025-08-14T20:45:20.5705570Z -- Performing Test HAS_WNO_UNGUARDED_AVAILABILITY_NEW - Success 2025-08-14T20:45:20.5710000Z -- Performing Test HAS_WNO_MISSING_BRACES 2025-08-14T20:45:20.7919450Z -- Performing Test HAS_WNO_MISSING_BRACES - Success 2025-08-14T20:45:20.7980100Z -- don't use NUMA 2025-08-14T20:45:20.7991420Z -- Looking for backtrace 2025-08-14T20:45:21.0243450Z -- Looking for backtrace - found 2025-08-14T20:45:21.0244130Z -- backtrace facility detected in default set of libraries 2025-08-14T20:45:21.0246130Z -- Found Backtrace: /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include 2025-08-14T20:45:22.7152950Z -- headers outputs: 2025-08-14T20:45:23.3856820Z -- sources outputs: 2025-08-14T20:45:23.9166390Z -- declarations_yaml outputs: 2025-08-14T20:45:23.9921580Z -- Using ATen parallel backend: OMP 2025-08-14T20:45:23.9932990Z disabling CUDA because USE_CUDA is set false 2025-08-14T20:45:24.0837590Z -- Found OpenSSL: /opt/homebrew/lib/libcrypto.dylib (found version "3.5.2") 2025-08-14T20:45:24.0862920Z -- Looking for sys/types.h 2025-08-14T20:45:24.3229370Z -- Looking for sys/types.h - found 2025-08-14T20:45:24.3229630Z -- Looking for stdint.h 2025-08-14T20:45:24.5483050Z -- Looking for stdint.h - found 2025-08-14T20:45:24.5483300Z -- Looking for stddef.h 2025-08-14T20:45:24.8091170Z -- Looking for stddef.h - found 2025-08-14T20:45:24.8091390Z -- Check size of long double 2025-08-14T20:45:25.0407570Z -- Check size of long double - done 2025-08-14T20:45:25.0408550Z -- Performing Test COMPILER_SUPPORTS_FLOAT128 2025-08-14T20:45:25.2217760Z -- Performing Test COMPILER_SUPPORTS_FLOAT128 - Failed 2025-08-14T20:45:25.2233510Z -- Found OpenMP_C: -Xpreprocessor -fopenmp -I/opt/homebrew/opt/libomp/include (found version "5.0") 2025-08-14T20:45:25.2235780Z -- Found OpenMP_CXX: -Xpreprocessor -fopenmp -I/opt/homebrew/opt/libomp/include (found version "5.0") 2025-08-14T20:45:25.2237270Z -- Found OpenMP: TRUE (found version "5.0") 2025-08-14T20:45:25.2238350Z -- Performing Test COMPILER_SUPPORTS_OPENMP 2025-08-14T20:45:25.4610620Z -- Performing Test COMPILER_SUPPORTS_OPENMP - Failed 2025-08-14T20:45:25.4610930Z -- Performing Test COMPILER_SUPPORTS_OMP_SIMD 2025-08-14T20:45:25.6801110Z -- Performing Test COMPILER_SUPPORTS_OMP_SIMD - Failed 2025-08-14T20:45:25.6801420Z -- Performing Test COMPILER_SUPPORTS_WEAK_ALIASES 2025-08-14T20:45:25.8621690Z -- Performing Test COMPILER_SUPPORTS_WEAK_ALIASES - Failed 2025-08-14T20:45:25.8622030Z -- Performing Test COMPILER_SUPPORTS_BUILTIN_MATH 2025-08-14T20:45:26.0808090Z -- Performing Test COMPILER_SUPPORTS_BUILTIN_MATH - Success 2025-08-14T20:45:26.0808410Z -- Performing Test COMPILER_SUPPORTS_SYS_GETRANDOM 2025-08-14T20:45:26.2441270Z -- Performing Test COMPILER_SUPPORTS_SYS_GETRANDOM - Failed 2025-08-14T20:45:26.2620120Z Target system: Darwin-23.4.0 2025-08-14T20:45:26.2620330Z -- Configuring build for SLEEF-v3.8.0 2025-08-14T20:45:26.2620550Z Target processor: arm64 2025-08-14T20:45:26.2620710Z Host system: Darwin-23.4.0 2025-08-14T20:45:26.2620870Z Host processor: arm64 2025-08-14T20:45:26.2621220Z Detected C compiler: AppleClang @ /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.ay8w3oV9ND/clang 2025-08-14T20:45:26.2621570Z CMake: 3.27.9 2025-08-14T20:45:26.2621800Z Make program: /Users/ec2-user/runner/_work/_temp/venv-3.12-1755204260/bin/ninja 2025-08-14T20:45:26.2622370Z -- Using option `-Wall -Wno-unused-function -Wno-attributes -Wno-unused-result -ffp-contract=off -fno-math-errno -fno-trapping-math` to compile libsleef 2025-08-14T20:45:26.2622840Z -- Building shared libs : OFF 2025-08-14T20:45:26.2623020Z -- Building static test bins: OFF 2025-08-14T20:45:26.2623370Z -- MPFR : LIB_MPFR-NOTFOUND 2025-08-14T20:45:26.2623530Z -- GMP : LIBGMP-NOTFOUND 2025-08-14T20:45:26.2623670Z -- RT : 2025-08-14T20:45:26.2623800Z -- FFTW3 : LIBFFTW3-NOTFOUND 2025-08-14T20:45:26.2623950Z -- OPENSSL : 3.5.2 2025-08-14T20:45:26.2624090Z -- SDE : SDE_COMMAND-NOTFOUND 2025-08-14T20:45:26.2673690Z CMake Warning at cmake/Metal.cmake:59 (message): 2025-08-14T20:45:26.2673920Z -- COMPILER_SUPPORTS_OPENMP : 2025-08-14T20:45:26.2674180Z Machine can not compile metal shaders, fails with xcrun: error: unable to 2025-08-14T20:45:26.2674600Z find utility "metal", not a developer tool or in PATH 2025-08-14T20:45:26.2674770Z 2025-08-14T20:45:26.2674830Z Call Stack (most recent call first): 2025-08-14T20:45:26.2675020Z aten/src/ATen/CMakeLists.txt:710 (include) 2025-08-14T20:45:26.2675170Z 2025-08-14T20:45:26.2675170Z 2025-08-14T20:45:26.2716670Z -- _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-08-14T20:45:26.2717710Z -- Toolchain using default OSX SDK: /Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk 2025-08-14T20:45:26.2718680Z -- 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-08-14T20:45:27.0384410Z AT_INSTALL_INCLUDE_DIR include/ATen/core 2025-08-14T20:45:27.0384840Z core header install: /Users/ec2-user/runner/_work/pytorch/pytorch/build/aten/src/ATen/core/TensorBody.h 2025-08-14T20:45:27.0385700Z core header install: /Users/ec2-user/runner/_work/pytorch/pytorch/build/aten/src/ATen/core/aten_interned_strings.h 2025-08-14T20:45:27.0386250Z core header install: /Users/ec2-user/runner/_work/pytorch/pytorch/build/aten/src/ATen/core/enum_tag.h 2025-08-14T20:45:27.1831480Z -- Performing Test HAS_WMISSING_PROTOTYPES 2025-08-14T20:45:27.4125140Z -- Performing Test HAS_WMISSING_PROTOTYPES - Success 2025-08-14T20:45:27.4130090Z -- Performing Test HAS_WERROR_MISSING_PROTOTYPES 2025-08-14T20:45:27.6299990Z -- Performing Test HAS_WERROR_MISSING_PROTOTYPES - Success 2025-08-14T20:45:27.7237410Z -- The OBJC compiler identification is AppleClang 15.0.0.15000309 2025-08-14T20:45:27.7865600Z -- The OBJCXX compiler identification is AppleClang 15.0.0.15000309 2025-08-14T20:45:27.8472820Z -- Detecting OBJC compiler ABI info 2025-08-14T20:45:28.1211590Z -- Detecting OBJC compiler ABI info - done 2025-08-14T20:45:28.1249720Z -- Check for working OBJC compiler: /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.ay8w3oV9ND/clang - skipped 2025-08-14T20:45:28.1854580Z -- Detecting OBJCXX compiler ABI info 2025-08-14T20:45:28.4687460Z -- Detecting OBJCXX compiler ABI info - done 2025-08-14T20:45:28.4730660Z -- Check for working OBJCXX compiler: /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.ay8w3oV9ND/clang++ - skipped 2025-08-14T20:45:28.5137980Z -- 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-08-14T20:45:28.5200700Z CMake Warning at CMakeLists.txt:1280 (message): 2025-08-14T20:45:28.5201030Z Generated cmake files are only fully tested if one builds with system glog, 2025-08-14T20:45:28.5201480Z gflags, and protobuf. Other settings may generate files that are not well 2025-08-14T20:45:28.5201740Z tested. 2025-08-14T20:45:28.5201810Z 2025-08-14T20:45:28.5201810Z 2025-08-14T20:45:28.5223900Z -- 2025-08-14T20:45:28.5224090Z -- ******** Summary ******** 2025-08-14T20:45:28.5224240Z -- General: 2025-08-14T20:45:28.5224370Z -- CMake version : 3.27.9 2025-08-14T20:45:28.5225010Z -- CMake command : /Users/ec2-user/runner/_work/_temp/venv-3.12-1755204260/lib/python3.12/site-packages/cmake/data/bin/cmake 2025-08-14T20:45:28.5225410Z -- System : Darwin 2025-08-14T20:45:28.5225720Z -- C++ compiler : /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.ay8w3oV9ND/clang++ 2025-08-14T20:45:28.5226090Z -- C++ compiler id : AppleClang 2025-08-14T20:45:28.5226280Z -- C++ compiler version : 15.0.0.15000309 2025-08-14T20:45:28.5226470Z -- Using ccache if found : ON 2025-08-14T20:45:28.5226660Z -- Found ccache : CCACHE_PROGRAM-NOTFOUND 2025-08-14T20:45:28.5229080Z -- 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-08-14T20:45:28.5231840Z -- Shared LD flags : -rdynamic -weak_framework Foundation -weak_framework MetalPerformanceShaders -weak_framework MetalPerformanceShadersGraph -weak_framework Metal -weak_framework IOKit 2025-08-14T20:45:28.5232350Z -- Static LD flags : 2025-08-14T20:45:28.5232500Z -- Module LD flags : 2025-08-14T20:45:28.5232650Z -- Build type : Release 2025-08-14T20:45:28.5233220Z -- 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-08-14T20:45:28.5233930Z -- CMAKE_PREFIX_PATH : /Users/ec2-user/runner/_work/_temp/venv-3.12-1755204260/lib/python3.12/site-packages 2025-08-14T20:45:28.5234330Z -- CMAKE_INSTALL_PREFIX : /Users/ec2-user/runner/_work/pytorch/pytorch/torch 2025-08-14T20:45:28.5234580Z -- USE_GOLD_LINKER : OFF 2025-08-14T20:45:28.5234720Z -- 2025-08-14T20:45:28.5234820Z -- TORCH_VERSION : 2.9.0 2025-08-14T20:45:28.5234990Z -- BUILD_STATIC_RUNTIME_BENCHMARK: OFF 2025-08-14T20:45:28.5235160Z -- BUILD_BINARY : OFF 2025-08-14T20:45:28.5235300Z -- BUILD_CUSTOM_PROTOBUF : ON 2025-08-14T20:45:28.5235450Z -- Link local protobuf : ON 2025-08-14T20:45:28.5235610Z -- BUILD_PYTHON : True 2025-08-14T20:45:28.5235760Z -- Python version : 3.12.11 2025-08-14T20:45:28.5236210Z -- Python executable : /Users/ec2-user/runner/_work/_temp/venv-3.12-1755204260/bin/python 2025-08-14T20:45:28.5236500Z -- Python library : 2025-08-14T20:45:28.5236830Z -- Python includes : /opt/homebrew/opt/python@3.12/Frameworks/Python.framework/Versions/3.12/include/python3.12 2025-08-14T20:45:28.5237330Z -- Python site-package : /Users/ec2-user/runner/_work/_temp/venv-3.12-1755204260/lib/python3.12/site-packages 2025-08-14T20:45:28.5237650Z -- BUILD_SHARED_LIBS : ON 2025-08-14T20:45:28.5237830Z -- CAFFE2_USE_MSVC_STATIC_RUNTIME : OFF 2025-08-14T20:45:28.5238020Z -- BUILD_TEST : False 2025-08-14T20:45:28.5238180Z -- BUILD_JNI : OFF 2025-08-14T20:45:28.5238340Z -- BUILD_MOBILE_AUTOGRAD : OFF 2025-08-14T20:45:28.5238510Z -- BUILD_LITE_INTERPRETER: OFF 2025-08-14T20:45:28.5238670Z -- CROSS_COMPILING_MACOSX : 2025-08-14T20:45:28.5238820Z -- INTERN_BUILD_MOBILE : 2025-08-14T20:45:28.5238970Z -- TRACING_BASED : OFF 2025-08-14T20:45:28.5239130Z -- USE_BLAS : 1 2025-08-14T20:45:28.5239360Z -- BLAS : accelerate 2025-08-14T20:45:28.5239530Z -- BLAS_HAS_SBGEMM : 2025-08-14T20:45:28.5239680Z -- USE_LAPACK : 1 2025-08-14T20:45:28.5239840Z -- LAPACK : accelerate 2025-08-14T20:45:28.5240010Z -- USE_ASAN : OFF 2025-08-14T20:45:28.5240160Z -- USE_TSAN : OFF 2025-08-14T20:45:28.5240310Z -- USE_CPP_CODE_COVERAGE : OFF 2025-08-14T20:45:28.5240460Z -- USE_CUDA : OFF 2025-08-14T20:45:28.5240610Z -- USE_XPU : OFF 2025-08-14T20:45:28.5240750Z -- USE_ROCM : OFF 2025-08-14T20:45:28.5240900Z -- BUILD_NVFUSER : 2025-08-14T20:45:28.5241050Z -- USE_EIGEN_FOR_BLAS : ON 2025-08-14T20:45:28.5241200Z -- USE_FBGEMM : OFF 2025-08-14T20:45:28.5241350Z -- USE_KINETO : ON 2025-08-14T20:45:28.5241500Z -- USE_GFLAGS : OFF 2025-08-14T20:45:28.5241640Z -- USE_GLOG : OFF 2025-08-14T20:45:28.5241790Z -- USE_LITE_PROTO : OFF 2025-08-14T20:45:28.5241950Z -- USE_PYTORCH_METAL : 1 2025-08-14T20:45:28.5242110Z -- USE_PYTORCH_METAL_EXPORT : OFF 2025-08-14T20:45:28.5242280Z -- USE_MPS : ON 2025-08-14T20:45:28.5242430Z -- CAN_COMPILE_METAL : NO 2025-08-14T20:45:28.5242580Z -- USE_MKL : OFF 2025-08-14T20:45:28.5242730Z -- USE_MKLDNN : OFF 2025-08-14T20:45:28.5242880Z -- USE_KLEIDIAI : ON 2025-08-14T20:45:28.5243030Z -- USE_UCC : OFF 2025-08-14T20:45:28.5243170Z -- USE_ITT : OFF 2025-08-14T20:45:28.5243310Z -- USE_XCCL : OFF 2025-08-14T20:45:28.5243460Z -- USE_NCCL : OFF 2025-08-14T20:45:28.5243610Z -- Found NVSHMEM : 2025-08-14T20:45:28.5243760Z -- USE_NNPACK : ON 2025-08-14T20:45:28.5243910Z -- USE_NUMPY : ON 2025-08-14T20:45:28.5244050Z -- USE_OBSERVERS : ON 2025-08-14T20:45:28.5244200Z -- USE_OPENCL : OFF 2025-08-14T20:45:28.5244360Z -- USE_OPENMP : 1 2025-08-14T20:45:28.5244510Z -- USE_MIMALLOC : OFF 2025-08-14T20:45:28.5244660Z -- USE_VULKAN : OFF 2025-08-14T20:45:28.5244800Z -- USE_PROF : OFF 2025-08-14T20:45:28.5244950Z -- USE_PYTORCH_QNNPACK : ON 2025-08-14T20:45:28.5245100Z -- USE_XNNPACK : ON 2025-08-14T20:45:28.5245250Z -- USE_DISTRIBUTED : 0 2025-08-14T20:45:28.5245410Z -- Public Dependencies : 2025-08-14T20:45:28.5245910Z -- Private Dependencies : Threads::Threads;pthreadpool;cpuinfo;pytorch_qnnpack;nnpack;XNNPACK;microkernels-prod;fp16;caffe2::openmp;kleidiai;fmt::fmt-header-only;kineto 2025-08-14T20:45:28.5246390Z -- Public CUDA Deps. : 2025-08-14T20:45:28.5246550Z -- Private CUDA Deps. : 2025-08-14T20:45:28.5246700Z -- USE_COREML_DELEGATE : OFF 2025-08-14T20:45:28.5246860Z -- BUILD_LAZY_TS_BACKEND : ON 2025-08-14T20:45:28.5247020Z -- USE_ROCM_KERNEL_ASSERT : OFF 2025-08-14T20:45:28.5277170Z -- Configuring done (35.6s) 2025-08-14T20:45:29.4398580Z -- Generating done (0.7s) 2025-08-14T20:45:29.5748950Z CMake Warning: 2025-08-14T20:45:29.5749190Z Manually-specified variables were not used by the project: 2025-08-14T20:45:29.5749380Z 2025-08-14T20:45:29.5749430Z BUILD_ENVIRONMENT 2025-08-14T20:45:29.5749530Z 2025-08-14T20:45:29.5749530Z 2025-08-14T20:45:29.5774750Z -- Build files have been written to: /Users/ec2-user/runner/_work/pytorch/pytorch/build 2025-08-14T20:45:29.5957630Z cmake --build . --target install --config Release 2025-08-14T20:45:31.6461540Z [1/4] Generating ATen declarations_yaml 2025-08-14T20:45:33.9444850Z [2/4] Generating ATen headers 2025-08-14T20:45:34.9797900Z [3/4] Generating ATen sources 2025-08-14T20:45:35.1952720Z [1/5156] Generating /Users/ec2-user/runner/_work/pytorch/pytorch/torch/utils/data/datapipes/datapipe.pyi 2025-08-14T20:45:35.2053080Z [2/5156] Building C object sleef/src/libm/CMakeFiles/mkrename.dir/mkrename.c.o 2025-08-14T20:45:35.2110990Z [3/5156] Building C object sleef/src/common/CMakeFiles/addSuffix.dir/addSuffix.c.o 2025-08-14T20:45:35.2178780Z [4/5156] Building C object sleef/src/common/CMakeFiles/arraymap.dir/arraymap.c.o 2025-08-14T20:45:35.2189380Z [5/5156] Building C object sleef/src/libm/CMakeFiles/mkmasked_gnuabi.dir/mkmasked_gnuabi.c.o 2025-08-14T20:45:35.2268980Z [6/5156] Building C object sleef/src/libm/CMakeFiles/mkalias.dir/mkalias.c.o 2025-08-14T20:45:35.2272040Z [7/5156] Building C object sleef/src/libm/CMakeFiles/mkrename_gnuabi.dir/mkrename_gnuabi.c.o 2025-08-14T20:45:35.3051240Z [8/5156] Linking C executable sleef/bin/mkrename 2025-08-14T20:45:35.3197740Z [9/5156] Building CXX object c10/CMakeFiles/c10.dir/core/AutogradState.cpp.o 2025-08-14T20:45:35.3231670Z [10/5156] Linking C executable sleef/bin/mkmasked_gnuabi 2025-08-14T20:45:35.3235110Z [11/5156] Linking C executable sleef/bin/addSuffix 2025-08-14T20:45:35.3320700Z [12/5156] Linking C executable sleef/bin/mkrename_gnuabi 2025-08-14T20:45:35.5176600Z [13/5156] Regenerating version file... 2025-08-14T20:45:35.6224660Z [14/5156] Building CXX object c10/CMakeFiles/c10.dir/core/Allocator.cpp.o 2025-08-14T20:45:35.6266440Z [15/5156] Building CXX object c10/CMakeFiles/c10.dir/core/AllocatorConfig.cpp.o 2025-08-14T20:45:35.6277280Z [16/5156] Building CXX object c10/CMakeFiles/c10.dir/core/CachingDeviceAllocator.cpp.o 2025-08-14T20:45:35.6455040Z [17/5156] Building CXX object c10/CMakeFiles/c10.dir/core/CopyBytes.cpp.o 2025-08-14T20:45:35.6626170Z [18/5156] Building CXX object c10/CMakeFiles/c10.dir/core/ConstantSymNodeImpl.cpp.o 2025-08-14T20:45:35.6788550Z [19/5156] Building CXX object c10/CMakeFiles/c10.dir/core/DefaultDtype.cpp.o 2025-08-14T20:45:35.6870840Z [20/5156] Building CXX object c10/CMakeFiles/c10.dir/core/CPUAllocator.cpp.o 2025-08-14T20:45:35.7629940Z [21/5156] Building CXX object c10/CMakeFiles/c10.dir/core/Device.cpp.o 2025-08-14T20:45:35.7736740Z [22/5156] Building CXX object c10/CMakeFiles/c10.dir/core/GradMode.cpp.o 2025-08-14T20:45:35.8613600Z [23/5156] Building CXX object c10/CMakeFiles/c10.dir/core/DispatchKeySet.cpp.o 2025-08-14T20:45:35.8673170Z [24/5156] Building CXX object c10/CMakeFiles/c10.dir/core/DeviceType.cpp.o 2025-08-14T20:45:35.8690170Z [25/5156] Building CXX object c10/CMakeFiles/c10.dir/core/DispatchKey.cpp.o 2025-08-14T20:45:35.8988690Z [26/5156] Building CXX object c10/CMakeFiles/c10.dir/core/InferenceMode.cpp.o 2025-08-14T20:45:35.9556990Z [27/5156] Building CXX object c10/CMakeFiles/c10.dir/core/GeneratorImpl.cpp.o 2025-08-14T20:45:35.9660610Z [28/5156] Building CXX object c10/CMakeFiles/c10.dir/core/RefcountedDeleter.cpp.o 2025-08-14T20:45:36.0305330Z [29/5156] Building CXX object c10/CMakeFiles/c10.dir/core/SafePyObject.cpp.o 2025-08-14T20:45:36.0600820Z [30/5156] Building CXX object c10/CMakeFiles/c10.dir/core/Scalar.cpp.o 2025-08-14T20:45:36.1333870Z [31/5156] Building CXX object c10/CMakeFiles/c10.dir/core/StorageImpl.cpp.o 2025-08-14T20:45:36.1520870Z [32/5156] Building CXX object c10/CMakeFiles/c10.dir/core/Storage.cpp.o 2025-08-14T20:45:36.1574850Z [33/5156] Building CXX object c10/CMakeFiles/c10.dir/core/Stream.cpp.o 2025-08-14T20:45:36.1654920Z [34/5156] Building CXX object c10/CMakeFiles/c10.dir/core/ScalarType.cpp.o 2025-08-14T20:45:36.1850260Z [35/5156] Building CXX object c10/CMakeFiles/c10.dir/core/SymBool.cpp.o 2025-08-14T20:45:36.1857650Z [36/5156] Building CXX object c10/CMakeFiles/c10.dir/core/SymFloat.cpp.o 2025-08-14T20:45:36.3070820Z [37/5156] Building CXX object c10/CMakeFiles/c10.dir/core/SymIntArrayRef.cpp.o 2025-08-14T20:45:36.3315150Z [38/5156] Building CXX object c10/CMakeFiles/c10.dir/core/SymInt.cpp.o 2025-08-14T20:45:36.3802680Z [39/5156] Building CXX object c10/CMakeFiles/c10.dir/core/SymNodeImpl.cpp.o 2025-08-14T20:45:36.4003500Z [40/5156] Building CXX object c10/CMakeFiles/c10.dir/core/WrapDimMinimal.cpp.o 2025-08-14T20:45:36.4319850Z [41/5156] Building CXX object c10/CMakeFiles/c10.dir/core/TensorOptions.cpp.o 2025-08-14T20:45:36.4433740Z [42/5156] Building CXX object c10/CMakeFiles/c10.dir/core/UndefinedTensorImpl.cpp.o 2025-08-14T20:45:36.4450290Z [43/5156] Building CXX object c10/CMakeFiles/c10.dir/core/TensorImpl.cpp.o 2025-08-14T20:45:36.5645740Z [44/5156] Building CXX object c10/CMakeFiles/c10.dir/core/impl/HermeticPyObjectTLS.cpp.o 2025-08-14T20:45:36.5719400Z [45/5156] Building CXX object c10/CMakeFiles/c10.dir/core/impl/DeviceGuardImplInterface.cpp.o 2025-08-14T20:45:36.5774010Z [46/5156] Building CXX object c10/CMakeFiles/c10.dir/core/impl/COW.cpp.o 2025-08-14T20:45:36.5859260Z [47/5156] Building CXX object c10/CMakeFiles/c10.dir/core/impl/COWDeleter.cpp.o 2025-08-14T20:45:36.6134530Z [48/5156] Building CXX object c10/CMakeFiles/c10.dir/core/impl/GPUTrace.cpp.o 2025-08-14T20:45:36.6736610Z [49/5156] Building CXX object c10/CMakeFiles/c10.dir/core/impl/LocalDispatchKeySet.cpp.o 2025-08-14T20:45:36.6926100Z [50/5156] Building CXX object c10/CMakeFiles/c10.dir/core/impl/PyInterpreter.cpp.o 2025-08-14T20:45:36.7875150Z [51/5156] Building CXX object c10/CMakeFiles/c10.dir/core/impl/PyObjectSlot.cpp.o 2025-08-14T20:45:36.7905710Z [52/5156] Building CXX object c10/CMakeFiles/c10.dir/core/impl/PyInterpreterHooks.cpp.o 2025-08-14T20:45:36.8038200Z [53/5156] Building CXX object c10/CMakeFiles/c10.dir/core/impl/SizesAndStrides.cpp.o 2025-08-14T20:45:36.8108470Z [54/5156] Building CXX object c10/CMakeFiles/c10.dir/core/SymbolicShapeMeta.cpp.o 2025-08-14T20:45:36.8163740Z [55/5156] Building CXX object c10/CMakeFiles/c10.dir/core/impl/PythonDispatcherTLS.cpp.o 2025-08-14T20:45:36.8779970Z [56/5156] Building CXX object c10/CMakeFiles/c10.dir/core/impl/TorchDispatchModeTLS.cpp.o 2025-08-14T20:45:36.9686200Z [57/5156] Building CXX object c10/CMakeFiles/c10.dir/core/impl/alloc_cpu.cpp.o 2025-08-14T20:45:36.9877630Z [58/5156] Building CXX object c10/CMakeFiles/c10.dir/core/thread_pool.cpp.o 2025-08-14T20:45:37.0212820Z [59/5156] Building CXX object c10/CMakeFiles/c10.dir/util/Bfloat16.cpp.o 2025-08-14T20:45:37.0379860Z [60/5156] Building CXX object c10/CMakeFiles/c10.dir/util/Backtrace.cpp.o 2025-08-14T20:45:37.0529670Z [61/5156] Building CXX object c10/CMakeFiles/c10.dir/mobile/CPUCachingAllocator.cpp.o 2025-08-14T20:45:37.0896750Z [62/5156] Building CXX object c10/CMakeFiles/c10.dir/mobile/CPUProfilingAllocator.cpp.o 2025-08-14T20:45:37.1619610Z [63/5156] Building CXX object c10/CMakeFiles/c10.dir/util/C++17.cpp.o 2025-08-14T20:45:37.2163000Z [64/5156] Building CXX object c10/CMakeFiles/c10.dir/util/DeadlockDetection.cpp.o 2025-08-14T20:45:37.2376560Z [65/5156] Building CXX object c10/CMakeFiles/c10.dir/util/DynamicCounter.cpp.o 2025-08-14T20:45:37.2539980Z [66/5156] Building CXX object c10/CMakeFiles/c10.dir/util/Float8_e4m3fnuz.cpp.o 2025-08-14T20:45:37.2617890Z [67/5156] Building CXX object c10/CMakeFiles/c10.dir/util/Float8_e4m3fn.cpp.o 2025-08-14T20:45:37.2693660Z [68/5156] Building CXX object c10/CMakeFiles/c10.dir/util/Exception.cpp.o 2025-08-14T20:45:37.3077970Z [69/5156] Building CXX object c10/CMakeFiles/c10.dir/util/ApproximateClock.cpp.o 2025-08-14T20:45:37.3553880Z [70/5156] Building CXX object c10/CMakeFiles/c10.dir/util/Float8_e5m2.cpp.o 2025-08-14T20:45:37.3768840Z [71/5156] Building CXX object c10/CMakeFiles/c10.dir/util/Float8_e5m2fnuz.cpp.o 2025-08-14T20:45:37.4664530Z [72/5156] Building CXX object c10/CMakeFiles/c10.dir/util/Gauge.cpp.o 2025-08-14T20:45:37.4776610Z [73/5156] Building CXX object c10/CMakeFiles/c10.dir/util/Float8_e8m0fnu.cpp.o 2025-08-14T20:45:37.5231620Z [74/5156] Building CXX object c10/CMakeFiles/c10.dir/util/LeftRight.cpp.o 2025-08-14T20:45:37.5242550Z [75/5156] Building CXX object c10/CMakeFiles/c10.dir/util/Logging.cpp.o 2025-08-14T20:45:37.5432690Z [76/5156] Building CXX object c10/CMakeFiles/c10.dir/util/Half.cpp.o 2025-08-14T20:45:37.5567330Z [77/5156] Building CXX object c10/CMakeFiles/c10.dir/util/MathConstants.cpp.o 2025-08-14T20:45:37.5757400Z [78/5156] Building CXX object c10/CMakeFiles/c10.dir/util/ParallelGuard.cpp.o 2025-08-14T20:45:37.5856950Z [79/5156] Building CXX object c10/CMakeFiles/c10.dir/util/Metaprogramming.cpp.o 2025-08-14T20:45:37.6047510Z [80/5156] Building CXX object c10/CMakeFiles/c10.dir/util/NetworkFlow.cpp.o 2025-08-14T20:45:37.7079690Z [81/5156] Building CXX object c10/CMakeFiles/c10.dir/util/Optional.cpp.o 2025-08-14T20:45:37.7460690Z [82/5156] Building CXX object c10/CMakeFiles/c10.dir/util/ThreadLocalDebugInfo.cpp.o 2025-08-14T20:45:37.7552250Z [83/5156] Building CXX object c10/CMakeFiles/c10.dir/util/StringUtil.cpp.o 2025-08-14T20:45:37.7929540Z [84/5156] Building CXX object c10/CMakeFiles/c10.dir/util/SmallVector.cpp.o 2025-08-14T20:45:37.7948020Z [85/5156] Building CXX object c10/CMakeFiles/c10.dir/util/TypeList.cpp.o 2025-08-14T20:45:37.7985990Z [86/5156] Building CXX object c10/CMakeFiles/c10.dir/util/TypeTraits.cpp.o 2025-08-14T20:45:37.7993000Z [87/5156] Building CXX object c10/CMakeFiles/c10.dir/util/TypeCast.cpp.o 2025-08-14T20:45:37.8162610Z [88/5156] Building CXX object c10/CMakeFiles/c10.dir/util/Type_no_demangle.cpp.o 2025-08-14T20:45:37.8337730Z [89/5156] Building CXX object c10/CMakeFiles/c10.dir/util/Unicode.cpp.o 2025-08-14T20:45:37.8484570Z [90/5156] Building CXX object c10/CMakeFiles/c10.dir/util/Type_demangle.cpp.o 2025-08-14T20:45:37.9136800Z [91/5156] Building CXX object c10/CMakeFiles/c10.dir/util/flags_use_gflags.cpp.o 2025-08-14T20:45:37.9250060Z [92/5156] Building CXX object c10/CMakeFiles/c10.dir/util/UniqueVoidPtr.cpp.o 2025-08-14T20:45:37.9975670Z [93/5156] Building CXX object c10/CMakeFiles/c10.dir/util/error.cpp.o 2025-08-14T20:45:38.0154380Z [94/5156] Building CXX object c10/CMakeFiles/c10.dir/util/complex_math.cpp.o 2025-08-14T20:45:38.0311470Z [95/5156] Building CXX object c10/CMakeFiles/c10.dir/util/WaitCounter.cpp.o 2025-08-14T20:45:38.0382090Z [96/5156] Building CXX object c10/CMakeFiles/c10.dir/util/env.cpp.o 2025-08-14T20:45:38.0513590Z [97/5156] Building CXX object c10/CMakeFiles/c10.dir/util/flags_use_no_gflags.cpp.o 2025-08-14T20:45:38.1537030Z [98/5156] Building CXX object c10/CMakeFiles/c10.dir/util/intrusive_ptr.cpp.o 2025-08-14T20:45:38.1560220Z [99/5156] Building CXX object c10/CMakeFiles/c10.dir/util/int128.cpp.o 2025-08-14T20:45:38.1739320Z [100/5156] 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-08-14T20:45:38.1757410Z [101/5156] Building CXX object c10/CMakeFiles/c10.dir/util/numa.cpp.o 2025-08-14T20:45:38.1956450Z [102/5156] Building CXX object c10/CMakeFiles/c10.dir/util/thread_name.cpp.o 2025-08-14T20:45:38.2134390Z [103/5156] Building CXX object c10/CMakeFiles/c10.dir/util/tempfile.cpp.o 2025-08-14T20:45:38.2584440Z [104/5156] Building CXX object c10/CMakeFiles/c10.dir/util/signal_handler.cpp.o 2025-08-14T20:45:38.2786530Z [105/5156] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_imatmul_pack_x16p2vlx2_x16p_sme.c.o 2025-08-14T20:45:38.2791280Z [106/5156] 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-08-14T20:45:38.3054610Z [107/5156] Building CXX object c10/CMakeFiles/c10.dir/util/typeid.cpp.o 2025-08-14T20:45:38.3093910Z [108/5156] 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-08-14T20:45:38.3253660Z [109/5156] 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-08-14T20:45:38.3404690Z [110/5156] 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-08-14T20:45:38.3405710Z [111/5156] 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-08-14T20:45:38.3768150Z [112/5156] 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-08-14T20:45:38.3957140Z [113/5156] 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-08-14T20:45:38.3967150Z [114/5156] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_imatmul_pack_x32p2vlx1_x32p_sme.c.o 2025-08-14T20:45:38.4202630Z [115/5156] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_imatmul_pack_x8p2vlx4_x8p_sme.c.o 2025-08-14T20:45:38.4438290Z [116/5156] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_pack_f32p2vlx1_f32_sme.c.o 2025-08-14T20:45:38.4502770Z [117/5156] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_pack_x16p2vlx2_x16_sme.c.o 2025-08-14T20:45:38.4646360Z [118/5156] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_pack_x8p2vlx4_x8_sme.c.o 2025-08-14T20:45:38.5086230Z [119/5156] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f32p16vlx1b_f32_f32_sme.c.o 2025-08-14T20:45:38.5182310Z [120/5156] 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-08-14T20:45:38.5275770Z [121/5156] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f32p2vlx1biasf32_f32_f32_sme.c.o 2025-08-14T20:45:38.5496190Z [122/5156] 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-08-14T20:45:38.5788630Z [123/5156] 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-08-14T20:45:38.5960550Z [124/5156] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_x16p2vlx2b_x16_x16_sme.c.o 2025-08-14T20:45:38.6084090Z [125/5156] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_x16p2vlx2b_x16_x16_sme.c.o 2025-08-14T20:45:38.6234100Z [126/5156] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_f32p2vlx1biasf32_f32_f32_sme.c.o 2025-08-14T20:45:38.6256450Z [127/5156] 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-08-14T20:45:38.6472890Z [128/5156] 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-08-14T20:45:38.6674050Z [129/5156] 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-08-14T20:45:38.6893350Z [130/5156] 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-08-14T20:45:38.7019350Z [131/5156] 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-08-14T20:45:38.7331830Z [132/5156] 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-08-14T20:45:38.7587330Z [133/5156] 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-08-14T20:45:38.7683400Z [134/5156] 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-08-14T20:45:38.7716130Z [135/5156] 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-08-14T20:45:38.7902050Z [136/5156] 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-08-14T20:45:38.7908240Z [137/5156] 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-08-14T20:45:38.8175120Z [138/5156] 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-08-14T20:45:38.8387850Z [139/5156] 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-08-14T20:45:38.8618430Z [140/5156] 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-08-14T20:45:38.8784400Z [141/5156] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_bf16p2vlx2b_f32_x32_sme.c.o 2025-08-14T20:45:38.8906480Z [142/5156] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_pack_bf16p2vlx2_f32_sme.c.o 2025-08-14T20:45:38.8993350Z [143/5156] 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-08-14T20:45:38.9678630Z [144/5156] Building CXX object third_party/fmt/CMakeFiles/fmt.dir/src/os.cc.o 2025-08-14T20:45:38.9974170Z [145/5156] Building CXX object third_party/fmt/CMakeFiles/fmt.dir/src/format.cc.o 2025-08-14T20:45:39.0635800Z [146/5156] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_api.dir/src/ThreadUtil.cpp.o 2025-08-14T20:45:39.0638760Z /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-08-14T20:45:39.0641200Z sysTid = (int32_t)syscall(SYS_thread_selfid); 2025-08-14T20:45:39.0641750Z ^ 2025-08-14T20:45:39.0642850Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/unistd.h:748:6: note: 'syscall' has been explicitly marked deprecated here 2025-08-14T20:45:39.0644630Z int syscall(int, ...); 2025-08-14T20:45:39.0645050Z ^ 2025-08-14T20:45:39.0645380Z 1 warning generated. 2025-08-14T20:45:39.0956710Z [147/5156] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_api.dir/src/libkineto_api.cpp.o 2025-08-14T20:45:39.1135000Z [148/5156] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/Config.cpp.o 2025-08-14T20:45:39.1190680Z [149/5156] Linking CXX static library lib/libfmt.a 2025-08-14T20:45:39.1365540Z [150/5156] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/AbstractConfig.cpp.o 2025-08-14T20:45:39.1714930Z [151/5156] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/ApproximateClock.cpp.o 2025-08-14T20:45:39.1782630Z [152/5156] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/CuptiActivityProfiler.cpp.o 2025-08-14T20:45:39.2732390Z [153/5156] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/ActivityProfilerController.cpp.o 2025-08-14T20:45:39.3094960Z [154/5156] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/DaemonConfigLoader.cpp.o 2025-08-14T20:45:39.3257280Z [155/5156] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/ActivityProfilerProxy.cpp.o 2025-08-14T20:45:39.3547230Z [156/5156] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/CuptiActivityApi.cpp.o 2025-08-14T20:45:39.3556640Z [157/5156] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/ActivityType.cpp.o 2025-08-14T20:45:39.3587520Z [158/5156] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/ConfigLoader.cpp.o 2025-08-14T20:45:39.3854240Z [159/5156] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/Demangle.cpp.o 2025-08-14T20:45:39.4085530Z [160/5156] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/DeviceProperties.cpp.o 2025-08-14T20:45:39.4829000Z [161/5156] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/IpcFabricConfigClient.cpp.o 2025-08-14T20:45:39.5282560Z [162/5156] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/DeviceUtil.cpp.o 2025-08-14T20:45:39.5556090Z [163/5156] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/GenericTraceActivity.cpp.o 2025-08-14T20:45:39.5763860Z [164/5156] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/LoggingAPI.cpp.o 2025-08-14T20:45:39.6496480Z [165/5156] Building C object confu-deps/XNNPACK/CMakeFiles/allocator.dir/src/allocator.c.o 2025-08-14T20:45:39.6579270Z [166/5156] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/ILoggerObserver.cpp.o 2025-08-14T20:45:39.6656570Z [167/5156] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/init.cpp.o 2025-08-14T20:45:39.6983090Z [168/5156] Building C object confu-deps/XNNPACK/CMakeFiles/normalization.dir/src/normalization.c.o 2025-08-14T20:45:39.7057640Z [169/5156] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/Logger.cpp.o 2025-08-14T20:45:39.7066680Z [170/5156] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/output_csv.cpp.o 2025-08-14T20:45:39.7501040Z [171/5156] Building CXX object confu-deps/XNNPACK/CMakeFiles/packing.dir/src/reference/packing.cc.o 2025-08-14T20:45:39.7526950Z [172/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microparams-init.dir/src/microparams-init.c.o 2025-08-14T20:45:39.7543510Z [173/5156] Building C object confu-deps/XNNPACK/CMakeFiles/logging.dir/src/log.c.o 2025-08-14T20:45:39.7556930Z [174/5156] Building C object confu-deps/XNNPACK/CMakeFiles/logging.dir/src/enums/operator-type.c.o 2025-08-14T20:45:39.7801200Z [175/5156] Building C object confu-deps/XNNPACK/CMakeFiles/logging.dir/src/enums/node-type.c.o 2025-08-14T20:45:39.7879480Z [176/5156] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/output_json.cpp.o 2025-08-14T20:45:39.8194140Z [177/5156] Building C object confu-deps/XNNPACK/CMakeFiles/logging.dir/src/enums/microkernel-type.c.o 2025-08-14T20:45:39.8466850Z [178/5156] Building C object confu-deps/XNNPACK/CMakeFiles/hardware-config.dir/src/configs/hardware-config.c.o 2025-08-14T20:45:39.8494160Z [179/5156] Building C object confu-deps/XNNPACK/CMakeFiles/cache.dir/src/cache.c.o 2025-08-14T20:45:39.8583270Z [180/5156] Building C object confu-deps/XNNPACK/CMakeFiles/logging.dir/src/enums/datatype-strings.c.o 2025-08-14T20:45:39.8650040Z [181/5156] Building C object confu-deps/XNNPACK/CMakeFiles/indirection.dir/src/indirection.c.o 2025-08-14T20:45:39.8677470Z [182/5156] Building C object confu-deps/XNNPACK/CMakeFiles/logging.dir/src/enums/allocation-type.c.o 2025-08-14T20:45:39.8689610Z [183/5156] Building C object confu-deps/XNNPACK/CMakeFiles/datatype.dir/src/datatype.c.o 2025-08-14T20:45:39.9037240Z [184/5156] Building C object confu-deps/XNNPACK/CMakeFiles/memory.dir/src/memory.c.o 2025-08-14T20:45:39.9620070Z [185/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernel-utils.dir/src/microkernel-utils.c.o 2025-08-14T20:45:39.9635480Z [186/5156] Linking CXX static library lib/libkineto.a 2025-08-14T20:45:39.9787320Z [187/5156] Building C object confu-deps/XNNPACK/CMakeFiles/mutex.dir/src/mutex.c.o 2025-08-14T20:45:39.9791620Z [188/5156] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/argmax-pooling-nhwc.c.o 2025-08-14T20:45:39.9850370Z [189/5156] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operator-delete.c.o 2025-08-14T20:45:40.0001940Z [190/5156] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/reduce-nd.c.o 2025-08-14T20:45:40.0034130Z [191/5156] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/average-pooling-nhwc.c.o 2025-08-14T20:45:40.0566970Z [192/5156] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/batch-matrix-multiply-nc.c.o 2025-08-14T20:45:40.0800060Z [193/5156] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/channel-shuffle-nc.c.o 2025-08-14T20:45:40.0910700Z [194/5156] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/constant-pad-nd.c.o 2025-08-14T20:45:40.1046500Z [195/5156] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/convolution-nchw.c.o 2025-08-14T20:45:40.1103280Z [196/5156] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/binary-elementwise-nd.c.o 2025-08-14T20:45:40.1281610Z [197/5156] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/dynamic-fully-connected-nc.c.o 2025-08-14T20:45:40.1289930Z [198/5156] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/convolution-nhwc.c.o 2025-08-14T20:45:40.1293350Z [199/5156] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/deconvolution-nhwc.c.o 2025-08-14T20:45:40.1809210Z [200/5156] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/fully-connected-nc.c.o 2025-08-14T20:45:40.1845460Z [201/5156] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/max-pooling-nhwc.c.o 2025-08-14T20:45:40.2059470Z [202/5156] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/resize-bilinear-nchw.c.o 2025-08-14T20:45:40.2226600Z [203/5156] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/slice-nd.c.o 2025-08-14T20:45:40.2319770Z [204/5156] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/pack-lh.c.o 2025-08-14T20:45:40.2530570Z [205/5156] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/resize-bilinear-nhwc.c.o 2025-08-14T20:45:40.2706140Z [206/5156] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/scaled-dot-product-attention-nhtc.c.o 2025-08-14T20:45:40.2859280Z [207/5156] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/transpose-nd.c.o 2025-08-14T20:45:40.2882240Z [208/5156] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/rope-nthc.c.o 2025-08-14T20:45:40.3124010Z [209/5156] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/unary-elementwise-nc.c.o 2025-08-14T20:45:40.3191430Z [210/5156] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/softmax-nc.c.o 2025-08-14T20:45:40.3356660Z [211/5156] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/unpooling-nhwc.c.o 2025-08-14T20:45:40.3501720Z [212/5156] Building C object confu-deps/XNNPACK/CMakeFiles/operator-run.dir/src/operator-run.c.o 2025-08-14T20:45:40.4065670Z [213/5156] Building C object confu-deps/XNNPACK/CMakeFiles/operator-utils.dir/src/operator-utils.c.o 2025-08-14T20:45:40.4294550Z [214/5156] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/memory-planner.c.o 2025-08-14T20:45:40.4476130Z [215/5156] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/argmax-pooling-2d.c.o 2025-08-14T20:45:40.4538920Z [216/5156] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph.c.o 2025-08-14T20:45:40.4715710Z [217/5156] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/concatenate.c.o 2025-08-14T20:45:40.4807830Z [218/5156] Building CXX object confu-deps/XNNPACK/CMakeFiles/reference-ukernels.dir/src/reference/binary-elementwise.cc.o 2025-08-14T20:45:40.4867460Z [219/5156] Building CXX object confu-deps/XNNPACK/CMakeFiles/reference-ukernels.dir/src/reference/unary-elementwise.cc.o 2025-08-14T20:45:40.5012040Z [220/5156] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/runtime.c.o 2025-08-14T20:45:40.5082800Z [221/5156] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/average-pooling-2d.c.o 2025-08-14T20:45:40.5544140Z [222/5156] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/batch-matrix-multiply.c.o 2025-08-14T20:45:40.5758890Z [223/5156] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/convolution-2d.c.o 2025-08-14T20:45:40.5887150Z [224/5156] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/deconvolution-2d.c.o 2025-08-14T20:45:40.5930770Z [225/5156] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/depth-to-space-2d.c.o 2025-08-14T20:45:40.6004800Z [226/5156] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/copy.c.o 2025-08-14T20:45:40.6069130Z [227/5156] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/deprecated.c.o 2025-08-14T20:45:40.6255080Z [228/5156] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/binary.c.o 2025-08-14T20:45:40.6387880Z [229/5156] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/fully-connected-sparse.c.o 2025-08-14T20:45:40.6888620Z [230/5156] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/even-split.c.o 2025-08-14T20:45:40.7066560Z [231/5156] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/depthwise-convolution-2d.c.o 2025-08-14T20:45:40.7172110Z [232/5156] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/max-pooling-2d.c.o 2025-08-14T20:45:40.7212790Z [233/5156] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/reshape-helpers.c.o 2025-08-14T20:45:40.7216500Z [234/5156] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/pack-lh.c.o 2025-08-14T20:45:40.7386260Z [235/5156] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/scaled-dot-product-attention.c.o 2025-08-14T20:45:40.7458730Z [236/5156] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/space-to-depth-2d.c.o 2025-08-14T20:45:40.7469200Z [237/5156] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/fully-connected.c.o 2025-08-14T20:45:40.8206540Z [238/5156] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/softmax.c.o 2025-08-14T20:45:40.8271910Z [239/5156] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-resize-bilinear-2d.c.o 2025-08-14T20:45:40.8399260Z [240/5156] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-reduce.c.o 2025-08-14T20:45:40.8407240Z [241/5156] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-transpose.c.o 2025-08-14T20:45:40.8447670Z [242/5156] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-constant-pad.c.o 2025-08-14T20:45:40.8663270Z [243/5156] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/unpooling-2d.c.o 2025-08-14T20:45:40.8668390Z [244/5156] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/unary.c.o 2025-08-14T20:45:40.8676390Z [245/5156] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-slice.c.o 2025-08-14T20:45:40.8911840Z [246/5156] Generating sleeflibm_PUREC_SCALAR.h.tmp 2025-08-14T20:45:40.8914410Z [247/5156] Generating sleeflibm_DSP_SCALAR.h.tmp 2025-08-14T20:45:40.8917210Z [248/5156] Generating sleeflibm_ADVSIMD_.h.tmp 2025-08-14T20:45:40.8918250Z [249/5156] Generating sleeflibm_PURECFMA_SCALAR.h.tmp 2025-08-14T20:45:40.8960510Z [250/5156] Generating sleeflibm_SVENOFMA.h.tmp 2025-08-14T20:45:40.8967030Z [251/5156] Generating sleeflibm_ADVSIMD.h.tmp 2025-08-14T20:45:40.8978070Z [252/5156] Generating sleeflibm_ADVSIMDNOFMA.h.tmp 2025-08-14T20:45:40.9005900Z [253/5156] Generating sleeflibm_SVE.h.tmp 2025-08-14T20:45:40.9020540Z [254/5156] Generating include/renamecuda.h 2025-08-14T20:45:40.9022280Z Generating renamecuda.h: mkrename finz_ 1 1 cuda 2025-08-14T20:45:40.9025650Z [255/5156] Generating include/renamepurecfma_scalar.h 2025-08-14T20:45:40.9032650Z Generating renamepurecfma_scalar.h: mkrename finz_ 1 1 purecfma 2025-08-14T20:45:40.9050300Z [256/5156] Generating include/renameadvsimdnofma.h 2025-08-14T20:45:40.9057630Z Generating renameadvsimdnofma.h: mkrename cinz_ 2 4 advsimdnofma 2025-08-14T20:45:40.9215570Z [257/5156] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/validation.c.o 2025-08-14T20:45:40.9218420Z [258/5156] Generating ../../../include/sleef.h 2025-08-14T20:45:40.9263720Z [259/5156] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/tensor.c.o 2025-08-14T20:45:40.9378120Z [260/5156] Building C object sleef/src/libm/CMakeFiles/mkdisp.dir/mkdisp.c.o 2025-08-14T20:45:40.9759520Z [261/5156] Linking C executable sleef/bin/mkalias 2025-08-14T20:45:41.0208000Z [262/5156] Building C object sleef/src/libm/CMakeFiles/sleefpurecfma_scalar.dir/sleefsimddp.c.o 2025-08-14T20:45:41.0210470Z [263/5156] Building C object sleef/src/libm/CMakeFiles/sleefdetpurecfma_scalar.dir/sleefsimddp.c.o 2025-08-14T20:45:41.0216410Z [264/5156] Building C object sleef/src/common/CMakeFiles/common.dir/common.c.o 2025-08-14T20:45:41.0250120Z [265/5156] Building C object sleef/src/libm/CMakeFiles/sleefdetpurecfma_scalar.dir/sleefsimdsp.c.o 2025-08-14T20:45:41.0267300Z [266/5156] Building C object sleef/src/libm/CMakeFiles/sleefpurecfma_scalar.dir/sleefsimdsp.c.o 2025-08-14T20:45:41.0273410Z [267/5156] Generating include/renamepurec_scalar.h 2025-08-14T20:45:41.0276580Z Generating renamepurec_scalar.h: mkrename cinz_ 1 1 purec 2025-08-14T20:45:41.0284420Z [268/5156] Generating alias_ADVSIMD_sp.h.tmp 2025-08-14T20:45:41.0303910Z [269/5156] Linking C executable sleef/bin/mkdisp 2025-08-14T20:45:41.0307240Z [270/5156] Generating alias_ADVSIMD_dp.h.tmp 2025-08-14T20:45:41.0327660Z [271/5156] Generating include/renameadvsimd.h 2025-08-14T20:45:41.0333430Z Generating renameadvsimd.h: mkrename finz_ 2 4 advsimd 2025-08-14T20:45:41.0338290Z [272/5156] Generating include/renamedspscalar.h 2025-08-14T20:45:41.0557300Z [273/5156] Generating include/alias_advsimd.h 2025-08-14T20:45:41.0571200Z [274/5156] Building C object sleef/src/libm/CMakeFiles/sleefadvsimdnofma.dir/sleefsimdsp.c.o 2025-08-14T20:45:41.0725560Z [275/5156] Generating dispscalar.c.body 2025-08-14T20:45:41.0854360Z [276/5156] Generating dispscalar.c 2025-08-14T20:45:41.1118510Z [277/5156] 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-08-14T20:45:41.1532000Z [278/5156] Building C object sleef/src/libm/CMakeFiles/sleefadvsimdnofma.dir/sleefsimddp.c.o 2025-08-14T20:45:41.1540620Z [279/5156] Building C object sleef/src/libm/CMakeFiles/sleefdetpurec_scalar.dir/sleefsimddp.c.o 2025-08-14T20:45:41.1549550Z [280/5156] Building C object sleef/src/libm/CMakeFiles/sleefpurec_scalar.dir/sleefsimddp.c.o 2025-08-14T20:45:41.1740820Z [281/5156] Building C object sleef/src/libm/CMakeFiles/sleefpurec_scalar.dir/sleefsimdsp.c.o 2025-08-14T20:45:41.1842280Z [282/5156] Building C object sleef/src/libm/CMakeFiles/sleefdetadvsimd.dir/sleefsimddp.c.o 2025-08-14T20:45:41.1892130Z [283/5156] Building C object sleef/src/libm/CMakeFiles/sleefdetpurec_scalar.dir/sleefsimdsp.c.o 2025-08-14T20:45:41.2031000Z [284/5156] Building C object sleef/src/libm/CMakeFiles/sleefdetadvsimd.dir/sleefsimdsp.c.o 2025-08-14T20:45:41.2155020Z [285/5156] Building C object sleef/src/libm/CMakeFiles/sleef.dir/rempitab.c.o 2025-08-14T20:45:41.2221870Z [286/5156] Building C object sleef/src/libm/CMakeFiles/dispscalar_obj.dir/dispscalar.c.o 2025-08-14T20:45:41.2695890Z [287/5156] Building C object caffe2/CMakeFiles/torch_global_deps.dir/__/torch/csrc/empty.c.o 2025-08-14T20:45:41.2880870Z [288/5156] Building C object sleef/src/libm/CMakeFiles/sleefdetadvsimdnofma.dir/sleefsimddp.c.o 2025-08-14T20:45:41.2908300Z [289/5156] Building C object sleef/src/libm/CMakeFiles/sleefadvsimd.dir/sleefsimdsp.c.o 2025-08-14T20:45:41.2913060Z [290/5156] Building C object sleef/src/libm/CMakeFiles/sleefadvsimd.dir/sleefsimddp.c.o 2025-08-14T20:45:41.3204560Z [291/5156] Building C object sleef/src/libm/CMakeFiles/sleefdetadvsimdnofma.dir/sleefsimdsp.c.o 2025-08-14T20:45:41.3411290Z [292/5156] 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-08-14T20:45:41.3587520Z [293/5156] 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-08-14T20:45:41.3637620Z [294/5156] 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-08-14T20:45:41.3897000Z [295/5156] 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-08-14T20:45:41.4138870Z [296/5156] Linking C shared library lib/libtorch_global_deps.dylib 2025-08-14T20:45:41.4283350Z [297/5156] 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-08-14T20:45:41.4534930Z [298/5156] 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-08-14T20:45:41.4733780Z [299/5156] Linking C static library sleef/lib/libsleef.a 2025-08-14T20:45:41.4737710Z [300/5156] 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-08-14T20:45:41.4750740Z [301/5156] 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-08-14T20:45:41.5196220Z [302/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rsum/gen/qs8-rsum-neon-u16.c.o 2025-08-14T20:45:41.5200320Z [303/5156] 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-08-14T20:45:41.5214610Z [304/5156] 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-08-14T20:45:41.5218380Z [305/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rdsum/gen/qs8-rdsum-7p7x-minmax-fp32-neon-c16.c.o 2025-08-14T20:45:41.5485590Z [306/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rdsum/gen/qs8-rdsum-7p7x-minmax-fp32-neon-c64.c.o 2025-08-14T20:45:41.6076650Z [307/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-neon-u8.c.o 2025-08-14T20:45:41.6216330Z [308/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rsum/gen/qs8-rsum-neon-u64-acc4.c.o 2025-08-14T20:45:41.6225340Z [309/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rsum/gen/qs8-rsum-neon-u64-acc2.c.o 2025-08-14T20:45:41.6396160Z [310/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-neon-ld64-u8.c.o 2025-08-14T20:45:41.6410020Z [311/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-neon-ld128-u16.c.o 2025-08-14T20:45:41.6429560Z [312/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-neon-ld64-u24.c.o 2025-08-14T20:45:41.6525850Z [313/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-neon-ld128-u32.c.o 2025-08-14T20:45:41.6564390Z [314/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-neon-ld64-u8.c.o 2025-08-14T20:45:41.6767060Z [315/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-neon-ld64-u24.c.o 2025-08-14T20:45:41.7584180Z [316/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-neon-ld128-u32.c.o 2025-08-14T20:45:41.7789450Z [317/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-neon-u16.c.o 2025-08-14T20:45:41.7884790Z [318/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-neon-ld64-u8.c.o 2025-08-14T20:45:41.7898140Z [319/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-neon-ld128-u16.c.o 2025-08-14T20:45:41.7942900Z [320/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-neon-ld64-u16.c.o 2025-08-14T20:45:41.8071900Z [321/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-neon-u8.c.o 2025-08-14T20:45:41.8089550Z [322/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l8c8s8r-minmax-fp32-neon-mul16.c.o 2025-08-14T20:45:41.8129780Z [323/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-neon-ld128-u16.c.o 2025-08-14T20:45:41.8310090Z [324/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-neon-u16.c.o 2025-08-14T20:45:41.8724700Z [325/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-rndnu-neon-ld64-u8.c.o 2025-08-14T20:45:41.8866020Z [326/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-rndnu-neon-ld128-u16.c.o 2025-08-14T20:45:41.9070980Z [327/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-neon-ld64-u8.c.o 2025-08-14T20:45:41.9188640Z [328/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-neon-ld128-u16.c.o 2025-08-14T20:45:41.9229610Z [329/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-neon-ld64-u16.c.o 2025-08-14T20:45:41.9312520Z [330/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-rndnu-neon-ld64-u8.c.o 2025-08-14T20:45:41.9511620Z [331/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-rndnu-neon-ld128-u16.c.o 2025-08-14T20:45:41.9520510Z [332/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l8c8s8r-minmax-rndnu-neon-mul16.c.o 2025-08-14T20:45:41.9587870Z [333/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l8c8s8r-minmax-rndnu-neon-mul8.c.o 2025-08-14T20:45:42.0148430Z [334/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l16c8s8r-minmax-fp32-neon-mul16.c.o 2025-08-14T20:45:42.0417600Z [335/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l32c8s8r-minmax-rndnu-neon-mul8.c.o 2025-08-14T20:45:42.0441670Z [336/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l32c8s8r-minmax-fp32-neon-mul16.c.o 2025-08-14T20:45:42.0463090Z [337/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l32c8s8r-minmax-rndnu-neon-mul16.c.o 2025-08-14T20:45:42.0479850Z [338/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l16c8s8r-minmax-rndnu-neon-mul8.c.o 2025-08-14T20:45:42.0483440Z [339/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l16c8s8r-minmax-rndnu-neon-mul16.c.o 2025-08-14T20:45:42.0819810Z [340/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l8c8s8r-minmax-rndnu-neon-mul8.c.o 2025-08-14T20:45:42.0832960Z [341/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l8c8s8r-minmax-fp32-neon-mul16.c.o 2025-08-14T20:45:42.1063000Z [342/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l8c8s8r-minmax-rndnu-neon-mul16.c.o 2025-08-14T20:45:42.1612280Z [343/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l16c8s8r-minmax-rndnu-neon-mul8.c.o 2025-08-14T20:45:42.1868040Z [344/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l32c8s8r-minmax-rndnu-neon-mul16.c.o 2025-08-14T20:45:42.1872390Z [345/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l32c8s8r-minmax-rndnu-neon-mul8.c.o 2025-08-14T20:45:42.2176810Z [346/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l16c8s8r-minmax-fp32-neon-mul16.c.o 2025-08-14T20:45:42.2180600Z [347/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l32c8s8r-minmax-fp32-neon-mul16.c.o 2025-08-14T20:45:42.2233680Z [348/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l8c8s8r-minmax-rndnu-neon-mul8.c.o 2025-08-14T20:45:42.2334360Z [349/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l8c8s8r-minmax-fp32-neon-mul16.c.o 2025-08-14T20:45:42.2359280Z [350/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l8c8s8r-minmax-rndnu-neon-mul16.c.o 2025-08-14T20:45:42.2961840Z [351/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l16c8s8r-minmax-rndnu-neon-mul8.c.o 2025-08-14T20:45:42.2976940Z [352/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l16c8s8r-minmax-rndnu-neon-mul16.c.o 2025-08-14T20:45:42.2987530Z [353/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l16c8s8r-minmax-fp32-neon-mul16.c.o 2025-08-14T20:45:42.3688300Z [354/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p8c-minmax-fp32-neon-mul16.c.o 2025-08-14T20:45:42.3788000Z [355/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l32c8s8r-minmax-rndnu-neon-mul8.c.o 2025-08-14T20:45:42.3864510Z [356/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p8c-minmax-rndnu-neon-mul8.c.o 2025-08-14T20:45:42.4038890Z [357/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l32c8s8r-minmax-rndnu-neon-mul16.c.o 2025-08-14T20:45:42.4213290Z [358/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l32c8s8r-minmax-fp32-neon-mul16.c.o 2025-08-14T20:45:42.4247060Z [359/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-fp32-neon-mul16.c.o 2025-08-14T20:45:42.4256080Z [360/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p8c-minmax-rndnu-neon-mul16.c.o 2025-08-14T20:45:42.4446100Z [361/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-rndnu-neon-mul16.c.o 2025-08-14T20:45:42.4600550Z [362/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l16c8s8r-minmax-rndnu-neon-mul16.c.o 2025-08-14T20:45:42.5098550Z [363/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p32c-minmax-rndnu-neon-mul8.c.o 2025-08-14T20:45:42.5223210Z [364/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p32c-minmax-fp32-neon-mul16.c.o 2025-08-14T20:45:42.5334720Z [365/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p32c-minmax-rndnu-neon-mul16.c.o 2025-08-14T20:45:42.5337190Z [366/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-fp32-neon-mul16.c.o 2025-08-14T20:45:42.5547040Z [367/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-rndnu-neon-mul16.c.o 2025-08-14T20:45:42.5750060Z [368/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-fp32-neon-mul16.c.o 2025-08-14T20:45:42.5894120Z [369/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p32c-minmax-fp32-neon-mul16.c.o 2025-08-14T20:45:42.5988320Z [370/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-rndnu-neon-mul16.c.o 2025-08-14T20:45:42.6076080Z [371/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-rndnu-neon-mul8.c.o 2025-08-14T20:45:42.6870200Z [372/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p32c-minmax-rndnu-neon-mul16.c.o 2025-08-14T20:45:42.6882230Z [373/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p32c-minmax-rndnu-neon-mul8.c.o 2025-08-14T20:45:42.6888480Z [374/5156] 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-08-14T20:45:42.7042530Z [375/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-neon-u16.c.o 2025-08-14T20:45:42.7046870Z [376/5156] 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-08-14T20:45:42.7058420Z [377/5156] 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-08-14T20:45:42.7216520Z [378/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-neon-u24.c.o 2025-08-14T20:45:42.7365530Z [379/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-neon-u8.c.o 2025-08-14T20:45:42.7800080Z [380/5156] 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-08-14T20:45:42.8241190Z [381/5156] 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-08-14T20:45:42.8267880Z [382/5156] 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-08-14T20:45:42.8419960Z [383/5156] 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-08-14T20:45:42.8541990Z [384/5156] 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-08-14T20:45:42.8545950Z [385/5156] 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-08-14T20:45:42.8613060Z [386/5156] 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-08-14T20:45:42.8618840Z [387/5156] 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-08-14T20:45:42.9078890Z [388/5156] 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-08-14T20:45:42.9082940Z [389/5156] 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-08-14T20:45:42.9455270Z [390/5156] 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-08-14T20:45:42.9559160Z [391/5156] 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-08-14T20:45:42.9731610Z [392/5156] 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-08-14T20:45:43.0109210Z [393/5156] 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-08-14T20:45:43.0264320Z [394/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-rdsum/gen/qu8-rdsum-7p7x-neon-u64.c.o 2025-08-14T20:45:43.0268430Z [395/5156] 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-08-14T20:45:43.0401780Z [396/5156] 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-08-14T20:45:43.0495590Z [397/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-rsum/gen/qu8-rsum-neon-u16.c.o 2025-08-14T20:45:43.0545080Z [398/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-rsum/gen/qu8-rsum-neon-u64-acc2.c.o 2025-08-14T20:45:43.0955300Z [399/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-rsum/gen/qu8-rsum-neon-u64-acc4.c.o 2025-08-14T20:45:43.1206560Z [400/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-neon-ld64-u8.c.o 2025-08-14T20:45:43.1253250Z [401/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-neon-u8.c.o 2025-08-14T20:45:43.1442700Z [402/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-neon-ld64-u8.c.o 2025-08-14T20:45:43.1469010Z [403/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-neon-ld128-u16.c.o 2025-08-14T20:45:43.1735530Z [404/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-neon-ld128-u16.c.o 2025-08-14T20:45:43.1804280Z [405/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-neon-u8.c.o 2025-08-14T20:45:43.1810720Z [406/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-neon-u16.c.o 2025-08-14T20:45:43.2059210Z [407/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-neon-u16.c.o 2025-08-14T20:45:43.2410280Z [408/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-neon-ld64-u8.c.o 2025-08-14T20:45:43.2416640Z [409/5156] 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-08-14T20:45:43.2601310Z [410/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-neon-ld64-u16.c.o 2025-08-14T20:45:43.2995410Z [411/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-neon-ld128-u16.c.o 2025-08-14T20:45:43.3005120Z [412/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-neon-ld64-u8.c.o 2025-08-14T20:45:43.3309490Z [413/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-neon-ld64-u16.c.o 2025-08-14T20:45:43.3441320Z [414/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-rndnu-neon-ld128-u16.c.o 2025-08-14T20:45:43.3850730Z [415/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-8x8-multi-dec-zip-neon.c.o 2025-08-14T20:45:43.4038160Z [416/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-8x8-multi-mov-zip-neon.c.o 2025-08-14T20:45:43.4132050Z [417/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-rndnu-neon-ld64-u8.c.o 2025-08-14T20:45:43.4223250Z [418/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-rndnu-neon-ld128-u16.c.o 2025-08-14T20:45:43.4457070Z [419/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-maxpool/s8-maxpool-4p3x-minmax-neon-c16.c.o 2025-08-14T20:45:43.4724930Z [420/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-8x8-multi-switch-zip-neon.c.o 2025-08-14T20:45:43.4868310Z [421/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-neon-ld128-u16.c.o 2025-08-14T20:45:43.4921390Z [422/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-8x8-reuse-dec-zip-neon.c.o 2025-08-14T20:45:43.5130310Z [423/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-8x8-reuse-mov-zip-neon.c.o 2025-08-14T20:45:43.5159560Z [424/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-8x8-reuse-multi-zip-neon.c.o 2025-08-14T20:45:43.5329640Z [425/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-rndnu-neon-ld64-u8.c.o 2025-08-14T20:45:43.5451360Z [426/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-8x8-reuse-switch-zip-neon.c.o 2025-08-14T20:45:43.5612880Z [427/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-16x16-reuse-mov-zip-neon.c.o 2025-08-14T20:45:43.6151170Z [428/5156] 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-08-14T20:45:43.6254900Z [429/5156] 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-08-14T20:45:43.6392770Z [430/5156] 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-08-14T20:45:43.6496930Z [431/5156] 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-08-14T20:45:43.6570040Z [432/5156] 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-08-14T20:45:43.6694530Z [433/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-16x16-reuse-switch-zip-neon.c.o 2025-08-14T20:45:43.6755470Z [434/5156] 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-08-14T20:45:43.6958330Z [435/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-maxpool/s8-maxpool-2p2x-minmax-neon-c16.c.o 2025-08-14T20:45:43.6982650Z [436/5156] 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-08-14T20:45:43.7295000Z [437/5156] 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-08-14T20:45:43.7395500Z [438/5156] 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-08-14T20:45:43.7915720Z [439/5156] 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-08-14T20:45:43.8083030Z [440/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-multi-mov-zip-neon.c.o 2025-08-14T20:45:43.8085730Z [441/5156] 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-08-14T20:45:43.8190130Z [442/5156] 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-08-14T20:45:43.8295260Z [443/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-multi-multi-zip-neon.c.o 2025-08-14T20:45:43.8336820Z [444/5156] 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-08-14T20:45:43.8339110Z [445/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-multi-switch-zip-neon.c.o 2025-08-14T20:45:43.8528300Z [446/5156] 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-08-14T20:45:43.9164690Z [447/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-reuse-mov-zip-neon.c.o 2025-08-14T20:45:43.9183320Z [448/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-reuse-switch-zip-neon.c.o 2025-08-14T20:45:43.9296240Z [449/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-reuse-multi-zip-neon.c.o 2025-08-14T20:45:43.9383860Z [450/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-8x8-multi-dec-zip-neon.c.o 2025-08-14T20:45:43.9475520Z [451/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-8x8-multi-switch-zip-neon.c.o 2025-08-14T20:45:43.9829050Z [452/5156] 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-08-14T20:45:43.9925650Z [453/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-8x8-multi-mov-zip-neon.c.o 2025-08-14T20:45:44.0029290Z [454/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-multi-dec-zip-neon.c.o 2025-08-14T20:45:44.0205230Z [455/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-8x8-reuse-switch-zip-neon.c.o 2025-08-14T20:45:44.0209600Z [456/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-reuse-dec-zip-neon.c.o 2025-08-14T20:45:44.0219680Z [457/5156] 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-08-14T20:45:44.0362430Z [458/5156] 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-08-14T20:45:44.0462730Z [459/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-8x8-reuse-mov-zip-neon.c.o 2025-08-14T20:45:44.0944680Z [460/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-8x8-reuse-multi-zip-neon.c.o 2025-08-14T20:45:44.1032880Z [461/5156] 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-08-14T20:45:44.1221450Z [462/5156] 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-08-14T20:45:44.1237270Z [463/5156] 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-08-14T20:45:44.1395470Z [464/5156] 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-08-14T20:45:44.1573180Z [465/5156] 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-08-14T20:45:44.1789810Z [466/5156] 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-08-14T20:45:44.1941990Z [467/5156] 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-08-14T20:45:44.2045890Z [468/5156] 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-08-14T20:45:44.2233380Z [469/5156] 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-08-14T20:45:44.2334450Z [470/5156] 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-08-14T20:45:44.2337630Z [471/5156] 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-08-14T20:45:44.2558330Z [472/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-gio-neon-u2.c.o 2025-08-14T20:45:44.2564570Z [473/5156] 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-08-14T20:45:44.2664240Z [474/5156] 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-08-14T20:45:44.2717120Z [475/5156] 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-08-14T20:45:44.2885970Z [476/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/gen/x32-packx-4x-neon-st4-u4-prfm.c.o 2025-08-14T20:45:44.3442600Z [477/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/gen/x32-packx-4x-neon-st4-u8-prfm.c.o 2025-08-14T20:45:44.3568970Z [478/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/gen/x32-packx-4x-neon-st4-u4.c.o 2025-08-14T20:45:44.3686560Z [479/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/gen/x32-packx-8x-neon-st4-u4-prfm.c.o 2025-08-14T20:45:44.3721540Z [480/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/gen/x32-packx-4x-neon-st4-u8.c.o 2025-08-14T20:45:44.3864780Z [481/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/gen/x32-packx-8x-neon-st4-u8-prfm.c.o 2025-08-14T20:45:44.3905660Z [482/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/gen/x32-packx-8x-neon-st4-u4.c.o 2025-08-14T20:45:44.3907990Z [483/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-multi-mov-zip-neon.c.o 2025-08-14T20:45:44.4100660Z [484/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-multi-dec-zip-neon.c.o 2025-08-14T20:45:44.4110960Z [485/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-multi-multi-zip-neon.c.o 2025-08-14T20:45:44.4869740Z [486/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-reuse-multi-zip-neon.c.o 2025-08-14T20:45:44.4950870Z [487/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-reuse-mov-zip-neon.c.o 2025-08-14T20:45:44.4956810Z [488/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-multi-switch-zip-neon.c.o 2025-08-14T20:45:44.5079910Z [489/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-reuse-dec-zip-neon.c.o 2025-08-14T20:45:44.5208760Z [490/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-multi-switch-zip-neon.c.o 2025-08-14T20:45:44.5322570Z [491/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-multi-multi-zip-neon.c.o 2025-08-14T20:45:44.5378570Z [492/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-multi-dec-zip-neon.c.o 2025-08-14T20:45:44.5576510Z [493/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/gen/x32-packx-8x-neon-st4-u8.c.o 2025-08-14T20:45:44.5602420Z [494/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-reuse-switch-zip-neon.c.o 2025-08-14T20:45:44.5962820Z [495/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-reuse-mov-zip-neon.c.o 2025-08-14T20:45:44.6085450Z [496/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-multi-mov-zip-neon.c.o 2025-08-14T20:45:44.6437080Z [497/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-reuse-multi-zip-neon.c.o 2025-08-14T20:45:44.6480120Z [498/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-multi-multi-zip-neon.c.o 2025-08-14T20:45:44.6544050Z [499/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-reuse-multi-zip-neon.c.o 2025-08-14T20:45:44.6609620Z [500/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-reuse-switch-zip-neon.c.o 2025-08-14T20:45:44.6636380Z [501/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-multi-switch-zip-neon.c.o 2025-08-14T20:45:44.7002800Z [502/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-reuse-mov-zip-neon.c.o 2025-08-14T20:45:44.7086080Z [503/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-reuse-switch-zip-neon.c.o 2025-08-14T20:45:44.7407750Z [504/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neonfp16-u8.c.o 2025-08-14T20:45:44.7523810Z [505/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-neonfp16-u8.c.o 2025-08-14T20:45:44.7705050Z [506/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-1x4c8-minmax-neonfma-shland.c.o 2025-08-14T20:45:44.7852930Z [507/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-1x4c8-minmax-neonfma-zip.c.o 2025-08-14T20:45:44.7872240Z [508/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-2x4c8-minmax-neonfma-zip.c.o 2025-08-14T20:45:44.7880130Z [509/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-2x4c8-minmax-neonfma-shland.c.o 2025-08-14T20:45:44.8552820Z [510/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-multi-mov-zip-neon.c.o 2025-08-14T20:45:44.8570580Z [511/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-3x4c8-minmax-neonfma-zip.c.o 2025-08-14T20:45:44.8607430Z [512/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-3x4c8-minmax-neonfma-shland.c.o 2025-08-14T20:45:44.8722520Z [513/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-4x4c8-minmax-neonfma-zip.c.o 2025-08-14T20:45:44.8856030Z [514/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-4x4c8-minmax-neonfma-shland.c.o 2025-08-14T20:45:44.9180810Z [515/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p4c-minmax-neonfma-acc2.c.o 2025-08-14T20:45:44.9192800Z [516/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-5x4c8-minmax-neonfma-shland.c.o 2025-08-14T20:45:44.9230560Z [517/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-5x4c8-minmax-neonfma-zip.c.o 2025-08-14T20:45:44.9311740Z [518/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p4c-minmax-neonfma.c.o 2025-08-14T20:45:44.9353050Z [519/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l4c4s4r-minmax-neonfma-acc2.c.o 2025-08-14T20:45:44.9855200Z [520/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-neonfma-acc2.c.o 2025-08-14T20:45:45.0007080Z [521/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-neonfma.c.o 2025-08-14T20:45:45.0041080Z [522/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p4c-minmax-neonfma-acc2.c.o 2025-08-14T20:45:45.0105010Z [523/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p8c-minmax-neonfma-acc2.c.o 2025-08-14T20:45:45.0628270Z [524/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l4c4s4r-minmax-neonfma.c.o 2025-08-14T20:45:45.0661480Z [525/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l8c4s4r-minmax-neonfma.c.o 2025-08-14T20:45:45.0784060Z [526/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p8c-minmax-neonfma-acc2.c.o 2025-08-14T20:45:45.0890180Z [527/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p16c-minmax-neonfma-acc2.c.o 2025-08-14T20:45:45.0901450Z [528/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p16c-minmax-neonfma.c.o 2025-08-14T20:45:45.1292370Z [529/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l8c4s4r-minmax-neonfma-acc2.c.o 2025-08-14T20:45:45.1386350Z [530/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l4c4s4r-minmax-neonfma-acc2.c.o 2025-08-14T20:45:45.1403010Z [531/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l8c4s4r-minmax-neonfma.c.o 2025-08-14T20:45:45.1731040Z [532/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l4c4s4r-minmax-neonfma.c.o 2025-08-14T20:45:45.2007970Z [533/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l4c4s4r-minmax-neonfma-acc2.c.o 2025-08-14T20:45:45.2112640Z [534/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l8c4s4r-minmax-neonfma-acc2.c.o 2025-08-14T20:45:45.2119890Z [535/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l4c4s4r-minmax-neonfma.c.o 2025-08-14T20:45:45.2129090Z [536/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l8c4s4r-minmax-neonfma.c.o 2025-08-14T20:45:45.2326250Z [537/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p4c-minmax-neonfma.c.o 2025-08-14T20:45:45.2492450Z [538/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p4c-minmax-neonfma-acc2.c.o 2025-08-14T20:45:45.2684450Z [539/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p8c-minmax-neonfma-acc2.c.o 2025-08-14T20:45:45.2795980Z [540/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p16c-minmax-neonfma-acc2.c.o 2025-08-14T20:45:45.2951440Z [541/5156] 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-08-14T20:45:45.2999170Z [542/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p4c-minmax-neonfma.c.o 2025-08-14T20:45:45.3560880Z [543/5156] 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-08-14T20:45:45.3630160Z [544/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p4c-minmax-neonfma-acc2.c.o 2025-08-14T20:45:45.3657810Z [545/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p4c-minmax-neonfma.c.o 2025-08-14T20:45:45.3738300Z [546/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p16c-minmax-neonfma.c.o 2025-08-14T20:45:45.3750580Z [547/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-neonfma.c.o 2025-08-14T20:45:45.3804440Z [548/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8-minmax-neonfma-dup-ld64.c.o 2025-08-14T20:45:45.4202980Z [549/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p16c-minmax-neonfma.c.o 2025-08-14T20:45:45.4408620Z [550/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p16c-minmax-neonfma-acc2.c.o 2025-08-14T20:45:45.4498240Z [551/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-neonfma-dup-ld64.c.o 2025-08-14T20:45:45.4663420Z [552/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-neonfma-dup-ld64.c.o 2025-08-14T20:45:45.5023470Z [553/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-neonfma-dup-ld128.c.o 2025-08-14T20:45:45.5215900Z [554/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-neonfma-dup-ld64.c.o 2025-08-14T20:45:45.5247610Z [555/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-neonfma-dup-ld64.c.o 2025-08-14T20:45:45.5688910Z [556/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-neonfma-dup-ld128.c.o 2025-08-14T20:45:45.5699270Z [557/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8s4-minmax-neonfma.c.o 2025-08-14T20:45:45.5847910Z [558/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-neonfma-dup-ld128.c.o 2025-08-14T20:45:45.5922310Z [559/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-neonfma-dup-ld64.c.o 2025-08-14T20:45:45.6116190Z [560/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-neonfma-dup-ld128.c.o 2025-08-14T20:45:45.6147860Z [561/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8s4-minmax-neonfma.c.o 2025-08-14T20:45:45.6557960Z [562/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-8x8s4-minmax-neonfma.c.o 2025-08-14T20:45:45.6716400Z [563/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8s4-minmax-neonfma.c.o 2025-08-14T20:45:45.6789080Z [564/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-neonfma-p4.c.o 2025-08-14T20:45:45.6909570Z [565/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear/gen/f32-ibilinear-neonfma-c4.c.o 2025-08-14T20:45:45.6953840Z [566/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-neonfma-p16.c.o 2025-08-14T20:45:45.7227870Z [567/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-neonfma-dup-ld64.c.o 2025-08-14T20:45:45.7562070Z [568/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-8x8s4-minmax-neonfma.c.o 2025-08-14T20:45:45.7668720Z [569/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-neonfma-dup-ld64.c.o 2025-08-14T20:45:45.7978260Z [570/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-neonfma-dup-ld128.c.o 2025-08-14T20:45:45.7983530Z [571/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-neonfma-dup-ld64.c.o 2025-08-14T20:45:45.8031150Z [572/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-8x8s4-minmax-neonfma.c.o 2025-08-14T20:45:45.8130890Z [573/5156] 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-08-14T20:45:45.8494280Z [574/5156] 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-08-14T20:45:45.8546990Z [575/5156] 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-08-14T20:45:45.8727460Z [576/5156] 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-08-14T20:45:45.8808860Z [577/5156] 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-08-14T20:45:45.8809900Z [578/5156] 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-08-14T20:45:45.9093930Z [579/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-lut64-p2-u4.c.o 2025-08-14T20:45:45.9319390Z [580/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x8s4-minmax-neonfma.c.o 2025-08-14T20:45:45.9386320Z [581/5156] 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-08-14T20:45:45.9628770Z [582/5156] 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-08-14T20:45:45.9782430Z [583/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-6x8s4-minmax-neonfma.c.o 2025-08-14T20:45:45.9912530Z [584/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-p5-u8-acc2.c.o 2025-08-14T20:45:46.0028930Z [585/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-p5-u4.c.o 2025-08-14T20:45:46.0033370Z [586/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8s4-minmax-neonfma.c.o 2025-08-14T20:45:46.0470950Z [587/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-neonfma-x2.c.o 2025-08-14T20:45:46.0475780Z [588/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-p5-u16-acc2.c.o 2025-08-14T20:45:46.0482590Z [589/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-neonfma-pipelined.c.o 2025-08-14T20:45:46.0710280Z [590/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-neonfma.c.o 2025-08-14T20:45:46.0899560Z [591/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-p5-u16-acc4.c.o 2025-08-14T20:45:46.1026610Z [592/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-neonfma-x2.c.o 2025-08-14T20:45:46.1030760Z [593/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-neonfma.c.o 2025-08-14T20:45:46.1103260Z [594/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-neonfma-pipelined.c.o 2025-08-14T20:45:46.1330030Z [595/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-12x1-minmax-neonfma.c.o 2025-08-14T20:45:46.1993550Z [596/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x1-minmax-neonfma.c.o 2025-08-14T20:45:46.2115750Z [597/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-32x1-minmax-neonfma-x2.c.o 2025-08-14T20:45:46.2118220Z [598/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x1-minmax-neonfma-pipelined.c.o 2025-08-14T20:45:46.2122750Z [599/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x1-minmax-neonfma-x2.c.o 2025-08-14T20:45:46.2218130Z [600/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-neonfma-dup-ld128.c.o 2025-08-14T20:45:46.2391380Z [601/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-lut16-p3-u12.c.o 2025-08-14T20:45:46.2401120Z [602/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-lut16-p3-u8.c.o 2025-08-14T20:45:46.2422080Z [603/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-32x1-minmax-neonfma.c.o 2025-08-14T20:45:46.2435430Z [604/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-lut16-p3-u4.c.o 2025-08-14T20:45:46.2480050Z [605/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c8-minmax-neonfma-2x.c.o 2025-08-14T20:45:46.3279550Z [606/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-p6-u4.c.o 2025-08-14T20:45:46.3380070Z [607/5156] 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-08-14T20:45:46.3484520Z [608/5156] 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-08-14T20:45:46.3571770Z [609/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-p6-u16.c.o 2025-08-14T20:45:46.3670230Z [610/5156] 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-08-14T20:45:46.3816610Z [611/5156] 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-08-14T20:45:46.3972730Z [612/5156] 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-08-14T20:45:46.3997910Z [613/5156] 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-08-14T20:45:46.4118100Z [614/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-p6-u12.c.o 2025-08-14T20:45:46.4126700Z [615/5156] 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-08-14T20:45:46.4811330Z [616/5156] 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-08-14T20:45:46.4814220Z [617/5156] 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-08-14T20:45:46.4818030Z [618/5156] 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-08-14T20:45:46.4886540Z [619/5156] 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-08-14T20:45:46.5023110Z [620/5156] 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-08-14T20:45:46.5043920Z [621/5156] 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-08-14T20:45:46.5085590Z [622/5156] 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-08-14T20:45:46.5221070Z [623/5156] 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-08-14T20:45:46.5408860Z [624/5156] 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-08-14T20:45:46.5414680Z [625/5156] 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-08-14T20:45:46.6157650Z [626/5156] 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-08-14T20:45:46.6272260Z [627/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr1recps1fma-u4.c.o 2025-08-14T20:45:46.6286230Z [628/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr1recps1fma-u8.c.o 2025-08-14T20:45:46.6334980Z [629/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr1recps1fma-u16.c.o 2025-08-14T20:45:46.6391400Z [630/5156] 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-08-14T20:45:46.6476280Z [631/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr1recps1fma-u12.c.o 2025-08-14T20:45:46.6546200Z [632/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2fma-u4.c.o 2025-08-14T20:45:46.6553300Z [633/5156] 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-08-14T20:45:46.6766130Z [634/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2fma-u12.c.o 2025-08-14T20:45:46.7393770Z [635/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2fma-u16.c.o 2025-08-14T20:45:46.7544170Z [636/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2recps-u8.c.o 2025-08-14T20:45:46.7590000Z [637/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2fma-u8.c.o 2025-08-14T20:45:46.7599430Z [638/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2recps-u4.c.o 2025-08-14T20:45:46.7669760Z [639/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2recps-u12.c.o 2025-08-14T20:45:46.7801030Z [640/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-neonv8-u8.c.o 2025-08-14T20:45:46.7818270Z [641/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndne-neonv8-u4.c.o 2025-08-14T20:45:46.7947090Z [642/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-neonv8-u24.c.o 2025-08-14T20:45:46.8050510Z [643/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-neonv8-u16.c.o 2025-08-14T20:45:46.8298830Z [644/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2recps-u16.c.o 2025-08-14T20:45:46.8527310Z [645/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-neonv8-u8.c.o 2025-08-14T20:45:46.8791290Z [646/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l16c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-08-14T20:45:46.8993880Z [647/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-neonv8-u16.c.o 2025-08-14T20:45:46.9008000Z [648/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndz-neonv8-u4.c.o 2025-08-14T20:45:46.9165730Z [649/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-neonv8-u24.c.o 2025-08-14T20:45:46.9214660Z [650/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l8c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-08-14T20:45:46.9450610Z [651/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndd-neonv8-u4.c.o 2025-08-14T20:45:46.9487800Z [652/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndu-neonv8-u4.c.o 2025-08-14T20:45:46.9502100Z [653/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l32c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-08-14T20:45:46.9704660Z [654/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l8c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-08-14T20:45:47.0127620Z [655/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l32c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-08-14T20:45:47.0204980Z [656/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l16c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-08-14T20:45:47.0349910Z [657/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l16c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-08-14T20:45:47.0478560Z [658/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l32c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-08-14T20:45:47.0679280Z [659/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-fp32-neonv8-mul16.c.o 2025-08-14T20:45:47.0742950Z [660/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l8c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-08-14T20:45:47.0876810Z [661/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-neonv8-mul16.c.o 2025-08-14T20:45:47.0922460Z [662/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p32c-minmax-fp32-neonv8-mul16.c.o 2025-08-14T20:45:47.1209810Z [663/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-neonv8-mul16.c.o 2025-08-14T20:45:47.1460770Z [664/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-fp32-neonv8-mul16.c.o 2025-08-14T20:45:47.1563950Z [665/5156] 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-08-14T20:45:47.1632260Z [666/5156] 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-08-14T20:45:47.1715350Z [667/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p32c-minmax-fp32-neonv8-mul16.c.o 2025-08-14T20:45:47.1794820Z [668/5156] 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-08-14T20:45:47.2048500Z [669/5156] 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-08-14T20:45:47.2219950Z [670/5156] 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-08-14T20:45:47.2224400Z [671/5156] 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-08-14T20:45:47.2234720Z [672/5156] 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-08-14T20:45:47.2910920Z [673/5156] 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-08-14T20:45:47.2965630Z [674/5156] 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-08-14T20:45:47.2996060Z [675/5156] 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-08-14T20:45:47.3023830Z [676/5156] 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-08-14T20:45:47.3186800Z [677/5156] 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-08-14T20:45:47.3225630Z [678/5156] 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-08-14T20:45:47.3403800Z [679/5156] 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-08-14T20:45:47.3686670Z [680/5156] 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-08-14T20:45:47.3787330Z [681/5156] 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-08-14T20:45:47.3980780Z [682/5156] 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-08-14T20:45:47.4179000Z [683/5156] 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-08-14T20:45:47.4324080Z [684/5156] 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-08-14T20:45:47.4330910Z [685/5156] 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-08-14T20:45:47.4380010Z [686/5156] 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-08-14T20:45:47.4567570Z [687/5156] 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-08-14T20:45:47.4767300Z [688/5156] 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-08-14T20:45:47.5137300Z [689/5156] 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-08-14T20:45:47.5227610Z [690/5156] 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-08-14T20:45:47.5395680Z [691/5156] 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-08-14T20:45:47.5672840Z [692/5156] 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-08-14T20:45:47.5773280Z [693/5156] 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-08-14T20:45:47.5887230Z [694/5156] 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-08-14T20:45:47.5921760Z [695/5156] 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-08-14T20:45:47.5966560Z [696/5156] 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-08-14T20:45:47.6050440Z [697/5156] 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-08-14T20:45:47.6234950Z [698/5156] 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-08-14T20:45:47.6443600Z [699/5156] 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-08-14T20:45:47.6524790Z [700/5156] 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-08-14T20:45:47.6643340Z [701/5156] 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-08-14T20:45:47.6957330Z [702/5156] 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-08-14T20:45:47.7196700Z [703/5156] 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-08-14T20:45:47.7270490Z [704/5156] 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-08-14T20:45:47.7441680Z [705/5156] 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-08-14T20:45:47.7454360Z [706/5156] 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-08-14T20:45:47.7601900Z [707/5156] 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-08-14T20:45:47.7606270Z [708/5156] 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-08-14T20:45:47.7909140Z [709/5156] 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-08-14T20:45:47.8345070Z [710/5156] 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-08-14T20:45:47.8541910Z [711/5156] 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-08-14T20:45:47.8544590Z [712/5156] 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-08-14T20:45:47.9076700Z [713/5156] 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-08-14T20:45:47.9150130Z [714/5156] 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-08-14T20:45:47.9154730Z [715/5156] 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-08-14T20:45:47.9172880Z [716/5156] 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-08-14T20:45:47.9197210Z [717/5156] 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-08-14T20:45:47.9350460Z [718/5156] 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-08-14T20:45:47.9373690Z [719/5156] 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-08-14T20:45:47.9694900Z [720/5156] 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-08-14T20:45:48.0181650Z [721/5156] 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-08-14T20:45:48.0326520Z [722/5156] 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-08-14T20:45:48.0539650Z [723/5156] 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-08-14T20:45:48.0630140Z [724/5156] 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-08-14T20:45:48.0737170Z [725/5156] 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-08-14T20:45:48.0741360Z [726/5156] 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-08-14T20:45:48.0762010Z [727/5156] 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-08-14T20:45:48.0927790Z [728/5156] 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-08-14T20:45:48.1297770Z [729/5156] 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-08-14T20:45:48.1457770Z [730/5156] 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-08-14T20:45:48.1485310Z [731/5156] 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-08-14T20:45:48.1664630Z [732/5156] 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-08-14T20:45:48.2113260Z [733/5156] 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-08-14T20:45:48.2318650Z [734/5156] 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-08-14T20:45:48.2421230Z [735/5156] 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-08-14T20:45:48.2434630Z [736/5156] 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-08-14T20:45:48.2458110Z [737/5156] 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-08-14T20:45:48.2802500Z [738/5156] 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-08-14T20:45:48.2862160Z [739/5156] 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-08-14T20:45:48.3005130Z [740/5156] 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-08-14T20:45:48.3033680Z [741/5156] 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-08-14T20:45:48.3318410Z [742/5156] 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-08-14T20:45:48.3564580Z [743/5156] 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-08-14T20:45:48.3585720Z [744/5156] 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-08-14T20:45:48.3636420Z [745/5156] 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-08-14T20:45:48.3768160Z [746/5156] 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-08-14T20:45:48.3917960Z [747/5156] 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-08-14T20:45:48.4434690Z [748/5156] 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-08-14T20:45:48.4461420Z [749/5156] 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-08-14T20:45:48.4532040Z [750/5156] 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-08-14T20:45:48.4651560Z [751/5156] 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-08-14T20:45:48.4704240Z [752/5156] 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-08-14T20:45:48.5090210Z [753/5156] 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-08-14T20:45:48.5107580Z [754/5156] 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-08-14T20:45:48.5317790Z [755/5156] 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-08-14T20:45:48.5342580Z [756/5156] 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-08-14T20:45:48.5349510Z [757/5156] 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-08-14T20:45:48.6029200Z [758/5156] 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-08-14T20:45:48.6071250Z [759/5156] 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-08-14T20:45:48.6107680Z [760/5156] 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-08-14T20:45:48.6116940Z [761/5156] 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-08-14T20:45:48.6491990Z [762/5156] 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-08-14T20:45:48.6564940Z [763/5156] 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-08-14T20:45:48.6590240Z [764/5156] 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-08-14T20:45:48.6800760Z [765/5156] 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-08-14T20:45:48.6873730Z [766/5156] 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-08-14T20:45:48.6887560Z [767/5156] 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-08-14T20:45:48.7428740Z [768/5156] 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-08-14T20:45:48.7480050Z [769/5156] 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-08-14T20:45:48.7494590Z [770/5156] 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-08-14T20:45:48.7681470Z [771/5156] 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-08-14T20:45:48.7996270Z [772/5156] 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-08-14T20:45:48.8271960Z [773/5156] 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-08-14T20:45:48.8301240Z [774/5156] 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-08-14T20:45:48.8372620Z [775/5156] 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-08-14T20:45:48.8499110Z [776/5156] 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-08-14T20:45:48.8667240Z [777/5156] 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-08-14T20:45:48.8699270Z [778/5156] 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-08-14T20:45:48.8914030Z [779/5156] 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-08-14T20:45:48.9013460Z [780/5156] 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-08-14T20:45:48.9043520Z [781/5156] 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-08-14T20:45:48.9232330Z [782/5156] 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-08-14T20:45:48.9622060Z [783/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-neonv8-ld64-u8.c.o 2025-08-14T20:45:48.9966130Z [784/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l8c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-08-14T20:45:49.0068260Z [785/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-neonv8-ld64-u16.c.o 2025-08-14T20:45:49.0070910Z [786/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-neonv8-ld128-u16.c.o 2025-08-14T20:45:49.0077800Z [787/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l16c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-08-14T20:45:49.0287220Z [788/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-neonv8-ld64-u16.c.o 2025-08-14T20:45:49.0294230Z [789/5156] 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-08-14T20:45:49.0351700Z [790/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-neonv8-ld128-u16.c.o 2025-08-14T20:45:49.0549830Z [791/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l32c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-08-14T20:45:49.0819060Z [792/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-neonv8-ld64-u8.c.o 2025-08-14T20:45:49.0823470Z [793/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l8c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-08-14T20:45:49.1367520Z [794/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l32c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-08-14T20:45:49.1378160Z [795/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l8c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-08-14T20:45:49.1547070Z [796/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l16c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-08-14T20:45:49.1616880Z [797/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l16c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-08-14T20:45:49.1776970Z [798/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-fp32-neonv8-mul16.c.o 2025-08-14T20:45:49.1790570Z [799/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l32c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-08-14T20:45:49.1794310Z [800/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p8c-minmax-fp32-neonv8-mul16.c.o 2025-08-14T20:45:49.2299130Z [801/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-fp32-neonv8-mul16.c.o 2025-08-14T20:45:49.2513560Z [802/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p32c-minmax-fp32-neonv8-mul16.c.o 2025-08-14T20:45:49.2607720Z [803/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p32c-minmax-fp32-neonv8-mul16.c.o 2025-08-14T20:45:49.2672510Z [804/5156] 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-08-14T20:45:49.2871390Z [805/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-fp32-neonv8-mul16.c.o 2025-08-14T20:45:49.3041620Z [806/5156] 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-08-14T20:45:49.3043900Z [807/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-neonv8-ld64-u8.c.o 2025-08-14T20:45:49.3046490Z [808/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-neonv8-ld64-u16.c.o 2025-08-14T20:45:49.3303400Z [809/5156] 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-08-14T20:45:49.3470790Z [810/5156] 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-08-14T20:45:49.3743220Z [811/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-neonv8-ld64-u8.c.o 2025-08-14T20:45:49.3783350Z [812/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-neonv8-ld128-u16.c.o 2025-08-14T20:45:49.3927150Z [813/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-neonv8-ld128-u16.c.o 2025-08-14T20:45:49.4782180Z [814/5156] 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-08-14T20:45:49.4784410Z [815/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-neonv8-ld64-u16.c.o 2025-08-14T20:45:49.4788070Z [816/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-aarch64-neon-u4.c.o 2025-08-14T20:45:49.4791750Z [817/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-aarch64-neon-u4.c.o 2025-08-14T20:45:49.5039830Z [818/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-aarch64-neon-sqrt-u16.c.o 2025-08-14T20:45:49.5051640Z [819/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-aarch64-neon-u4.c.o 2025-08-14T20:45:49.5096790Z [820/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-aarch64-neon-sqrt-u8.c.o 2025-08-14T20:45:49.5346240Z [821/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-aarch64-neon-tbx128x4-u16.c.o 2025-08-14T20:45:49.5418470Z [822/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-aarch64-neon-tbx128x4-u32.c.o 2025-08-14T20:45:49.5591470Z [823/5156] 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-08-14T20:45:49.6078040Z [824/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-aarch64-neon-tbx128x4-u48.c.o 2025-08-14T20:45:49.6100150Z [825/5156] 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-08-14T20:45:49.6288200Z [826/5156] 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-08-14T20:45:49.6440770Z [827/5156] 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-08-14T20:45:49.6517220Z [828/5156] 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-08-14T20:45:49.6621510Z [829/5156] 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-08-14T20:45:49.6834900Z [830/5156] 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-08-14T20:45:49.6900730Z [831/5156] 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-08-14T20:45:49.7000130Z [832/5156] 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-08-14T20:45:49.7083890Z [833/5156] 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-08-14T20:45:49.7259070Z [834/5156] 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-08-14T20:45:49.7265760Z [835/5156] 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-08-14T20:45:49.7615760Z [836/5156] 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-08-14T20:45:49.7802560Z [837/5156] 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-08-14T20:45:49.7970560Z [838/5156] 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-08-14T20:45:49.8208310Z [839/5156] 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-08-14T20:45:49.8440500Z [840/5156] 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-08-14T20:45:49.8581080Z [841/5156] 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-08-14T20:45:49.8584780Z [842/5156] 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-08-14T20:45:49.8732070Z [843/5156] 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-08-14T20:45:49.8744440Z [844/5156] 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-08-14T20:45:49.8760690Z [845/5156] 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-08-14T20:45:49.8859560Z [846/5156] 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-08-14T20:45:49.9456410Z [847/5156] 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-08-14T20:45:49.9484490Z [848/5156] 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-08-14T20:45:49.9497690Z [849/5156] 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-08-14T20:45:49.9767170Z [850/5156] 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-08-14T20:45:49.9837000Z [851/5156] 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-08-14T20:45:49.9921210Z [852/5156] 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-08-14T20:45:50.0082410Z [853/5156] 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-08-14T20:45:50.0251950Z [854/5156] 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-08-14T20:45:50.0253800Z [855/5156] 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-08-14T20:45:50.0698690Z [856/5156] 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-08-14T20:45:50.0985850Z [857/5156] 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-08-14T20:45:50.1003630Z [858/5156] 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-08-14T20:45:50.1061440Z [859/5156] 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-08-14T20:45:50.1187400Z [860/5156] 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-08-14T20:45:50.1190490Z [861/5156] 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-08-14T20:45:50.1206950Z [862/5156] 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-08-14T20:45:50.1447150Z [863/5156] 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-08-14T20:45:50.1589930Z [864/5156] 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-08-14T20:45:50.2229930Z [865/5156] 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-08-14T20:45:50.2436450Z [866/5156] 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-08-14T20:45:50.2452930Z [867/5156] 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-08-14T20:45:50.2562320Z [868/5156] 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-08-14T20:45:50.2569280Z [869/5156] 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-08-14T20:45:50.2572190Z [870/5156] 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-08-14T20:45:50.2574330Z [871/5156] 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-08-14T20:45:50.2696060Z [872/5156] 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-08-14T20:45:50.2974540Z [873/5156] 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-08-14T20:45:50.3443320Z [874/5156] 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-08-14T20:45:50.3784940Z [875/5156] 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-08-14T20:45:50.3901950Z [876/5156] 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-08-14T20:45:50.3986550Z [877/5156] 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-08-14T20:45:50.4053500Z [878/5156] 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-08-14T20:45:50.4072750Z [879/5156] 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-08-14T20:45:50.4090560Z [880/5156] 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-08-14T20:45:50.4315650Z [881/5156] 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-08-14T20:45:50.4340870Z [882/5156] 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-08-14T20:45:50.4707970Z [883/5156] 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-08-14T20:45:50.5008550Z [884/5156] 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-08-14T20:45:50.5345740Z [885/5156] 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-08-14T20:45:50.5400660Z [886/5156] 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-08-14T20:45:50.5447750Z [887/5156] 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-08-14T20:45:50.5469130Z [888/5156] 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-08-14T20:45:50.5524510Z [889/5156] 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-08-14T20:45:50.5534780Z [890/5156] 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-08-14T20:45:50.5649050Z [891/5156] 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-08-14T20:45:50.5776860Z [892/5156] 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-08-14T20:45:50.6028560Z [893/5156] 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-08-14T20:45:50.6307990Z [894/5156] 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-08-14T20:45:50.6762690Z [895/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-8x8-minmax-aarch64-neonfma-prfm.c.o 2025-08-14T20:45:50.6863300Z [896/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x16-minmax-aarch64-neonfma-prfm.c.o 2025-08-14T20:45:50.6894740Z [897/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x8-minmax-aarch64-neonfma-prfm.c.o 2025-08-14T20:45:50.6922450Z [898/5156] 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-08-14T20:45:50.6942890Z [899/5156] 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-08-14T20:45:50.7100790Z [900/5156] 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-08-14T20:45:50.7118140Z [901/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x8-minmax-aarch64-neonfma.c.o 2025-08-14T20:45:50.7250910Z [902/5156] 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-08-14T20:45:50.7547280Z [903/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x16-minmax-aarch64-neonfma.c.o 2025-08-14T20:45:50.8119030Z [904/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-8x8-minmax-aarch64-neonfma.c.o 2025-08-14T20:45:50.8171490Z [905/5156] 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-08-14T20:45:50.8280500Z [906/5156] 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-08-14T20:45:50.8337520Z [907/5156] 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-08-14T20:45:50.8396240Z [908/5156] 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-08-14T20:45:50.8540580Z [909/5156] 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-08-14T20:45:50.8572980Z [910/5156] 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-08-14T20:45:50.8679740Z [911/5156] 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-08-14T20:45:50.8827880Z [912/5156] 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-08-14T20:45:50.8898860Z [913/5156] 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-08-14T20:45:50.9641930Z [914/5156] 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-08-14T20:45:50.9676040Z [915/5156] 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-08-14T20:45:50.9698610Z [916/5156] 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-08-14T20:45:50.9839410Z [917/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x4-minmax-aarch64-neonfma.c.o 2025-08-14T20:45:50.9841940Z [918/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x2-minmax-aarch64-neonfma.c.o 2025-08-14T20:45:50.9852680Z [919/5156] 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-08-14T20:45:50.9888110Z [920/5156] 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-08-14T20:45:51.0024230Z [921/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x2-minmax-aarch64-neonfma.c.o 2025-08-14T20:45:51.0253200Z [922/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x4-minmax-aarch64-neonfma.c.o 2025-08-14T20:45:51.0259080Z [923/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-12x2-minmax-aarch64-neonfma.c.o 2025-08-14T20:45:51.1038480Z [924/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x2-minmax-aarch64-neonfma.c.o 2025-08-14T20:45:51.1049000Z [925/5156] 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-08-14T20:45:51.1061420Z [926/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-12x4-minmax-aarch64-neonfma.c.o 2025-08-14T20:45:51.1367550Z [927/5156] 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-08-14T20:45:51.1509920Z [928/5156] 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-08-14T20:45:51.1527330Z [929/5156] 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-08-14T20:45:51.1569310Z [930/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x4-minmax-aarch64-neonfma.c.o 2025-08-14T20:45:51.1604360Z [931/5156] 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-08-14T20:45:51.1793290Z [932/5156] 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-08-14T20:45:51.1876930Z [933/5156] 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-08-14T20:45:51.2182930Z [934/5156] 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-08-14T20:45:51.2259400Z [935/5156] 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-08-14T20:45:51.2454580Z [936/5156] 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-08-14T20:45:51.2508890Z [937/5156] 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-08-14T20:45:51.2969860Z [938/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vaddc-fp16arith-u1.c.o 2025-08-14T20:45:51.3039790Z [939/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vadd-fp16arith-u4.c.o 2025-08-14T20:45:51.3141820Z [940/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vadd-fp16arith-u2.c.o 2025-08-14T20:45:51.3204110Z [941/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vadd-fp16arith-u1.c.o 2025-08-14T20:45:51.3244480Z [942/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vaddc-fp16arith-u2.c.o 2025-08-14T20:45:51.3491910Z [943/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vdiv-fp16arith-u1.c.o 2025-08-14T20:45:51.3557470Z [944/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vaddc-fp16arith-u4.c.o 2025-08-14T20:45:51.3732740Z [945/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vdiv-fp16arith-u4.c.o 2025-08-14T20:45:51.3780180Z [946/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-8x16-minmax-neonfp16arith-ld64.c.o 2025-08-14T20:45:51.4272460Z [947/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-4x16-minmax-neonfp16arith-ld64.c.o 2025-08-14T20:45:51.4280960Z [948/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vdivc-fp16arith-u1.c.o 2025-08-14T20:45:51.4472650Z [949/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vdivc-fp16arith-u4.c.o 2025-08-14T20:45:51.4502780Z [950/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmax-fp16arith-u1.c.o 2025-08-14T20:45:51.4503580Z [951/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmax-fp16arith-u2.c.o 2025-08-14T20:45:51.4512010Z [952/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmax-fp16arith-u4.c.o 2025-08-14T20:45:51.4791990Z [953/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmaxc-fp16arith-u2.c.o 2025-08-14T20:45:51.4807790Z [954/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmaxc-fp16arith-u1.c.o 2025-08-14T20:45:51.5046080Z [955/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmin-fp16arith-u1.c.o 2025-08-14T20:45:51.5312660Z [956/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmaxc-fp16arith-u4.c.o 2025-08-14T20:45:51.5698680Z [957/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vminc-fp16arith-u4.c.o 2025-08-14T20:45:51.5781910Z [958/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmin-fp16arith-u2.c.o 2025-08-14T20:45:51.5889010Z [959/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmin-fp16arith-u4.c.o 2025-08-14T20:45:51.5922200Z [960/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmul-fp16arith-u1.c.o 2025-08-14T20:45:51.6052060Z [961/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vminc-fp16arith-u2.c.o 2025-08-14T20:45:51.6165120Z [962/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vminc-fp16arith-u1.c.o 2025-08-14T20:45:51.6273110Z [963/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmul-fp16arith-u2.c.o 2025-08-14T20:45:51.6342780Z [964/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmulc-fp16arith-u1.c.o 2025-08-14T20:45:51.6575190Z [965/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmul-fp16arith-u4.c.o 2025-08-14T20:45:51.6671280Z [966/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmulc-fp16arith-u2.c.o 2025-08-14T20:45:51.6903380Z [967/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmulc-fp16arith-u4.c.o 2025-08-14T20:45:51.7037790Z [968/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrdivc-fp16arith-u1.c.o 2025-08-14T20:45:51.7097980Z [969/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrdivc-fp16arith-u4.c.o 2025-08-14T20:45:51.7237610Z [970/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrsubc-fp16arith-u1.c.o 2025-08-14T20:45:51.7415620Z [971/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrsubc-fp16arith-u2.c.o 2025-08-14T20:45:51.7419010Z [972/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrsubc-fp16arith-u4.c.o 2025-08-14T20:45:51.7685250Z [973/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiff-fp16arith-u2.c.o 2025-08-14T20:45:51.7887640Z [974/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiff-fp16arith-u1.c.o 2025-08-14T20:45:51.8061600Z [975/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiff-fp16arith-u4.c.o 2025-08-14T20:45:51.8123350Z [976/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiffc-fp16arith-u1.c.o 2025-08-14T20:45:51.8346630Z [977/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiffc-fp16arith-u4.c.o 2025-08-14T20:45:51.8348830Z [978/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiffc-fp16arith-u2.c.o 2025-08-14T20:45:51.8592900Z [979/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsub-fp16arith-u2.c.o 2025-08-14T20:45:51.8720400Z [980/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsub-fp16arith-u1.c.o 2025-08-14T20:45:51.8767920Z [981/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsub-fp16arith-u4.c.o 2025-08-14T20:45:51.8877530Z [982/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-4x8-minmax-neonfp16arith-ld64.c.o 2025-08-14T20:45:51.9038430Z [983/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsubc-fp16arith-u1.c.o 2025-08-14T20:45:51.9351250Z [984/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsubc-fp16arith-u4.c.o 2025-08-14T20:45:51.9417480Z [985/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsubc-fp16arith-u2.c.o 2025-08-14T20:45:51.9612640Z [986/5156] 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-08-14T20:45:51.9655210Z [987/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsqrt/gen/f16-vsqrt-fp16arith-sqrt-u1.c.o 2025-08-14T20:45:51.9782280Z [988/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsqrt/gen/f16-vsqrt-fp16arith-sqrt-u2.c.o 2025-08-14T20:45:51.9976810Z [989/5156] 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-08-14T20:45:52.0075930Z [990/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsqrt/gen/f16-vsqrt-fp16arith-sqrt-u4.c.o 2025-08-14T20:45:52.0166220Z [991/5156] 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-08-14T20:45:52.0387670Z [992/5156] 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-08-14T20:45:52.0605270Z [993/5156] 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-08-14T20:45:52.0953670Z [994/5156] 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-08-14T20:45:52.1159270Z [995/5156] 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-08-14T20:45:52.1207810Z [996/5156] 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-08-14T20:45:52.1393470Z [997/5156] 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-08-14T20:45:52.1406360Z [998/5156] 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-08-14T20:45:52.1664150Z [999/5156] 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-08-14T20:45:52.1845560Z [1000/5156] 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-08-14T20:45:52.1865980Z [1001/5156] 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-08-14T20:45:52.1916920Z [1002/5156] 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-08-14T20:45:52.1924180Z [1003/5156] 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-08-14T20:45:52.2277710Z [1004/5156] 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-08-14T20:45:52.2739700Z [1005/5156] 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-08-14T20:45:52.2766110Z [1006/5156] 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-08-14T20:45:52.2901780Z [1007/5156] 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-08-14T20:45:52.3200350Z [1008/5156] 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-08-14T20:45:52.3203000Z [1009/5156] 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-08-14T20:45:52.3326120Z [1010/5156] 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-08-14T20:45:52.3401870Z [1011/5156] 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-08-14T20:45:52.3481470Z [1012/5156] 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-08-14T20:45:52.3505860Z [1013/5156] 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-08-14T20:45:52.3526390Z [1014/5156] 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-08-14T20:45:52.4141670Z [1015/5156] 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-08-14T20:45:52.4320650Z [1016/5156] 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-08-14T20:45:52.4465760Z [1017/5156] 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-08-14T20:45:52.4501420Z [1018/5156] 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-08-14T20:45:52.4622200Z [1019/5156] 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-08-14T20:45:52.4727730Z [1020/5156] 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-08-14T20:45:52.4879440Z [1021/5156] 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-08-14T20:45:52.4923990Z [1022/5156] 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-08-14T20:45:52.4928400Z [1023/5156] 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-08-14T20:45:52.5487460Z [1024/5156] 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-08-14T20:45:52.5661120Z [1025/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-3p8c-minmax-neonfp16arith-acc2.c.o 2025-08-14T20:45:52.5716780Z [1026/5156] 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-08-14T20:45:52.5777440Z [1027/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-3p16c-minmax-neonfp16arith-acc2.c.o 2025-08-14T20:45:52.5800570Z [1028/5156] 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-08-14T20:45:52.5842950Z [1029/5156] 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-08-14T20:45:52.6007040Z [1030/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-3p32c-minmax-neonfp16arith-acc2.c.o 2025-08-14T20:45:52.6322420Z [1031/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-4p16c-minmax-neonfp16arith-acc2.c.o 2025-08-14T20:45:52.6512420Z [1032/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-3p8c-minmax-neonfp16arith.c.o 2025-08-14T20:45:52.6707790Z [1033/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-4p8c-minmax-neonfp16arith-acc2.c.o 2025-08-14T20:45:52.6785270Z [1034/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-3p32c-minmax-neonfp16arith.c.o 2025-08-14T20:45:52.7169980Z [1035/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-5f5m5l8c8s4r-minmax-neonfp16arith-acc2.c.o 2025-08-14T20:45:52.7178610Z [1036/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-4p32c-minmax-neonfp16arith.c.o 2025-08-14T20:45:52.7342800Z [1037/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-5f5m5l8c8s4r-minmax-neonfp16arith.c.o 2025-08-14T20:45:52.7354090Z [1038/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-4p8c-minmax-neonfp16arith.c.o 2025-08-14T20:45:52.7489050Z [1039/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-5f5m5l16c8s4r-minmax-neonfp16arith-acc2.c.o 2025-08-14T20:45:52.7644370Z [1040/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-5f5m5l32c8s4r-minmax-neonfp16arith-acc2.c.o 2025-08-14T20:45:52.7659170Z [1041/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-4p32c-minmax-neonfp16arith-acc2.c.o 2025-08-14T20:45:52.7713980Z [1042/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-5f5m5l16c8s4r-minmax-neonfp16arith.c.o 2025-08-14T20:45:52.7866520Z [1043/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-5f5m5l32c8s4r-minmax-neonfp16arith.c.o 2025-08-14T20:45:52.7987950Z [1044/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-6f6m7l8c8s4r-minmax-neonfp16arith-acc2.c.o 2025-08-14T20:45:52.8425510Z [1045/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-6f6m7l8c8s4r-minmax-neonfp16arith.c.o 2025-08-14T20:45:52.8535430Z [1046/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-6f6m7l16c8s4r-minmax-neonfp16arith-acc2.c.o 2025-08-14T20:45:52.8690970Z [1047/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-6f6m7l16c8s4r-minmax-neonfp16arith.c.o 2025-08-14T20:45:52.8845050Z [1048/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-6f6m7l32c8s4r-minmax-neonfp16arith.c.o 2025-08-14T20:45:52.9097530Z [1049/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-8f8m9l16c8s4r-minmax-neonfp16arith-acc2.c.o 2025-08-14T20:45:52.9116390Z [1050/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-8f8m9l8c8s4r-minmax-neonfp16arith-acc2.c.o 2025-08-14T20:45:52.9153940Z [1051/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-6f6m7l32c8s4r-minmax-neonfp16arith-acc2.c.o 2025-08-14T20:45:52.9324800Z [1052/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-8f8m9l16c8s4r-minmax-neonfp16arith.c.o 2025-08-14T20:45:52.9491450Z [1053/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-8f8m9l32c8s4r-minmax-neonfp16arith-acc2.c.o 2025-08-14T20:45:52.9802420Z [1054/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-8f8m9l8c8s4r-minmax-neonfp16arith.c.o 2025-08-14T20:45:52.9877020Z [1055/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-9p16c-minmax-neonfp16arith-acc2.c.o 2025-08-14T20:45:53.0052280Z [1056/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-9p32c-minmax-neonfp16arith-acc2.c.o 2025-08-14T20:45:53.0112570Z [1057/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-8f8m9l32c8s4r-minmax-neonfp16arith.c.o 2025-08-14T20:45:53.0362750Z [1058/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-9p32c-minmax-neonfp16arith.c.o 2025-08-14T20:45:53.0364850Z [1059/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-9p8c-minmax-neonfp16arith-acc2.c.o 2025-08-14T20:45:53.0400200Z [1060/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-25p16c-minmax-neonfp16arith.c.o 2025-08-14T20:45:53.0566540Z [1061/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-25p16c-minmax-neonfp16arith-acc2.c.o 2025-08-14T20:45:53.0572630Z [1062/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-25p8c-minmax-neonfp16arith.c.o 2025-08-14T20:45:53.0585310Z [1063/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-25p32c-minmax-neonfp16arith-acc2.c.o 2025-08-14T20:45:53.1175760Z [1064/5156] 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-08-14T20:45:53.1390430Z [1065/5156] 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-08-14T20:45:53.1467040Z [1066/5156] 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-08-14T20:45:53.1494290Z [1067/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-25p32c-minmax-neonfp16arith.c.o 2025-08-14T20:45:53.1904290Z [1068/5156] 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-08-14T20:45:53.1928480Z [1069/5156] 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-08-14T20:45:53.1956860Z [1070/5156] 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-08-14T20:45:53.1997950Z [1071/5156] 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-08-14T20:45:53.2222150Z [1072/5156] 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-08-14T20:45:53.2571730Z [1073/5156] 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-08-14T20:45:53.2597880Z [1074/5156] 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-08-14T20:45:53.2814740Z [1075/5156] 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-08-14T20:45:53.2821010Z [1076/5156] 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-08-14T20:45:53.3060830Z [1077/5156] 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-08-14T20:45:53.3304710Z [1078/5156] 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-08-14T20:45:53.3373040Z [1079/5156] 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-08-14T20:45:53.3515970Z [1080/5156] 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-08-14T20:45:53.3555770Z [1081/5156] 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-08-14T20:45:53.3597350Z [1082/5156] 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-08-14T20:45:53.4157710Z [1083/5156] 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-08-14T20:45:53.4201020Z [1084/5156] 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-08-14T20:45:53.4220520Z [1085/5156] 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-08-14T20:45:53.4317260Z [1086/5156] 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-08-14T20:45:53.4481120Z [1087/5156] 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-08-14T20:45:53.4806960Z [1088/5156] 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-08-14T20:45:53.4974620Z [1089/5156] 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-08-14T20:45:53.4984830Z [1090/5156] 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-08-14T20:45:53.5123980Z [1091/5156] 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-08-14T20:45:53.5148670Z [1092/5156] 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-08-14T20:45:53.5520090Z [1093/5156] 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-08-14T20:45:53.5741740Z [1094/5156] 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-08-14T20:45:53.5749260Z [1095/5156] 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-08-14T20:45:53.5972550Z [1096/5156] 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-08-14T20:45:53.5989480Z [1097/5156] 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-08-14T20:45:53.6144080Z [1098/5156] 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-08-14T20:45:53.6318950Z [1099/5156] 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-08-14T20:45:53.6321430Z [1100/5156] 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-08-14T20:45:53.6504770Z [1101/5156] 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-08-14T20:45:53.6705470Z [1102/5156] 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-08-14T20:45:53.7091900Z [1103/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32acc-rsum/gen/f16-f32acc-rsum-neonfp16arith-u24-acc3.c.o 2025-08-14T20:45:53.7165010Z [1104/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32acc-rsum/gen/f16-f32acc-rsum-neonfp16arith-u16-acc2.c.o 2025-08-14T20:45:53.7254330Z [1105/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32acc-rsum/gen/f16-f32acc-rsum-neonfp16arith-u32-acc2.c.o 2025-08-14T20:45:53.7327200Z [1106/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32acc-rsum/gen/f16-f32acc-rsum-neonfp16arith-u8.c.o 2025-08-14T20:45:53.7342020Z [1107/5156] 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-08-14T20:45:53.7346670Z [1108/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32acc-rsum/gen/f16-f32acc-rsum-neonfp16arith-u4.c.o 2025-08-14T20:45:53.7874950Z [1109/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-1x8-minmax-neonfp16arith-ld64.c.o 2025-08-14T20:45:53.8034870Z [1110/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-4x8-minmax-neonfp16arith-ld64.c.o 2025-08-14T20:45:53.8049840Z [1111/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-4x16-minmax-neonfp16arith-ld64.c.o 2025-08-14T20:45:53.8141300Z [1112/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-8x8-minmax-neonfp16arith-ld64.c.o 2025-08-14T20:45:53.8506810Z [1113/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-1x16-minmax-neonfp16arith-ld64.c.o 2025-08-14T20:45:53.8668970Z [1114/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-ibilinear-chw/gen/f16-ibilinear-chw-neonfp16arith-p4.c.o 2025-08-14T20:45:53.8822580Z [1115/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-6x8-minmax-neonfp16arith-ld64.c.o 2025-08-14T20:45:53.8844050Z [1116/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-8x8-minmax-neonfp16arith-ld64.c.o 2025-08-14T20:45:53.8972120Z [1117/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-8x16-minmax-neonfp16arith-ld64.c.o 2025-08-14T20:45:53.9118180Z [1118/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-6x16-minmax-neonfp16arith-ld64.c.o 2025-08-14T20:45:53.9283020Z [1119/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-ibilinear-chw/gen/f16-ibilinear-chw-neonfp16arith-p16.c.o 2025-08-14T20:45:53.9450920Z [1120/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/gen/f16-igemm-4x16-minmax-neonfp16arith-ld64.c.o 2025-08-14T20:45:53.9466420Z [1121/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-ibilinear/gen/f16-ibilinear-neonfp16arith-c16.c.o 2025-08-14T20:45:53.9653970Z [1122/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/gen/f16-igemm-4x8-minmax-neonfp16arith-ld64.c.o 2025-08-14T20:45:53.9748880Z [1123/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/gen/f16-igemm-8x8-minmax-neonfp16arith-ld64.c.o 2025-08-14T20:45:53.9966910Z [1124/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u32-acc2.c.o 2025-08-14T20:45:53.9977940Z [1125/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/gen/f16-igemm-8x16-minmax-neonfp16arith-ld64.c.o 2025-08-14T20:45:54.0188110Z [1126/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-neonfp16arith-u16.c.o 2025-08-14T20:45:54.0194940Z [1127/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-neonfp16arith-u8.c.o 2025-08-14T20:45:54.0689990Z [1128/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-neonfp16arith-u24.c.o 2025-08-14T20:45:54.0838610Z [1129/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-neonfp16arith-u64.c.o 2025-08-14T20:45:54.0887720Z [1130/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u40-acc5.c.o 2025-08-14T20:45:54.0914440Z [1131/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u40.c.o 2025-08-14T20:45:54.0997700Z [1132/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u40-acc2.c.o 2025-08-14T20:45:54.1259290Z [1133/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u48-acc3.c.o 2025-08-14T20:45:54.1367080Z [1134/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u32-acc4.c.o 2025-08-14T20:45:54.1401080Z [1135/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u48.c.o 2025-08-14T20:45:54.1508410Z [1136/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u64-acc2.c.o 2025-08-14T20:45:54.2055720Z [1137/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u72-acc3.c.o 2025-08-14T20:45:54.2062730Z [1138/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u48-acc2.c.o 2025-08-14T20:45:54.2104890Z [1139/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u64.c.o 2025-08-14T20:45:54.2110230Z [1140/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u80-acc2.c.o 2025-08-14T20:45:54.2155100Z [1141/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u72.c.o 2025-08-14T20:45:54.2336770Z [1142/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u64-acc4.c.o 2025-08-14T20:45:54.2361100Z [1143/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u80-acc5.c.o 2025-08-14T20:45:54.2745780Z [1144/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u80.c.o 2025-08-14T20:45:54.2859000Z [1145/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u96-acc2.c.o 2025-08-14T20:45:54.2870640Z [1146/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u96-acc3.c.o 2025-08-14T20:45:54.3417070Z [1147/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-neonfp16arith-u16-acc2.c.o 2025-08-14T20:45:54.3603440Z [1148/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u8.c.o 2025-08-14T20:45:54.3660820Z [1149/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u96-acc6.c.o 2025-08-14T20:45:54.3736210Z [1150/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-neonfp16arith-u24-acc3.c.o 2025-08-14T20:45:54.3789600Z [1151/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-neonfp16arith-u8.c.o 2025-08-14T20:45:54.3856460Z [1152/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u96.c.o 2025-08-14T20:45:54.3990700Z [1153/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u16-acc1.c.o 2025-08-14T20:45:54.3997840Z [1154/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u24-acc2.c.o 2025-08-14T20:45:54.4222600Z [1155/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-neonfp16arith-u32-acc2.c.o 2025-08-14T20:45:54.4333890Z [1156/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u16-acc2.c.o 2025-08-14T20:45:54.4496480Z [1157/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u24-acc3.c.o 2025-08-14T20:45:54.4847950Z [1158/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u24.c.o 2025-08-14T20:45:54.5005080Z [1159/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u32-acc2.c.o 2025-08-14T20:45:54.5030190Z [1160/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u32-acc4.c.o 2025-08-14T20:45:54.5030950Z [1161/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u32.c.o 2025-08-14T20:45:54.5252050Z [1162/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u64.c.o 2025-08-14T20:45:54.5259140Z [1163/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u64-acc2.c.o 2025-08-14T20:45:54.5267080Z [1164/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u64-acc4.c.o 2025-08-14T20:45:54.5450770Z [1165/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u8.c.o 2025-08-14T20:45:54.5776760Z [1166/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u16-acc1.c.o 2025-08-14T20:45:54.5891870Z [1167/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u16-acc2.c.o 2025-08-14T20:45:54.6217660Z [1168/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u24-acc2.c.o 2025-08-14T20:45:54.6431820Z [1169/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u24.c.o 2025-08-14T20:45:54.6444080Z [1170/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u32-acc2.c.o 2025-08-14T20:45:54.6503750Z [1171/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u24-acc3.c.o 2025-08-14T20:45:54.6511810Z [1172/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u32.c.o 2025-08-14T20:45:54.6542280Z [1173/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u64-acc4.c.o 2025-08-14T20:45:54.6752430Z [1174/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u64-acc2.c.o 2025-08-14T20:45:54.6760070Z [1175/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u64.c.o 2025-08-14T20:45:54.7371340Z [1176/5156] 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-08-14T20:45:54.7389840Z [1177/5156] 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-08-14T20:45:54.7520960Z [1178/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rsum/gen/f16-rsum-neonfp16arith-u16-acc2.c.o 2025-08-14T20:45:54.7587880Z [1179/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-8x1-minmax-neonfp16arith-pipelined.c.o 2025-08-14T20:45:54.7684550Z [1180/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rsum/gen/f16-rsum-neonfp16arith-u8.c.o 2025-08-14T20:45:54.7855280Z [1181/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rsum/gen/f16-rsum-neonfp16arith-u32-acc4.c.o 2025-08-14T20:45:54.7857330Z [1182/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rsum/gen/f16-rsum-neonfp16arith-u24-acc3.c.o 2025-08-14T20:45:54.8054310Z [1183/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-8x1-minmax-neonfp16arith-x2.c.o 2025-08-14T20:45:54.8095040Z [1184/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-16x1-minmax-neonfp16arith-pipelined.c.o 2025-08-14T20:45:54.8361790Z [1185/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rsum/gen/f16-rsum-neonfp16arith-u32-acc2.c.o 2025-08-14T20:45:54.8591510Z [1186/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-8x1-minmax-neonfp16arith.c.o 2025-08-14T20:45:54.8654140Z [1187/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-16x1-minmax-neonfp16arith-x2.c.o 2025-08-14T20:45:54.8693040Z [1188/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-24x1-minmax-neonfp16arith-pipelined.c.o 2025-08-14T20:45:54.8823130Z [1189/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-16x1-minmax-neonfp16arith.c.o 2025-08-14T20:45:54.9020030Z [1190/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-24x1-minmax-neonfp16arith-x2.c.o 2025-08-14T20:45:54.9353840Z [1191/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-24x1-minmax-neonfp16arith.c.o 2025-08-14T20:45:54.9423160Z [1192/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-32x1-minmax-neonfp16arith-x2.c.o 2025-08-14T20:45:54.9524350Z [1193/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vadd-neonfp16arith-u8.c.o 2025-08-14T20:45:54.9532360Z [1194/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vaddc-neonfp16arith-u8.c.o 2025-08-14T20:45:54.9729200Z [1195/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-32x1-minmax-neonfp16arith.c.o 2025-08-14T20:45:54.9972160Z [1196/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmax-neonfp16arith-u8.c.o 2025-08-14T20:45:55.0050710Z [1197/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vminc-neonfp16arith-u8.c.o 2025-08-14T20:45:55.0060170Z [1198/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmaxc-neonfp16arith-u8.c.o 2025-08-14T20:45:55.0253180Z [1199/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmul-neonfp16arith-u8.c.o 2025-08-14T20:45:55.0518480Z [1200/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmin-neonfp16arith-u8.c.o 2025-08-14T20:45:55.0645820Z [1201/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vprelu-neonfp16arith-u8.c.o 2025-08-14T20:45:55.0719330Z [1202/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrpreluc-neonfp16arith-u8.c.o 2025-08-14T20:45:55.0879080Z [1203/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vpreluc-neonfp16arith-u8.c.o 2025-08-14T20:45:55.0904050Z [1204/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrsubc-neonfp16arith-u8.c.o 2025-08-14T20:45:55.1086080Z [1205/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmulc-neonfp16arith-u8.c.o 2025-08-14T20:45:55.1537780Z [1206/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiffc-neonfp16arith-u8.c.o 2025-08-14T20:45:55.1611690Z [1207/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsubc-neonfp16arith-u8.c.o 2025-08-14T20:45:55.1687560Z [1208/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vclamp/gen/f16-vclamp-neonfp16arith-u8.c.o 2025-08-14T20:45:55.1721310Z [1209/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiff-neonfp16arith-u8.c.o 2025-08-14T20:45:55.1818150Z [1210/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vmulcaddc/gen/f16-vmulcaddc-c16-minmax-neonfp16arith-2x.c.o 2025-08-14T20:45:55.1992790Z [1211/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vcmul/gen/f16-vcmul-neonfp16arith-u8.c.o 2025-08-14T20:45:55.2097990Z [1212/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-velu/gen/f16-velu-neonfp16arith-rr1-p3-u8.c.o 2025-08-14T20:45:55.2231170Z [1213/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vhswish/gen/f16-vhswish-neonfp16arith-u8.c.o 2025-08-14T20:45:55.2233050Z [1214/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vcmul/gen/f16-vcmul-neonfp16arith-u32.c.o 2025-08-14T20:45:55.2882090Z [1215/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrnd/gen/f16-vrndu-neonfp16arith-u8.c.o 2025-08-14T20:45:55.2891100Z [1216/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrnd/gen/f16-vrndne-neonfp16arith-u8.c.o 2025-08-14T20:45:55.2918670Z [1217/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrnd/gen/f16-vrndd-neonfp16arith-u8.c.o 2025-08-14T20:45:55.2955740Z [1218/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1fma-u8.c.o 2025-08-14T20:45:55.3011000Z [1219/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vlrelu/gen/f16-vlrelu-neonfp16arith-u8.c.o 2025-08-14T20:45:55.3119060Z [1220/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrnd/gen/f16-vrndz-neonfp16arith-u8.c.o 2025-08-14T20:45:55.3598090Z [1221/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrsqrt/gen/f16-vrsqrt-neonfp16arith-rsqrt-u32.c.o 2025-08-14T20:45:55.3824400Z [1222/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrsqrt/gen/f16-vrsqrt-neonfp16arith-rsqrt-u8.c.o 2025-08-14T20:45:55.4017160Z [1223/5156] 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-08-14T20:45:55.4045620Z [1224/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1fma-u24.c.o 2025-08-14T20:45:55.4166470Z [1225/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1recps-u8.c.o 2025-08-14T20:45:55.4177620Z [1226/5156] 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-08-14T20:45:55.4196170Z [1227/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1recps-u32.c.o 2025-08-14T20:45:55.4374520Z [1228/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1recps-u24.c.o 2025-08-14T20:45:55.4444750Z [1229/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1fma-u16.c.o 2025-08-14T20:45:55.4703910Z [1230/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsqrt/gen/f16-vsqrt-neonfp16arith-nr1fma1adj-u16.c.o 2025-08-14T20:45:55.4936340Z [1231/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsqrt/gen/f16-vsqrt-neonfp16arith-nr1fma1adj-u32.c.o 2025-08-14T20:45:55.5145200Z [1232/5156] 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-08-14T20:45:55.5384780Z [1233/5156] 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-08-14T20:45:55.5435740Z [1234/5156] 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-08-14T20:45:55.5468110Z [1235/5156] 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-08-14T20:45:55.5639970Z [1236/5156] 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-08-14T20:45:55.5715540Z [1237/5156] 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-08-14T20:45:55.5817260Z [1238/5156] 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-08-14T20:45:55.5920300Z [1239/5156] 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-08-14T20:45:55.5991590Z [1240/5156] 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-08-14T20:45:55.6087780Z [1241/5156] 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-08-14T20:45:55.6190990Z [1242/5156] 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-08-14T20:45:55.6626400Z [1243/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vunary/gen/f16-vneg-neonfp16arith-u8.c.o 2025-08-14T20:45:55.6666510Z [1244/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vunary/gen/f16-vabs-neonfp16arith-u8.c.o 2025-08-14T20:45:55.6956180Z [1245/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vunary/gen/f16-vsqr-neonfp16arith-u8.c.o 2025-08-14T20:45:55.7083850Z [1246/5156] 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-08-14T20:45:55.7235590Z [1247/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsub-neonfp16arith-u8.c.o 2025-08-14T20:45:55.7241260Z [1248/5156] 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-08-14T20:45:55.7304520Z [1249/5156] 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-08-14T20:45:55.7473410Z [1250/5156] 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-08-14T20:45:55.7525810Z [1251/5156] 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-08-14T20:45:55.7934890Z [1252/5156] 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-08-14T20:45:55.8231820Z [1253/5156] 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-08-14T20:45:55.8293870Z [1254/5156] 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-08-14T20:45:55.8510530Z [1255/5156] 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-08-14T20:45:55.8555660Z [1256/5156] 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-08-14T20:45:55.8713620Z [1257/5156] 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-08-14T20:45:55.8780430Z [1258/5156] 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-08-14T20:45:55.9022490Z [1259/5156] 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-08-14T20:45:55.9233250Z [1260/5156] 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-08-14T20:45:55.9246280Z [1261/5156] 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-08-14T20:45:55.9447160Z [1262/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f16-vcvt/gen/qs8-f16-vcvt-neonfp16arith-u8.c.o 2025-08-14T20:45:55.9564180Z [1263/5156] 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-08-14T20:45:55.9631690Z [1264/5156] 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-08-14T20:45:55.9638990Z [1265/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f16-vcvt/gen/qs8-f16-vcvt-neonfp16arith-u16.c.o 2025-08-14T20:45:55.9877930Z [1266/5156] 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-08-14T20:45:55.9882850Z [1267/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f16-vcvt/gen/qs8-f16-vcvt-neonfp16arith-u24.c.o 2025-08-14T20:45:56.0177160Z [1268/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vdiv-aarch64-neonfp16arith-u16.c.o 2025-08-14T20:45:56.0639960Z [1269/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vdivc-aarch64-neonfp16arith-u16.c.o 2025-08-14T20:45:56.0653960Z [1270/5156] 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-08-14T20:45:56.0790300Z [1271/5156] 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-08-14T20:45:56.0834510Z [1272/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsqrt/gen/f16-vsqrt-aarch64-neonfp16arith-sqrt-u32.c.o 2025-08-14T20:45:56.0867950Z [1273/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsqrt/gen/f16-vsqrt-aarch64-neonfp16arith-sqrt-u16.c.o 2025-08-14T20:45:56.0973270Z [1274/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrdivc-aarch64-neonfp16arith-u16.c.o 2025-08-14T20:45:56.1062800Z [1275/5156] 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-08-14T20:45:56.1110680Z [1276/5156] 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-08-14T20:45:56.1807120Z [1277/5156] 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-08-14T20:45:56.1878510Z [1278/5156] 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-08-14T20:45:56.2033380Z [1279/5156] 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-08-14T20:45:56.2138620Z [1280/5156] 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-08-14T20:45:56.2155170Z [1281/5156] 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-08-14T20:45:56.2264120Z [1282/5156] 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-08-14T20:45:56.2285030Z [1283/5156] 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-08-14T20:45:56.2478190Z [1284/5156] 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-08-14T20:45:56.2985150Z [1285/5156] 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-08-14T20:45:56.3137510Z [1286/5156] 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-08-14T20:45:56.3271490Z [1287/5156] 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-08-14T20:45:56.3359140Z [1288/5156] 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-08-14T20:45:56.3430280Z [1289/5156] 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-08-14T20:45:56.3471490Z [1290/5156] 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-08-14T20:45:56.3618220Z [1291/5156] 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-08-14T20:45:56.3704970Z [1292/5156] 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-08-14T20:45:56.3820440Z [1293/5156] 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-08-14T20:45:56.3986290Z [1294/5156] 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-08-14T20:45:56.4601260Z [1295/5156] 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-08-14T20:45:56.4662950Z [1296/5156] 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-08-14T20:45:56.4754650Z [1297/5156] 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-08-14T20:45:56.4896330Z [1298/5156] 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-08-14T20:45:56.4897460Z [1299/5156] 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-08-14T20:45:56.4972920Z [1300/5156] 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-08-14T20:45:56.5080390Z [1301/5156] 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-08-14T20:45:56.5167990Z [1302/5156] 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-08-14T20:45:56.5318620Z [1303/5156] 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-08-14T20:45:56.5590060Z [1304/5156] 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-08-14T20:45:56.5844070Z [1305/5156] 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-08-14T20:45:56.6019760Z [1306/5156] 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-08-14T20:45:56.6068720Z [1307/5156] 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-08-14T20:45:56.6253980Z [1308/5156] 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-08-14T20:45:56.6359480Z [1309/5156] 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-08-14T20:45:56.6563480Z [1310/5156] 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-08-14T20:45:56.6575830Z [1311/5156] 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-08-14T20:45:56.6841820Z [1312/5156] 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-08-14T20:45:56.6858350Z [1313/5156] 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-08-14T20:45:56.7119860Z [1314/5156] 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-08-14T20:45:56.7357530Z [1315/5156] 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-08-14T20:45:56.7393840Z [1316/5156] 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-08-14T20:45:56.7771630Z [1317/5156] 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-08-14T20:45:56.7776400Z [1318/5156] 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-08-14T20:45:56.7861450Z [1319/5156] 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-08-14T20:45:56.8179530Z [1320/5156] 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-08-14T20:45:56.8217720Z [1321/5156] 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-08-14T20:45:56.8254970Z [1322/5156] 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-08-14T20:45:56.8441420Z [1323/5156] 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-08-14T20:45:56.8640200Z [1324/5156] 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-08-14T20:45:56.8792020Z [1325/5156] 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-08-14T20:45:56.8840030Z [1326/5156] 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-08-14T20:45:56.8992730Z [1327/5156] 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-08-14T20:45:56.9137560Z [1328/5156] 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-08-14T20:45:56.9291670Z [1329/5156] 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-08-14T20:45:56.9723000Z [1330/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rsum/gen/qs8-rsum-neondot-u64-acc2.c.o 2025-08-14T20:45:56.9850600Z [1331/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rsum/gen/qs8-rsum-neondot-u16.c.o 2025-08-14T20:45:56.9886710Z [1332/5156] 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-08-14T20:45:57.0020940Z [1333/5156] 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-08-14T20:45:57.0026550Z [1334/5156] 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-08-14T20:45:57.0203750Z [1335/5156] 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-08-14T20:45:57.0542860Z [1336/5156] 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-08-14T20:45:57.0592880Z [1337/5156] 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-08-14T20:45:57.0642410Z [1338/5156] 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-08-14T20:45:57.0751970Z [1339/5156] 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-08-14T20:45:57.0788240Z [1340/5156] 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-08-14T20:45:57.0818400Z [1341/5156] 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-08-14T20:45:57.0896650Z [1342/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rsum/gen/qs8-rsum-neondot-u64-acc4.c.o 2025-08-14T20:45:57.0910890Z [1343/5156] 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-08-14T20:45:57.0975580Z [1344/5156] 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-08-14T20:45:57.1379170Z [1345/5156] 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-08-14T20:45:57.1457050Z [1346/5156] 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-08-14T20:45:57.1488100Z [1347/5156] 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-08-14T20:45:57.1559260Z [1348/5156] 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-08-14T20:45:57.1577270Z [1349/5156] 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-08-14T20:45:57.1650270Z [1350/5156] 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-08-14T20:45:57.1684610Z [1351/5156] 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-08-14T20:45:57.1696640Z [1352/5156] 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-08-14T20:45:57.1780930Z [1353/5156] 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-08-14T20:45:57.1939130Z [1354/5156] 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-08-14T20:45:57.2344110Z [1355/5156] 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-08-14T20:45:57.2446570Z [1356/5156] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/f16-igemm-4x16-minmax-asm-aarch64-neonfp16arith-ld32.S.o 2025-08-14T20:45:57.2474040Z [1357/5156] 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-08-14T20:45:57.2486950Z [1358/5156] 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-08-14T20:45:57.2523400Z [1359/5156] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/f16-igemm-6x16-minmax-asm-aarch64-neonfp16arith-ld32.S.o 2025-08-14T20:45:57.2545710Z [1360/5156] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/f16-igemm-1x16-minmax-asm-aarch64-neonfp16arith-ld32.S.o 2025-08-14T20:45:57.2668940Z [1361/5156] 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-08-14T20:45:57.2689450Z [1362/5156] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/f32-dwconv-9p4c-minmax-asm-aarch64-neonfma.S.o 2025-08-14T20:45:57.2770910Z [1363/5156] 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-08-14T20:45:57.2783220Z [1364/5156] 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-08-14T20:45:57.3413920Z [1365/5156] 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-08-14T20:45:57.3448450Z [1366/5156] 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-08-14T20:45:57.3465460Z [1367/5156] 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-08-14T20:45:57.3476650Z [1368/5156] 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-08-14T20:45:57.3510470Z [1369/5156] 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-08-14T20:45:57.3526990Z [1370/5156] 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-08-14T20:45:57.3556770Z [1371/5156] 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-08-14T20:45:57.3577460Z [1372/5156] 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-08-14T20:45:57.3638910Z [1373/5156] 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-08-14T20:45:57.3680510Z [1374/5156] 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-08-14T20:45:57.4438990Z [1375/5156] 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-08-14T20:45:57.4471180Z [1376/5156] 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-08-14T20:45:57.4483760Z [1377/5156] 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-08-14T20:45:57.4497570Z [1378/5156] 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-08-14T20:45:57.4513540Z [1379/5156] 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-08-14T20:45:57.4519980Z [1380/5156] 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-08-14T20:45:57.4527560Z [1381/5156] 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-08-14T20:45:57.4531990Z [1382/5156] 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-08-14T20:45:57.4655620Z [1383/5156] 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-08-14T20:45:57.4737540Z [1384/5156] 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-08-14T20:45:57.5374540Z [1385/5156] 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-08-14T20:45:57.5432180Z [1386/5156] 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-08-14T20:45:57.5474490Z [1387/5156] 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-08-14T20:45:57.5493580Z [1388/5156] 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-08-14T20:45:57.5520850Z [1389/5156] 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-08-14T20:45:57.5555950Z [1390/5156] 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-08-14T20:45:57.5587840Z [1391/5156] 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-08-14T20:45:57.5614790Z [1392/5156] 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-08-14T20:45:57.5665390Z [1393/5156] 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-08-14T20:45:57.5700780Z [1394/5156] 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-08-14T20:45:57.6404510Z [1395/5156] 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-08-14T20:45:57.6406970Z [1396/5156] 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-08-14T20:45:57.6437420Z [1397/5156] 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-08-14T20:45:57.6469360Z [1398/5156] 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-08-14T20:45:57.6546910Z [1399/5156] 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-08-14T20:45:57.6554740Z [1400/5156] 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-08-14T20:45:57.6574760Z [1401/5156] 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-08-14T20:45:57.6673000Z [1402/5156] 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-08-14T20:45:57.6678320Z [1403/5156] 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-08-14T20:45:57.6733670Z [1404/5156] 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-08-14T20:45:57.7334280Z [1405/5156] 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-08-14T20:45:57.7393510Z [1406/5156] 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-08-14T20:45:57.7407700Z [1407/5156] 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-08-14T20:45:57.7413640Z [1408/5156] 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-08-14T20:45:57.7480470Z [1409/5156] 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-08-14T20:45:57.7505380Z [1410/5156] 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-08-14T20:45:57.7614040Z [1411/5156] 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-08-14T20:45:57.7651090Z [1412/5156] 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-08-14T20:45:57.7753690Z [1413/5156] 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-08-14T20:45:57.7829420Z [1414/5156] 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-08-14T20:45:57.8370000Z [1415/5156] 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-08-14T20:45:57.8393060Z [1416/5156] 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-08-14T20:45:57.8405870Z [1417/5156] 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-08-14T20:45:57.8428590Z [1418/5156] 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-08-14T20:45:57.8445820Z [1419/5156] 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-08-14T20:45:57.8457440Z [1420/5156] 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-08-14T20:45:57.8485180Z [1421/5156] 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-08-14T20:45:57.8619760Z [1422/5156] 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-08-14T20:45:57.8750320Z [1423/5156] 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-08-14T20:45:57.8751380Z [1424/5156] 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-08-14T20:45:57.9330260Z [1425/5156] 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-08-14T20:45:57.9338850Z [1426/5156] 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-08-14T20:45:57.9357680Z [1427/5156] 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-08-14T20:45:57.9377110Z [1428/5156] 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-08-14T20:45:57.9495190Z [1429/5156] 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-08-14T20:45:57.9574760Z [1430/5156] 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-08-14T20:45:57.9605900Z [1431/5156] 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-08-14T20:45:57.9609540Z [1432/5156] 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-08-14T20:45:57.9639560Z [1433/5156] 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-08-14T20:45:57.9640450Z [1434/5156] 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-08-14T20:45:58.0284890Z [1435/5156] 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-08-14T20:45:58.0293720Z [1436/5156] 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-08-14T20:45:58.0390980Z [1437/5156] 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-08-14T20:45:58.0446220Z [1438/5156] 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-08-14T20:45:58.0469720Z [1439/5156] 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-08-14T20:45:58.0477150Z [1440/5156] 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-08-14T20:45:58.0556890Z [1441/5156] 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-08-14T20:45:58.0565210Z [1442/5156] 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-08-14T20:45:58.0587390Z [1443/5156] 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-08-14T20:45:58.0597170Z [1444/5156] 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-08-14T20:45:58.1227450Z [1445/5156] 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-08-14T20:45:58.1331660Z [1446/5156] 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-08-14T20:45:58.1334910Z [1447/5156] 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-08-14T20:45:58.1343400Z [1448/5156] 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-08-14T20:45:58.1348720Z [1449/5156] 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-08-14T20:45:58.1495180Z [1450/5156] 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-08-14T20:45:58.1513160Z [1451/5156] 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-08-14T20:45:58.1566350Z [1452/5156] 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-08-14T20:45:58.1567300Z [1453/5156] 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-08-14T20:45:58.1570120Z [1454/5156] 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-08-14T20:45:58.2221270Z [1455/5156] 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-08-14T20:45:58.2307470Z [1456/5156] 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-08-14T20:45:58.2316110Z [1457/5156] 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-08-14T20:45:58.2423220Z [1458/5156] 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-08-14T20:45:58.2431930Z [1459/5156] 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-08-14T20:45:58.2452400Z [1460/5156] 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-08-14T20:45:58.2474270Z [1461/5156] 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-08-14T20:45:58.2475200Z [1462/5156] 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-08-14T20:45:58.2523350Z [1463/5156] 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-08-14T20:45:58.2525420Z [1464/5156] 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-08-14T20:45:58.3191920Z [1465/5156] 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-08-14T20:45:58.3311640Z [1466/5156] 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-08-14T20:45:58.3378200Z [1467/5156] 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-08-14T20:45:58.3385410Z [1468/5156] 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-08-14T20:45:58.3395780Z [1469/5156] 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-08-14T20:45:58.3409860Z [1470/5156] 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-08-14T20:45:58.3431700Z [1471/5156] 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-08-14T20:45:58.3461290Z [1472/5156] 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-08-14T20:45:58.3482510Z [1473/5156] 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-08-14T20:45:58.3734620Z [1474/5156] 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-08-14T20:45:58.4252260Z [1475/5156] 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-08-14T20:45:58.4284880Z [1476/5156] 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-08-14T20:45:58.4288980Z [1477/5156] 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-08-14T20:45:58.4292360Z [1478/5156] 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-08-14T20:45:58.4301510Z [1479/5156] 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-08-14T20:45:58.4305870Z [1480/5156] 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-08-14T20:45:58.4323660Z [1481/5156] 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-08-14T20:45:58.4547570Z [1482/5156] 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-08-14T20:45:58.4579270Z [1483/5156] 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-08-14T20:45:58.4792780Z [1484/5156] 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-08-14T20:45:58.5266030Z [1485/5156] 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-08-14T20:45:58.5280720Z [1486/5156] 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-08-14T20:45:58.5323000Z [1487/5156] 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-08-14T20:45:58.5341350Z [1488/5156] 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-08-14T20:45:58.5398750Z [1489/5156] 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-08-14T20:45:58.5720620Z [1490/5156] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qai8dxp_f32.c.o 2025-08-14T20:45:58.5839600Z [1491/5156] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4c32p_qsu4c32s1s0.c.o 2025-08-14T20:45:58.5964150Z [1492/5156] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4cxp_qs4cxs1s0.c.o 2025-08-14T20:45:58.5966900Z [1493/5156] 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-08-14T20:45:58.6167450Z [1494/5156] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi4cxp_qs4cxs1s0.c.o 2025-08-14T20:45:58.6521200Z [1495/5156] 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-08-14T20:45:58.6726160Z [1496/5156] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32p_f32.c.o 2025-08-14T20:45:58.6799870Z [1497/5156] 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-08-14T20:45:58.6954380Z [1498/5156] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi4c32p_qsu4c32s1s0.c.o 2025-08-14T20:45:58.6956390Z [1499/5156] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f32p8x1biasf32_f32_f32_neon.c.o 2025-08-14T20:45:58.6984130Z [1500/5156] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4c32pscalef16_qsu4c32s16s0.c.o 2025-08-14T20:45:58.7161780Z [1501/5156] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4c32ps1s0scalef16_qsu4c32s16s0_neon.c.o 2025-08-14T20:45:58.7380420Z [1502/5156] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32p_f32_neon.c.o 2025-08-14T20:45:58.7557330Z [1503/5156] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4cxps1s0_qsu4cxs1s0_neon.c.o 2025-08-14T20:45:58.7559680Z [1504/5156] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi8cxp_qsi8cx_neon.c.o 2025-08-14T20:45:58.7824380Z [1505/5156] 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-08-14T20:45:58.8180760Z [1506/5156] 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-08-14T20:45:58.8252140Z [1507/5156] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi8cxp_qsi8cx_neon.c.o 2025-08-14T20:45:58.8294510Z [1508/5156] 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-08-14T20:45:58.8299200Z [1509/5156] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32pscalef32_f32_neon.c.o 2025-08-14T20:45:58.8302900Z [1510/5156] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f16p16x1biasf16_f16_f16_neon.c.o 2025-08-14T20:45:58.8361250Z [1511/5156] 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-08-14T20:45:58.8500290Z [1512/5156] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32pscalef32_f16_neon.c.o 2025-08-14T20:45:58.8533660Z [1513/5156] 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-08-14T20:45:58.8619950Z [1514/5156] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qai8dxp_f16_neon.c.o 2025-08-14T20:45:58.9055540Z [1515/5156] 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-08-14T20:45:58.9179660Z [1516/5156] 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-08-14T20:45:58.9329780Z [1517/5156] 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-08-14T20:45:58.9448720Z [1518/5156] 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-08-14T20:45:58.9674040Z [1519/5156] 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-08-14T20:45:58.9676780Z [1520/5156] 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-08-14T20:45:58.9829650Z [1521/5156] 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-08-14T20:45:58.9851660Z [1522/5156] 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-08-14T20:45:58.9990730Z [1523/5156] 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-08-14T20:45:59.0026750Z [1524/5156] 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-08-14T20:45:59.0131300Z [1525/5156] 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-08-14T20:45:59.0258780Z [1526/5156] 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-08-14T20:45:59.0591730Z [1527/5156] 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-08-14T20:45:59.0605300Z [1528/5156] 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-08-14T20:45:59.0685220Z [1529/5156] 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-08-14T20:45:59.0805480Z [1530/5156] 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-08-14T20:45:59.0889230Z [1531/5156] 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-08-14T20:45:59.1174360Z [1532/5156] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_quant_pack_kxn_bf16p12x4biasf32_f32_neon.c.o 2025-08-14T20:45:59.1312460Z [1533/5156] 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-08-14T20:45:59.1393600Z [1534/5156] 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-08-14T20:45:59.1447860Z [1535/5156] 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-08-14T20:45:59.1881020Z [1536/5156] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_quant_pack_bf16p1x4_f32_neon.c.o 2025-08-14T20:45:59.1983370Z [1537/5156] 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-08-14T20:45:59.1996240Z [1538/5156] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_bf16p12x4biasf16_f16_neon.c.o 2025-08-14T20:45:59.2003190Z [1539/5156] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_quant_pack_bf16p8x4_f32_neon.c.o 2025-08-14T20:45:59.2006720Z [1540/5156] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_pack_bf16p8x4_f16_neon.c.o 2025-08-14T20:45:59.2017840Z [1541/5156] 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-08-14T20:45:59.2069950Z [1542/5156] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_bf16p12x4biasf32_f16_neon.c.o 2025-08-14T20:45:59.2308750Z [1543/5156] 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-08-14T20:45:59.2699190Z [1544/5156] 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-08-14T20:45:59.2860440Z [1545/5156] 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-08-14T20:45:59.2890880Z [1546/5156] 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-08-14T20:45:59.2960390Z [1547/5156] 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-08-14T20:45:59.3056520Z [1548/5156] 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-08-14T20:45:59.3151450Z [1549/5156] 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-08-14T20:45:59.3365870Z [1550/5156] 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-08-14T20:45:59.3578960Z [1551/5156] 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-08-14T20:45:59.3582230Z [1552/5156] 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-08-14T20:45:59.3590010Z [1553/5156] 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-08-14T20:45:59.3596580Z [1554/5156] 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-08-14T20:45:59.4162540Z [1555/5156] 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-08-14T20:45:59.4171820Z [1556/5156] 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-08-14T20:45:59.4230560Z [1557/5156] 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-08-14T20:45:59.4235980Z [1558/5156] 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-08-14T20:45:59.4503930Z [1559/5156] 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-08-14T20:45:59.4771390Z [1560/5156] 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-08-14T20:45:59.4815070Z [1561/5156] 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-08-14T20:45:59.4841100Z [1562/5156] 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-08-14T20:45:59.4874980Z [1563/5156] 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-08-14T20:45:59.4949600Z [1564/5156] 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-08-14T20:45:59.5285270Z [1565/5156] 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-08-14T20:45:59.5609780Z [1566/5156] 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-08-14T20:45:59.5671230Z [1567/5156] 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-08-14T20:45:59.5702530Z [1568/5156] 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-08-14T20:45:59.5705690Z [1569/5156] 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-08-14T20:45:59.5838610Z [1570/5156] 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-08-14T20:45:59.5891260Z [1571/5156] 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-08-14T20:45:59.5966320Z [1572/5156] 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-08-14T20:45:59.6443360Z [1573/5156] 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-08-14T20:45:59.6486740Z [1574/5156] 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-08-14T20:45:59.6605370Z [1575/5156] 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-08-14T20:45:59.6671610Z [1576/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-scalar-u3.c.o 2025-08-14T20:45:59.6693080Z [1577/5156] 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-08-14T20:45:59.6773250Z [1578/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-fmagic-u2.c.o 2025-08-14T20:45:59.6888660Z [1579/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-fmagic-u1.c.o 2025-08-14T20:45:59.6892440Z [1580/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-fmagic-u3.c.o 2025-08-14T20:45:59.6930050Z [1581/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-scalar-u1.c.o 2025-08-14T20:45:59.7144640Z [1582/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-scalar-u2.c.o 2025-08-14T20:45:59.7420690Z [1583/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-imagic-u2.c.o 2025-08-14T20:45:59.7442800Z [1584/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-fmagic-u4.c.o 2025-08-14T20:45:59.7445370Z [1585/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-imagic-u1.c.o 2025-08-14T20:45:59.7847990Z [1586/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qu8-vcvt/gen/f16-qu8-vcvt-scalar-imagic-u1.c.o 2025-08-14T20:45:59.7962340Z [1587/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qu8-vcvt/gen/f16-qu8-vcvt-scalar-imagic-u2.c.o 2025-08-14T20:45:59.7992900Z [1588/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-imagic-u3.c.o 2025-08-14T20:45:59.8149970Z [1589/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p1c-scalar.c.o 2025-08-14T20:45:59.8239580Z [1590/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p2c-minmax-scalar.c.o 2025-08-14T20:45:59.8383060Z [1591/5156] Linking C static library lib/libkleidiai.a 2025-08-14T20:45:59.8399960Z [1592/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3f3m3l1c1s1r-scalar.c.o 2025-08-14T20:45:59.8579670Z [1593/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p1c-minmax-scalar.c.o 2025-08-14T20:45:59.8598140Z [1594/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3f3m3l1c1s1r-scalar-acc2.c.o 2025-08-14T20:45:59.8919860Z [1595/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l4c1s1r-scalar-acc2.c.o 2025-08-14T20:45:59.8929530Z [1596/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l4c1s1r-minmax-scalar.c.o 2025-08-14T20:45:59.9085850Z [1597/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l1c1s1r-scalar.c.o 2025-08-14T20:45:59.9123610Z [1598/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l4c1s1r-scalar.c.o 2025-08-14T20:45:59.9159060Z [1599/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l1c1s1r-scalar-acc2.c.o 2025-08-14T20:45:59.9316420Z [1600/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l1c1s1r-minmax-scalar.c.o 2025-08-14T20:45:59.9317810Z [1601/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qu8-vcvt/gen/f16-qu8-vcvt-scalar-imagic-u3.c.o 2025-08-14T20:45:59.9862370Z [1602/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-scalar-u3-acc3.c.o 2025-08-14T20:45:59.9870440Z [1603/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-scalar-u4-acc4.c.o 2025-08-14T20:45:59.9985680Z [1604/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p2c-minmax-scalar-acc2.c.o 2025-08-14T20:46:00.0064690Z [1605/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-scalar-u3-acc3.c.o 2025-08-14T20:46:00.0082880Z [1606/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-scalar-u1.c.o 2025-08-14T20:46:00.0091730Z [1607/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-scalar-u4-acc2.c.o 2025-08-14T20:46:00.0237350Z [1608/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-scalar-u4-acc2.c.o 2025-08-14T20:46:00.0242990Z [1609/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-scalar-u4-acc4.c.o 2025-08-14T20:46:00.0466000Z [1610/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l1c1s1r-minmax-scalar-acc2.c.o 2025-08-14T20:46:00.0782110Z [1611/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-scalar-u1.c.o 2025-08-14T20:46:00.0888610Z [1612/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-scalar-u2-acc2.c.o 2025-08-14T20:46:00.0896310Z [1613/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-scalar-u4-acc2.c.o 2025-08-14T20:46:00.0983150Z [1614/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-scalar-u3-acc3.c.o 2025-08-14T20:46:00.1058020Z [1615/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/f32-conv-hwc-3x3s2p1c3x4-scalar-1x1.c.o 2025-08-14T20:46:00.1060730Z [1616/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-scalar-u4-acc4.c.o 2025-08-14T20:46:00.1063290Z [1617/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/f32-conv-hwc-3x3s2p0p1c3x4-scalar-1x1.c.o 2025-08-14T20:46:00.1246060Z [1618/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p1c-scalar.c.o 2025-08-14T20:46:00.1506130Z [1619/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p2c-minmax-scalar-acc2.c.o 2025-08-14T20:46:00.1764310Z [1620/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p1c-minmax-scalar.c.o 2025-08-14T20:46:00.1778850Z [1621/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p2c-scalar.c.o 2025-08-14T20:46:00.1997540Z [1622/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l1c1s1r-scalar-acc2.c.o 2025-08-14T20:46:00.1999550Z [1623/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p2c-scalar-acc2.c.o 2025-08-14T20:46:00.2134920Z [1624/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l1c1s1r-minmax-scalar-acc2.c.o 2025-08-14T20:46:00.2258230Z [1625/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l1c1s1r-scalar.c.o 2025-08-14T20:46:00.2386160Z [1626/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l1c1s1r-minmax-scalar.c.o 2025-08-14T20:46:00.2390760Z [1627/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l1c1s1r-scalar-acc2.c.o 2025-08-14T20:46:00.2480340Z [1628/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l1c1s1r-scalar.c.o 2025-08-14T20:46:00.2765580Z [1629/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p1c-minmax-scalar.c.o 2025-08-14T20:46:00.2855640Z [1630/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p2c-minmax-scalar-acc2.c.o 2025-08-14T20:46:00.2919710Z [1631/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p1c-scalar.c.o 2025-08-14T20:46:00.2969060Z [1632/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p2c-scalar-acc2.c.o 2025-08-14T20:46:00.2977320Z [1633/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p2c-minmax-scalar.c.o 2025-08-14T20:46:00.3222700Z [1634/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p2c-scalar.c.o 2025-08-14T20:46:00.3258430Z [1635/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p1c-minmax-scalar.c.o 2025-08-14T20:46:00.3453550Z [1636/5156] 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-08-14T20:46:00.3535360Z [1637/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p2c-minmax-scalar-acc2.c.o 2025-08-14T20:46:00.3808260Z [1638/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p1c-scalar.c.o 2025-08-14T20:46:00.4044170Z [1639/5156] 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-08-14T20:46:00.4121410Z [1640/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p2c-minmax-scalar.c.o 2025-08-14T20:46:00.4124000Z [1641/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p2c-scalar-acc2.c.o 2025-08-14T20:46:00.4132940Z [1642/5156] 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-08-14T20:46:00.4283430Z [1643/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p2c-scalar.c.o 2025-08-14T20:46:00.4421420Z [1644/5156] 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-08-14T20:46:00.4516440Z [1645/5156] 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-08-14T20:46:00.4695900Z [1646/5156] 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-08-14T20:46:00.4707400Z [1647/5156] 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-08-14T20:46:00.4916280Z [1648/5156] 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-08-14T20:46:00.5195670Z [1649/5156] 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-08-14T20:46:00.5335830Z [1650/5156] 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-08-14T20:46:00.5338100Z [1651/5156] 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-08-14T20:46:00.5378050Z [1652/5156] 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-08-14T20:46:00.5533360Z [1653/5156] 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-08-14T20:46:00.5536020Z [1654/5156] 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-08-14T20:46:00.5554660Z [1655/5156] 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-08-14T20:46:00.6004070Z [1656/5156] 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-08-14T20:46:00.6010860Z [1657/5156] 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-08-14T20:46:00.6234280Z [1658/5156] 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-08-14T20:46:00.6266480Z [1659/5156] 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-08-14T20:46:00.6293500Z [1660/5156] 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-08-14T20:46:00.6434300Z [1661/5156] 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-08-14T20:46:00.6442380Z [1662/5156] 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-08-14T20:46:00.6632260Z [1663/5156] 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-08-14T20:46:00.6675380Z [1664/5156] 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-08-14T20:46:00.6862470Z [1665/5156] 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-08-14T20:46:00.7210540Z [1666/5156] 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-08-14T20:46:00.7212430Z [1667/5156] 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-08-14T20:46:00.7376050Z [1668/5156] 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-08-14T20:46:00.7426990Z [1669/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-bitcast-u2.c.o 2025-08-14T20:46:00.7687130Z [1670/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-fabsf-u3.c.o 2025-08-14T20:46:00.7688640Z [1671/5156] 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-08-14T20:46:00.7773020Z [1672/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-fabsf-u1.c.o 2025-08-14T20:46:00.7876830Z [1673/5156] 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-08-14T20:46:00.7996600Z [1674/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-bitcast-u1.c.o 2025-08-14T20:46:00.8109150Z [1675/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-fabsf-u4.c.o 2025-08-14T20:46:00.8264160Z [1676/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-bitcast-u3.c.o 2025-08-14T20:46:00.8275590Z [1677/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x4-minmax-scalar.c.o 2025-08-14T20:46:00.8498380Z [1678/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-2x4-minmax-scalar.c.o 2025-08-14T20:46:00.8551960Z [1679/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x2-relu-scalar.c.o 2025-08-14T20:46:00.8650580Z [1680/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-scalar-p1.c.o 2025-08-14T20:46:00.8761830Z [1681/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear/gen/f32-ibilinear-scalar-c1.c.o 2025-08-14T20:46:00.8854960Z [1682/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x4-minmax-scalar.c.o 2025-08-14T20:46:00.9064430Z [1683/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear/gen/f32-ibilinear-scalar-c4.c.o 2025-08-14T20:46:00.9163720Z [1684/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x2-relu-scalar.c.o 2025-08-14T20:46:00.9208230Z [1685/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-scalar-p2.c.o 2025-08-14T20:46:00.9394690Z [1686/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x4-minmax-scalar.c.o 2025-08-14T20:46:00.9414100Z [1687/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-3x3-minmax-scalar.c.o 2025-08-14T20:46:00.9447960Z [1688/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-08-14T20:46:00.9654120Z [1689/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x2-minmax-scalar.c.o 2025-08-14T20:46:00.9663220Z [1690/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-lut64-p2-u1.c.o 2025-08-14T20:46:00.9828960Z [1691/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-2x4-minmax-scalar.c.o 2025-08-14T20:46:01.0273050Z [1692/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-2x4-minmax-scalar.c.o 2025-08-14T20:46:01.0306580Z [1693/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x4-scalar.c.o 2025-08-14T20:46:01.0429640Z [1694/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x4-relu-scalar.c.o 2025-08-14T20:46:01.0457620Z [1695/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x2-minmax-scalar.c.o 2025-08-14T20:46:01.0513530Z [1696/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-2x4-minmax-scalar.c.o 2025-08-14T20:46:01.0577810Z [1697/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-2x4-relu-scalar.c.o 2025-08-14T20:46:01.0610910Z [1698/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-2x4-scalar.c.o 2025-08-14T20:46:01.0952750Z [1699/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x2-relu-scalar.c.o 2025-08-14T20:46:01.1100830Z [1700/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x2-minmax-scalar.c.o 2025-08-14T20:46:01.1298390Z [1701/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x2-scalar.c.o 2025-08-14T20:46:01.1424130Z [1702/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-spmm/gen/f32-qc8w-spmm-2x1-minmax-scalar.c.o 2025-08-14T20:46:01.1546310Z [1703/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x4-scalar.c.o 2025-08-14T20:46:01.1549880Z [1704/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x4-relu-scalar.c.o 2025-08-14T20:46:01.1553250Z [1705/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-spmm/gen/f32-qc8w-spmm-8x1-minmax-scalar.c.o 2025-08-14T20:46:01.1556250Z [1706/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-spmm/gen/f32-qc8w-spmm-1x1-minmax-scalar.c.o 2025-08-14T20:46:01.1635090Z [1707/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-spmm/gen/f32-qc8w-spmm-4x1-minmax-scalar.c.o 2025-08-14T20:46:01.1858420Z [1708/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-spmm/gen/f32-qc8w-spmm-8x2-minmax-scalar.c.o 2025-08-14T20:46:01.1893250Z [1709/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-fmagic-u1.c.o 2025-08-14T20:46:01.2097520Z [1710/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-spmm/gen/f32-qc8w-spmm-8x4-minmax-scalar.c.o 2025-08-14T20:46:01.2387690Z [1711/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-fmagic-u2.c.o 2025-08-14T20:46:01.2417670Z [1712/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-fmagic-u3.c.o 2025-08-14T20:46:01.2562220Z [1713/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-fmagic-u4.c.o 2025-08-14T20:46:01.2622630Z [1714/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-imagic-u2.c.o 2025-08-14T20:46:01.2690530Z [1715/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-imagic-u3.c.o 2025-08-14T20:46:01.2720730Z [1716/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-lrintf-u1.c.o 2025-08-14T20:46:01.2750970Z [1717/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-lrintf-u2.c.o 2025-08-14T20:46:01.2977100Z [1718/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-fmagic-u1.c.o 2025-08-14T20:46:01.3048760Z [1719/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-fmagic-u2.c.o 2025-08-14T20:46:01.3114360Z [1720/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-lrintf-u3.c.o 2025-08-14T20:46:01.3522770Z [1721/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-fmagic-u3.c.o 2025-08-14T20:46:01.3647030Z [1722/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-imagic-u3.c.o 2025-08-14T20:46:01.3743680Z [1723/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-lrintf-u1.c.o 2025-08-14T20:46:01.3758490Z [1724/5156] 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-08-14T20:46:01.3849440Z [1725/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-lrintf-u2.c.o 2025-08-14T20:46:01.4010810Z [1726/5156] 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-08-14T20:46:01.4159740Z [1727/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-fmagic-u4.c.o 2025-08-14T20:46:01.4313640Z [1728/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-lrintf-u3.c.o 2025-08-14T20:46:01.4316670Z [1729/5156] 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-08-14T20:46:01.4326610Z [1730/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-p5-u1.c.o 2025-08-14T20:46:01.4501430Z [1731/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-p5-u2-acc2.c.o 2025-08-14T20:46:01.4568930Z [1732/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmax-scalar-u1.c.o 2025-08-14T20:46:01.4791470Z [1733/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmax-scalar-u2-acc2.c.o 2025-08-14T20:46:01.4945500Z [1734/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-imagic-u2.c.o 2025-08-14T20:46:01.5014190Z [1735/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmax-scalar-u3-acc3.c.o 2025-08-14T20:46:01.5206840Z [1736/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-scalar-u2-acc2.c.o 2025-08-14T20:46:01.5264620Z [1737/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-scalar-u3-acc3.c.o 2025-08-14T20:46:01.5333300Z [1738/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-scalar-u1.c.o 2025-08-14T20:46:01.5404890Z [1739/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-scalar-u4-acc2.c.o 2025-08-14T20:46:01.5487160Z [1740/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-p5-u4-acc4.c.o 2025-08-14T20:46:01.5593560Z [1741/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-scalar-u4.c.o 2025-08-14T20:46:01.6038230Z [1742/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmax-scalar-u4-acc2.c.o 2025-08-14T20:46:01.6040750Z [1743/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-scalar-u4-acc4.c.o 2025-08-14T20:46:01.6060310Z [1744/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rsum/gen/f32-rsum-scalar-u1.c.o 2025-08-14T20:46:01.6201340Z [1745/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rminmax-scalar-u2-acc2.c.o 2025-08-14T20:46:01.6233090Z [1746/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rminmax-scalar-u3-acc3.c.o 2025-08-14T20:46:01.6300070Z [1747/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rminmax-scalar-u1.c.o 2025-08-14T20:46:01.6308450Z [1748/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rsum/gen/f32-rsum-scalar-u2-acc2.c.o 2025-08-14T20:46:01.6646170Z [1749/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rminmax-scalar-u4-acc2.c.o 2025-08-14T20:46:01.6655920Z [1750/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rsum/gen/f32-rsum-scalar-u3-acc3.c.o 2025-08-14T20:46:01.6997520Z [1751/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-2x1-minmax-scalar-pipelined.c.o 2025-08-14T20:46:01.7010740Z [1752/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-1x1-minmax-scalar-pipelined.c.o 2025-08-14T20:46:01.7069150Z [1753/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-2x1-minmax-scalar.c.o 2025-08-14T20:46:01.7131560Z [1754/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-scalar-pipelined.c.o 2025-08-14T20:46:01.7260780Z [1755/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-scalar-u1.c.o 2025-08-14T20:46:01.7313670Z [1756/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rsum/gen/f32-rsum-scalar-u4-acc2.c.o 2025-08-14T20:46:01.7489770Z [1757/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-scalar-u2.c.o 2025-08-14T20:46:01.7495800Z [1758/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-scalar-pipelined.c.o 2025-08-14T20:46:01.7565430Z [1759/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-scalar.c.o 2025-08-14T20:46:01.7585900Z [1760/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-1x1-minmax-scalar.c.o 2025-08-14T20:46:01.8086930Z [1761/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-scalar-u4.c.o 2025-08-14T20:46:01.8089570Z [1762/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-scalar-u1.c.o 2025-08-14T20:46:01.8093540Z [1763/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-scalar-u2.c.o 2025-08-14T20:46:01.8131950Z [1764/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-scalar-u1.c.o 2025-08-14T20:46:01.8383660Z [1765/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-scalar-u4.c.o 2025-08-14T20:46:01.8433370Z [1766/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-scalar-u4.c.o 2025-08-14T20:46:01.8592550Z [1767/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-scalar-u1.c.o 2025-08-14T20:46:01.8615320Z [1768/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-scalar-u8.c.o 2025-08-14T20:46:01.8619390Z [1769/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-scalar-u4.c.o 2025-08-14T20:46:01.8843970Z [1770/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmax-scalar-u1.c.o 2025-08-14T20:46:01.9153880Z [1771/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-scalar-u8.c.o 2025-08-14T20:46:01.9155730Z [1772/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmax-scalar-u2.c.o 2025-08-14T20:46:01.9245570Z [1773/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmax-scalar-u4.c.o 2025-08-14T20:46:01.9368410Z [1774/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmaxc-scalar-u2.c.o 2025-08-14T20:46:01.9375410Z [1775/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmaxc-scalar-u1.c.o 2025-08-14T20:46:01.9382510Z [1776/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmin-scalar-u1.c.o 2025-08-14T20:46:01.9693270Z [1777/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmin-scalar-u4.c.o 2025-08-14T20:46:01.9696000Z [1778/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmaxc-scalar-u4.c.o 2025-08-14T20:46:01.9702070Z [1779/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmin-scalar-u2.c.o 2025-08-14T20:46:01.9961730Z [1780/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vminc-scalar-u1.c.o 2025-08-14T20:46:02.0269500Z [1781/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vminc-scalar-u2.c.o 2025-08-14T20:46:02.0272530Z [1782/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-scalar-u1.c.o 2025-08-14T20:46:02.0331900Z [1783/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vminc-scalar-u4.c.o 2025-08-14T20:46:02.0430880Z [1784/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-scalar-u1.c.o 2025-08-14T20:46:02.0715320Z [1785/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-scalar-u2.c.o 2025-08-14T20:46:02.0716720Z [1786/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-scalar-u4.c.o 2025-08-14T20:46:02.0880430Z [1787/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-scalar-u4.c.o 2025-08-14T20:46:02.0889810Z [1788/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-scalar-u2.c.o 2025-08-14T20:46:02.1032470Z [1789/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vprelu-scalar-u2.c.o 2025-08-14T20:46:02.1059690Z [1790/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vprelu-scalar-u1.c.o 2025-08-14T20:46:02.1203460Z [1791/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vprelu-scalar-u4.c.o 2025-08-14T20:46:02.1372360Z [1792/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vpreluc-scalar-u4.c.o 2025-08-14T20:46:02.1379480Z [1793/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vpreluc-scalar-u2.c.o 2025-08-14T20:46:02.1630240Z [1794/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vpreluc-scalar-u1.c.o 2025-08-14T20:46:02.1805720Z [1795/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-scalar-u4.c.o 2025-08-14T20:46:02.1941110Z [1796/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-scalar-u8.c.o 2025-08-14T20:46:02.1994190Z [1797/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrpreluc-scalar-u1.c.o 2025-08-14T20:46:02.2087910Z [1798/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-scalar-u1.c.o 2025-08-14T20:46:02.2115180Z [1799/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrpreluc-scalar-u4.c.o 2025-08-14T20:46:02.2244510Z [1800/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-scalar-u1.c.o 2025-08-14T20:46:02.2357080Z [1801/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-scalar-u2.c.o 2025-08-14T20:46:02.2360920Z [1802/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-scalar-u4.c.o 2025-08-14T20:46:02.2627940Z [1803/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrpreluc-scalar-u2.c.o 2025-08-14T20:46:02.2812350Z [1804/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiff-scalar-u1.c.o 2025-08-14T20:46:02.3061060Z [1805/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiffc-scalar-u2.c.o 2025-08-14T20:46:02.3063980Z [1806/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-scalar-u2.c.o 2025-08-14T20:46:02.3174690Z [1807/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiffc-scalar-u1.c.o 2025-08-14T20:46:02.3197570Z [1808/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiff-scalar-u2.c.o 2025-08-14T20:46:02.3354180Z [1809/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiffc-scalar-u4.c.o 2025-08-14T20:46:02.3355340Z [1810/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-scalar-u4.c.o 2025-08-14T20:46:02.3509920Z [1811/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-scalar-u1.c.o 2025-08-14T20:46:02.3592250Z [1812/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiff-scalar-u4.c.o 2025-08-14T20:46:02.3645710Z [1813/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-scalar-u1.c.o 2025-08-14T20:46:02.3732220Z [1814/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-scalar-u2.c.o 2025-08-14T20:46:02.4015750Z [1815/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-scalar-u4.c.o 2025-08-14T20:46:02.4099080Z [1816/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vclamp/gen/f32-vclamp-scalar-u1.c.o 2025-08-14T20:46:02.4415090Z [1817/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vcmul/gen/f32-vcmul-scalar-u1.c.o 2025-08-14T20:46:02.4423290Z [1818/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vclamp/gen/f32-vclamp-scalar-u2.c.o 2025-08-14T20:46:02.4426680Z [1819/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vcmul/gen/f32-vcmul-scalar-u8.c.o 2025-08-14T20:46:02.4594410Z [1820/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-u1.c.o 2025-08-14T20:46:02.4617780Z [1821/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vcmul/gen/f32-vcmul-scalar-u2.c.o 2025-08-14T20:46:02.4682370Z [1822/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-u5.c.o 2025-08-14T20:46:02.4826110Z [1823/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-u6.c.o 2025-08-14T20:46:02.5104250Z [1824/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-u3.c.o 2025-08-14T20:46:02.5209060Z [1825/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-p6-u2.c.o 2025-08-14T20:46:02.5232730Z [1826/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-p6-u1.c.o 2025-08-14T20:46:02.5392480Z [1827/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-p6-u4.c.o 2025-08-14T20:46:02.5457430Z [1828/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-p6-u5.c.o 2025-08-14T20:46:02.5503030Z [1829/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-p6-u3.c.o 2025-08-14T20:46:02.5519350Z [1830/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-p6-u6.c.o 2025-08-14T20:46:02.5688420Z [1831/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vgelu/gen/f32-vgelu-scalar.c.o 2025-08-14T20:46:02.5763740Z [1832/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-scalar-u1.c.o 2025-08-14T20:46:02.5920030Z [1833/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlog/gen/f32-vlog-scalar-log.c.o 2025-08-14T20:46:02.6305030Z [1834/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-scalar-u1.c.o 2025-08-14T20:46:02.6305830Z [1835/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-scalar-u2.c.o 2025-08-14T20:46:02.6480080Z [1836/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlrelu/gen/f32-vlrelu-scalar-u2.c.o 2025-08-14T20:46:02.6503810Z [1837/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c4-minmax-scalar-2x.c.o 2025-08-14T20:46:02.6618280Z [1838/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlrelu/gen/f32-vlrelu-scalar-u1.c.o 2025-08-14T20:46:02.6659230Z [1839/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c2-minmax-scalar-2x.c.o 2025-08-14T20:46:02.6726470Z [1840/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-scalar-u2.c.o 2025-08-14T20:46:02.6736580Z [1841/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x32c4-gemm-goi-scalar.c.o 2025-08-14T20:46:02.6934760Z [1842/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndd-scalar-libm-u2.c.o 2025-08-14T20:46:02.7213560Z [1843/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndne-scalar-libm-u2.c.o 2025-08-14T20:46:02.7255980Z [1844/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndu-scalar-libm-u2.c.o 2025-08-14T20:46:02.7306390Z [1845/5156] 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-08-14T20:46:02.7509550Z [1846/5156] 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-08-14T20:46:02.7716790Z [1847/5156] 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-08-14T20:46:02.7723690Z [1848/5156] 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-08-14T20:46:02.7763460Z [1849/5156] 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-08-14T20:46:02.7933150Z [1850/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrsqrt/gen/f32-vrsqrt-scalar-rsqrt-u2.c.o 2025-08-14T20:46:02.8063480Z [1851/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndz-scalar-libm-u2.c.o 2025-08-14T20:46:02.8298020Z [1852/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-p5-div-u4.c.o 2025-08-14T20:46:02.8319090Z [1853/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-p5-div-u2.c.o 2025-08-14T20:46:02.8357660Z [1854/5156] 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-08-14T20:46:02.8897950Z [1855/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-scalar-sqrt-u4.c.o 2025-08-14T20:46:02.8903120Z [1856/5156] 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-08-14T20:46:02.8949730Z [1857/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-p5-div-u1.c.o 2025-08-14T20:46:02.9041590Z [1858/5156] 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-08-14T20:46:02.9204710Z [1859/5156] 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-08-14T20:46:02.9211810Z [1860/5156] 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-08-14T20:46:02.9373260Z [1861/5156] 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-08-14T20:46:02.9384390Z [1862/5156] 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-08-14T20:46:02.9873310Z [1863/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-scalar-sqrt-u2.c.o 2025-08-14T20:46:03.0003750Z [1864/5156] 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-08-14T20:46:03.0008620Z [1865/5156] 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-08-14T20:46:03.0035500Z [1866/5156] 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-08-14T20:46:03.0039300Z [1867/5156] 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-08-14T20:46:03.0122370Z [1868/5156] 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-08-14T20:46:03.0230290Z [1869/5156] 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-08-14T20:46:03.0279580Z [1870/5156] 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-08-14T20:46:03.0922960Z [1871/5156] 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-08-14T20:46:03.1211630Z [1872/5156] 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-08-14T20:46:03.1214030Z [1873/5156] 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-08-14T20:46:03.1219470Z [1874/5156] 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-08-14T20:46:03.1251570Z [1875/5156] 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-08-14T20:46:03.1308690Z [1876/5156] 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-08-14T20:46:03.1315750Z [1877/5156] 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-08-14T20:46:03.1378360Z [1878/5156] 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-08-14T20:46:03.1484960Z [1879/5156] 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-08-14T20:46:03.1529100Z [1880/5156] 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-08-14T20:46:03.1885630Z [1881/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-08-14T20:46:03.2270340Z [1882/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-imagic.c.o 2025-08-14T20:46:03.2384660Z [1883/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-08-14T20:46:03.2387060Z [1884/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-08-14T20:46:03.2389270Z [1885/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-imagic.c.o 2025-08-14T20:46:03.2560710Z [1886/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-imagic.c.o 2025-08-14T20:46:03.2572750Z [1887/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-08-14T20:46:03.2663000Z [1888/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-08-14T20:46:03.2903590Z [1889/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-08-14T20:46:03.2906330Z [1890/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-08-14T20:46:03.3132390Z [1891/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-imagic.c.o 2025-08-14T20:46:03.3363390Z [1892/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-08-14T20:46:03.3510860Z [1893/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-imagic.c.o 2025-08-14T20:46:03.3516250Z [1894/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-08-14T20:46:03.3658800Z [1895/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-08-14T20:46:03.3752350Z [1896/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-08-14T20:46:03.3831650Z [1897/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-imagic.c.o 2025-08-14T20:46:03.4004890Z [1898/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-08-14T20:46:03.4008900Z [1899/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-imagic.c.o 2025-08-14T20:46:03.4098930Z [1900/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-08-14T20:46:03.4211860Z [1901/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-08-14T20:46:03.4548950Z [1902/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-08-14T20:46:03.4659960Z [1903/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-08-14T20:46:03.4679360Z [1904/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-imagic.c.o 2025-08-14T20:46:03.4841680Z [1905/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-08-14T20:46:03.4863790Z [1906/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-imagic.c.o 2025-08-14T20:46:03.4880130Z [1907/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-08-14T20:46:03.5071250Z [1908/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p1c-minmax-fp32-scalar-imagic.c.o 2025-08-14T20:46:03.5258230Z [1909/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p2c-minmax-fp32-scalar-fmagic.c.o 2025-08-14T20:46:03.5410120Z [1910/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p4c-minmax-fp32-scalar-fmagic.c.o 2025-08-14T20:46:03.5485230Z [1911/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p1c-minmax-fp32-scalar-lrintf.c.o 2025-08-14T20:46:03.5789160Z [1912/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p4c-minmax-fp32-scalar-imagic.c.o 2025-08-14T20:46:03.5897930Z [1913/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p4c-minmax-fp32-scalar-lrintf.c.o 2025-08-14T20:46:03.6001410Z [1914/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p1c-minmax-fp32-scalar-lrintf.c.o 2025-08-14T20:46:03.6134170Z [1915/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p2c-minmax-rndnu-scalar.c.o 2025-08-14T20:46:03.6136700Z [1916/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p4c-minmax-rndnu-scalar.c.o 2025-08-14T20:46:03.6143180Z [1917/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p1c-minmax-rndnu-scalar.c.o 2025-08-14T20:46:03.6146590Z [1918/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p2c-minmax-fp32-scalar-fmagic.c.o 2025-08-14T20:46:03.6348640Z [1919/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p2c-minmax-fp32-scalar-imagic.c.o 2025-08-14T20:46:03.6376790Z [1920/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p4c-minmax-fp32-scalar-fmagic.c.o 2025-08-14T20:46:03.6424270Z [1921/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p4c-minmax-fp32-scalar-imagic.c.o 2025-08-14T20:46:03.6908630Z [1922/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-scalar-u2.c.o 2025-08-14T20:46:03.6972340Z [1923/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p4c-minmax-fp32-scalar-lrintf.c.o 2025-08-14T20:46:03.7136380Z [1924/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-scalar-u3.c.o 2025-08-14T20:46:03.7181510Z [1925/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x8c4-gemm-goi-scalar.c.o 2025-08-14T20:46:03.7220330Z [1926/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x8c4-gemm-gio-scalar.c.o 2025-08-14T20:46:03.7230600Z [1927/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x8c8-gemm-gio-scalar.c.o 2025-08-14T20:46:03.7317240Z [1928/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x8c8-gemm-goi-scalar.c.o 2025-08-14T20:46:03.7450130Z [1929/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x16c8-gemm-gio-scalar.c.o 2025-08-14T20:46:03.7458000Z [1930/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x16c4-gemm-goi-scalar.c.o 2025-08-14T20:46:03.7461790Z [1931/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x16c4-gemm-gio-scalar.c.o 2025-08-14T20:46:03.7992360Z [1932/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x32c4-gemm-gio-scalar.c.o 2025-08-14T20:46:03.8134690Z [1933/5156] 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-08-14T20:46:03.8186400Z [1934/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-imagic.c.o 2025-08-14T20:46:03.8239410Z [1935/5156] 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-08-14T20:46:03.8387800Z [1936/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x64c4-gemm-gio-scalar.c.o 2025-08-14T20:46:03.8390720Z [1937/5156] 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-08-14T20:46:03.8402280Z [1938/5156] 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-08-14T20:46:03.8561920Z [1939/5156] 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-08-14T20:46:03.8614180Z [1940/5156] 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-08-14T20:46:03.8718990Z [1941/5156] 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-08-14T20:46:03.9180600Z [1942/5156] 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-08-14T20:46:03.9298150Z [1943/5156] 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-08-14T20:46:03.9329140Z [1944/5156] 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-08-14T20:46:03.9461740Z [1945/5156] 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-08-14T20:46:03.9538440Z [1946/5156] 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-08-14T20:46:03.9711460Z [1947/5156] 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-08-14T20:46:03.9727840Z [1948/5156] 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-08-14T20:46:03.9795830Z [1949/5156] 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-08-14T20:46:03.9921270Z [1950/5156] 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-08-14T20:46:04.0256530Z [1951/5156] 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-08-14T20:46:04.0294570Z [1952/5156] 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-08-14T20:46:04.0297070Z [1953/5156] 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-08-14T20:46:04.0315510Z [1954/5156] 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-08-14T20:46:04.0551470Z [1955/5156] 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-08-14T20:46:04.0554620Z [1956/5156] 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-08-14T20:46:04.0844990Z [1957/5156] 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-08-14T20:46:04.1015850Z [1958/5156] 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-08-14T20:46:04.1076730Z [1959/5156] 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-08-14T20:46:04.1112160Z [1960/5156] 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-08-14T20:46:04.1368200Z [1961/5156] 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-08-14T20:46:04.1380920Z [1962/5156] 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-08-14T20:46:04.1412230Z [1963/5156] 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-08-14T20:46:04.1558110Z [1964/5156] 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-08-14T20:46:04.1650920Z [1965/5156] 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-08-14T20:46:04.1831930Z [1966/5156] 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-08-14T20:46:04.2146420Z [1967/5156] 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-08-14T20:46:04.2157990Z [1968/5156] 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-08-14T20:46:04.2183680Z [1969/5156] 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-08-14T20:46:04.2359250Z [1970/5156] 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-08-14T20:46:04.2403700Z [1971/5156] 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-08-14T20:46:04.2560720Z [1972/5156] 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-08-14T20:46:04.2601140Z [1973/5156] 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-08-14T20:46:04.2819950Z [1974/5156] 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-08-14T20:46:04.2893950Z [1975/5156] 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-08-14T20:46:04.3086640Z [1976/5156] 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-08-14T20:46:04.3272670Z [1977/5156] 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-08-14T20:46:04.3349070Z [1978/5156] 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-08-14T20:46:04.3480200Z [1979/5156] 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-08-14T20:46:04.3537700Z [1980/5156] 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-08-14T20:46:04.3610710Z [1981/5156] 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-08-14T20:46:04.3799890Z [1982/5156] 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-08-14T20:46:04.3804610Z [1983/5156] 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-08-14T20:46:04.3965030Z [1984/5156] 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-08-14T20:46:04.4316800Z [1985/5156] 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-08-14T20:46:04.4551360Z [1986/5156] 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-08-14T20:46:04.4556090Z [1987/5156] 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-08-14T20:46:04.4702400Z [1988/5156] 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-08-14T20:46:04.4704960Z [1989/5156] 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-08-14T20:46:04.4829180Z [1990/5156] 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-08-14T20:46:04.4830780Z [1991/5156] 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-08-14T20:46:04.5000380Z [1992/5156] 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-08-14T20:46:04.5001940Z [1993/5156] 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-08-14T20:46:04.5171990Z [1994/5156] 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-08-14T20:46:04.5457260Z [1995/5156] 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-08-14T20:46:04.5651050Z [1996/5156] 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-08-14T20:46:04.5908890Z [1997/5156] 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-08-14T20:46:04.5920820Z [1998/5156] 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-08-14T20:46:04.6086710Z [1999/5156] 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-08-14T20:46:04.6136680Z [2000/5156] 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-08-14T20:46:04.6142970Z [2001/5156] 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-08-14T20:46:04.6226570Z [2002/5156] 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-08-14T20:46:04.6308650Z [2003/5156] 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-08-14T20:46:04.6446970Z [2004/5156] 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-08-14T20:46:04.7018750Z [2005/5156] 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-08-14T20:46:04.7117770Z [2006/5156] 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-08-14T20:46:04.7227960Z [2007/5156] 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-08-14T20:46:04.7233090Z [2008/5156] 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-08-14T20:46:04.7319790Z [2009/5156] 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-08-14T20:46:04.7440610Z [2010/5156] 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-08-14T20:46:04.7647580Z [2011/5156] 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-08-14T20:46:04.7705440Z [2012/5156] 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-08-14T20:46:04.7760780Z [2013/5156] 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-08-14T20:46:04.7945850Z [2014/5156] 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-08-14T20:46:04.7965460Z [2015/5156] 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-08-14T20:46:04.8016600Z [2016/5156] 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-08-14T20:46:04.8174480Z [2017/5156] 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-08-14T20:46:04.8282180Z [2018/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rsum/gen/qs8-rsum-scalar-u1.c.o 2025-08-14T20:46:04.8441700Z [2019/5156] 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-08-14T20:46:04.8679620Z [2020/5156] 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-08-14T20:46:04.8776340Z [2021/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rsum/gen/qs8-rsum-scalar-u2.c.o 2025-08-14T20:46:04.8916330Z [2022/5156] 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-08-14T20:46:04.8918950Z [2023/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-scalar-u2.c.o 2025-08-14T20:46:04.8949830Z [2024/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-scalar-u2.c.o 2025-08-14T20:46:04.9027050Z [2025/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-08-14T20:46:04.9276880Z [2026/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-andxor-u2.c.o 2025-08-14T20:46:04.9293640Z [2027/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-andxor-u1.c.o 2025-08-14T20:46:04.9489890Z [2028/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-scalar-u2.c.o 2025-08-14T20:46:04.9511420Z [2029/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-select-u1.c.o 2025-08-14T20:46:04.9713080Z [2030/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-scalar-u1.c.o 2025-08-14T20:46:04.9802740Z [2031/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-select-u2.c.o 2025-08-14T20:46:04.9904310Z [2032/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-scalar-u2.c.o 2025-08-14T20:46:05.0078780Z [2033/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-scalar-u1.c.o 2025-08-14T20:46:05.0126920Z [2034/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-imagic.c.o 2025-08-14T20:46:05.0314180Z [2035/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-08-14T20:46:05.0468230Z [2036/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-scalar-u2.c.o 2025-08-14T20:46:05.0471310Z [2037/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-08-14T20:46:05.0605960Z [2038/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-imagic.c.o 2025-08-14T20:46:05.0613320Z [2039/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-08-14T20:46:05.0940080Z [2040/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-08-14T20:46:05.0957390Z [2041/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-08-14T20:46:05.1182390Z [2042/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-imagic.c.o 2025-08-14T20:46:05.1226090Z [2043/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-08-14T20:46:05.1351120Z [2044/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-imagic.c.o 2025-08-14T20:46:05.1544350Z [2045/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-08-14T20:46:05.1717760Z [2046/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-08-14T20:46:05.1741620Z [2047/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-08-14T20:46:05.1783860Z [2048/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-08-14T20:46:05.1928150Z [2049/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-imagic.c.o 2025-08-14T20:46:05.1968240Z [2050/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-08-14T20:46:05.2054400Z [2051/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-imagic.c.o 2025-08-14T20:46:05.2057230Z [2052/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-08-14T20:46:05.2135900Z [2053/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-08-14T20:46:05.2319290Z [2054/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-imagic.c.o 2025-08-14T20:46:05.2557270Z [2055/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-08-14T20:46:05.2887340Z [2056/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-imagic.c.o 2025-08-14T20:46:05.2955940Z [2057/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-08-14T20:46:05.3027850Z [2058/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p1c-minmax-fp32-scalar-lrintf.c.o 2025-08-14T20:46:05.3108690Z [2059/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p1c-minmax-fp32-scalar-imagic.c.o 2025-08-14T20:46:05.3121480Z [2060/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-08-14T20:46:05.3261650Z [2061/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p4c-minmax-fp32-scalar-fmagic.c.o 2025-08-14T20:46:05.3327130Z [2062/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p1c-minmax-rndnu-scalar.c.o 2025-08-14T20:46:05.3487310Z [2063/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p4c-minmax-fp32-scalar-imagic.c.o 2025-08-14T20:46:05.3653330Z [2064/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p2c-minmax-rndnu-scalar.c.o 2025-08-14T20:46:05.3742190Z [2065/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p2c-minmax-fp32-scalar-fmagic.c.o 2025-08-14T20:46:05.4006890Z [2066/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p4c-minmax-fp32-scalar-lrintf.c.o 2025-08-14T20:46:05.4046160Z [2067/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p2c-minmax-fp32-scalar-fmagic.c.o 2025-08-14T20:46:05.4190190Z [2068/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p1c-minmax-fp32-scalar-lrintf.c.o 2025-08-14T20:46:05.4208880Z [2069/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p2c-minmax-fp32-scalar-imagic.c.o 2025-08-14T20:46:05.4226140Z [2070/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p4c-minmax-rndnu-scalar.c.o 2025-08-14T20:46:05.4461270Z [2071/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p4c-minmax-fp32-scalar-imagic.c.o 2025-08-14T20:46:05.4568350Z [2072/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p4c-minmax-fp32-scalar-fmagic.c.o 2025-08-14T20:46:05.4736570Z [2073/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p4c-minmax-fp32-scalar-lrintf.c.o 2025-08-14T20:46:05.4741810Z [2074/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-scalar-u2.c.o 2025-08-14T20:46:05.5040090Z [2075/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x2-minmax-fp32-scalar-fmagic.c.o 2025-08-14T20:46:05.5056700Z [2076/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-scalar-u3.c.o 2025-08-14T20:46:05.5265330Z [2077/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x2-minmax-fp32-scalar-fmagic.c.o 2025-08-14T20:46:05.5309950Z [2078/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x2-minmax-rndnu-scalar.c.o 2025-08-14T20:46:05.5450310Z [2079/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4-minmax-fp32-scalar-fmagic.c.o 2025-08-14T20:46:05.5721570Z [2080/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4-minmax-rndnu-scalar.c.o 2025-08-14T20:46:05.5948950Z [2081/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4-minmax-fp32-scalar-imagic.c.o 2025-08-14T20:46:05.6008560Z [2082/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x2-minmax-fp32-scalar-lrintf.c.o 2025-08-14T20:46:05.6116320Z [2083/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x2-minmax-fp32-scalar-lrintf.c.o 2025-08-14T20:46:05.6129000Z [2084/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x2-minmax-fp32-scalar-fmagic.c.o 2025-08-14T20:46:05.6182940Z [2085/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x2-minmax-rndnu-scalar.c.o 2025-08-14T20:46:05.6225000Z [2086/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4-minmax-fp32-scalar-fmagic.c.o 2025-08-14T20:46:05.6232870Z [2087/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4-minmax-fp32-scalar-imagic.c.o 2025-08-14T20:46:05.6410050Z [2088/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4-minmax-fp32-scalar-lrintf.c.o 2025-08-14T20:46:05.6570010Z [2089/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4-minmax-rndnu-scalar.c.o 2025-08-14T20:46:05.7058100Z [2090/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x2-minmax-fp32-scalar-fmagic.c.o 2025-08-14T20:46:05.7201100Z [2091/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x2-minmax-fp32-scalar-lrintf.c.o 2025-08-14T20:46:05.7244600Z [2092/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x2-minmax-rndnu-scalar.c.o 2025-08-14T20:46:05.7353760Z [2093/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4-minmax-fp32-scalar-fmagic.c.o 2025-08-14T20:46:05.7380100Z [2094/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x2-minmax-fp32-scalar-imagic.c.o 2025-08-14T20:46:05.7404790Z [2095/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4-minmax-rndnu-scalar.c.o 2025-08-14T20:46:05.7552590Z [2096/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x2-minmax-fp32-scalar-fmagic.c.o 2025-08-14T20:46:05.7586600Z [2097/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4-minmax-fp32-scalar-imagic.c.o 2025-08-14T20:46:05.7750550Z [2098/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x2-minmax-fp32-scalar-imagic.c.o 2025-08-14T20:46:05.8001660Z [2099/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x2-minmax-fp32-scalar-lrintf.c.o 2025-08-14T20:46:05.8281540Z [2100/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4-minmax-fp32-scalar-fmagic.c.o 2025-08-14T20:46:05.8288590Z [2101/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x2-minmax-rndnu-scalar.c.o 2025-08-14T20:46:05.8380640Z [2102/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4-minmax-fp32-scalar-imagic.c.o 2025-08-14T20:46:05.8543900Z [2103/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4-minmax-rndnu-scalar.c.o 2025-08-14T20:46:05.8698500Z [2104/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4-minmax-fp32-scalar-imagic.c.o 2025-08-14T20:46:05.8737580Z [2105/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x2-minmax-fp32-scalar-lrintf.c.o 2025-08-14T20:46:05.8745250Z [2106/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4-minmax-fp32-scalar-fmagic.c.o 2025-08-14T20:46:05.8933390Z [2107/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x2-minmax-rndnu-scalar.c.o 2025-08-14T20:46:05.8938310Z [2108/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4-minmax-fp32-scalar-lrintf.c.o 2025-08-14T20:46:05.9252020Z [2109/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x2-minmax-fp32-scalar-fmagic.c.o 2025-08-14T20:46:05.9516170Z [2110/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4-minmax-rndnu-scalar.c.o 2025-08-14T20:46:05.9534900Z [2111/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x2-minmax-fp32-scalar-lrintf.c.o 2025-08-14T20:46:05.9587790Z [2112/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4-minmax-fp32-scalar-imagic.c.o 2025-08-14T20:46:05.9991020Z [2113/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4-minmax-fp32-scalar-fmagic.c.o 2025-08-14T20:46:06.0025940Z [2114/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4-minmax-fp32-scalar-lrintf.c.o 2025-08-14T20:46:06.0068080Z [2115/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x2-minmax-fp32-scalar-imagic.c.o 2025-08-14T20:46:06.0075700Z [2116/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x2-minmax-fp32-scalar-fmagic.c.o 2025-08-14T20:46:06.0090150Z [2117/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4-minmax-rndnu-scalar.c.o 2025-08-14T20:46:06.0303570Z [2118/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x2-minmax-rndnu-scalar.c.o 2025-08-14T20:46:06.0356980Z [2119/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x2-minmax-fp32-scalar-lrintf.c.o 2025-08-14T20:46:06.0706820Z [2120/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4-minmax-fp32-scalar-fmagic.c.o 2025-08-14T20:46:06.0842030Z [2121/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x2-minmax-rndnu-scalar.c.o 2025-08-14T20:46:06.0953480Z [2122/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4-minmax-fp32-scalar-imagic.c.o 2025-08-14T20:46:06.1347340Z [2123/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4-minmax-fp32-scalar-fmagic.c.o 2025-08-14T20:46:06.1396350Z [2124/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x2-minmax-rndnu-scalar.c.o 2025-08-14T20:46:06.1406760Z [2125/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x2-minmax-fp32-scalar-fmagic.c.o 2025-08-14T20:46:06.1573430Z [2126/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4-minmax-rndnu-scalar.c.o 2025-08-14T20:46:06.1576570Z [2127/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4-minmax-fp32-scalar-imagic.c.o 2025-08-14T20:46:06.1588550Z [2128/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x2-minmax-fp32-scalar-imagic.c.o 2025-08-14T20:46:06.1738880Z [2129/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-2x2-scalar.c.o 2025-08-14T20:46:06.1923660Z [2130/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4-minmax-rndnu-scalar.c.o 2025-08-14T20:46:06.1983040Z [2131/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x2-minmax-fp32-scalar-lrintf.c.o 2025-08-14T20:46:06.2113930Z [2132/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4-minmax-fp32-scalar-lrintf.c.o 2025-08-14T20:46:06.2418020Z [2133/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-rsum/gen/qu8-rsum-scalar-u1.c.o 2025-08-14T20:46:06.2520650Z [2134/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-scalar-u2.c.o 2025-08-14T20:46:06.2635260Z [2135/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-rsum/gen/qu8-rsum-scalar-u2.c.o 2025-08-14T20:46:06.2654420Z [2136/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-scalar-u2.c.o 2025-08-14T20:46:06.2779400Z [2137/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-scalar-u2.c.o 2025-08-14T20:46:06.2780180Z [2138/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-andxor-u1.c.o 2025-08-14T20:46:06.3010820Z [2139/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-select-u2.c.o 2025-08-14T20:46:06.3127470Z [2140/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-select-u1.c.o 2025-08-14T20:46:06.3130310Z [2141/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-andxor-u2.c.o 2025-08-14T20:46:06.3207570Z [2142/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-scalar-u1.c.o 2025-08-14T20:46:06.3397030Z [2143/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-scalar-u2.c.o 2025-08-14T20:46:06.3474010Z [2144/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-scalar-u1.c.o 2025-08-14T20:46:06.3738920Z [2145/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-scalar-u2.c.o 2025-08-14T20:46:06.3764980Z [2146/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-ibilinear/gen/s8-ibilinear-scalar-c2.c.o 2025-08-14T20:46:06.3899490Z [2147/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-scalar-u2.c.o 2025-08-14T20:46:06.3932800Z [2148/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-scalar-u1.c.o 2025-08-14T20:46:06.3983560Z [2149/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-ibilinear/gen/u8-ibilinear-scalar-c2.c.o 2025-08-14T20:46:06.4163960Z [2150/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-ibilinear/gen/u8-ibilinear-scalar-c4.c.o 2025-08-14T20:46:06.4261670Z [2151/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-scalar-u16.c.o 2025-08-14T20:46:06.4271810Z [2152/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-ibilinear/gen/s8-ibilinear-scalar-c4.c.o 2025-08-14T20:46:06.4423980Z [2153/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-packw/gen/x8-packw-x2-gemm-goi-scalar-u2.c.o 2025-08-14T20:46:06.4491880Z [2154/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-scalar-u8.c.o 2025-08-14T20:46:06.4672990Z [2155/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-packw/gen/x8-packw-x4-gemm-goi-scalar-u4.c.o 2025-08-14T20:46:06.4783610Z [2156/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-packw/gen/x8-packw-x2-gemm-goi-scalar-u4.c.o 2025-08-14T20:46:06.4787340Z [2157/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-packw/gen/x8-packw-x8-gemm-goi-scalar-u4.c.o 2025-08-14T20:46:06.5058950Z [2158/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-packw/gen/x8-packw-x8c8-gemm-gio-scalar.c.o 2025-08-14T20:46:06.5066910Z [2159/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-packw/gen/x8-packw-x16-gemm-goi-scalar-u4.c.o 2025-08-14T20:46:06.5275220Z [2160/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-1x2-scalar-int.c.o 2025-08-14T20:46:06.5286550Z [2161/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-1x4-scalar-int.c.o 2025-08-14T20:46:06.5493790Z [2162/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-packw/gen/x8-packw-x32-gemm-goi-scalar-u4.c.o 2025-08-14T20:46:06.5502560Z [2163/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-4x1-scalar-int.c.o 2025-08-14T20:46:06.5555750Z [2164/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-2x1-scalar-int.c.o 2025-08-14T20:46:06.5771590Z [2165/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-2x2-scalar-int.c.o 2025-08-14T20:46:06.5912810Z [2166/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-4x2-scalar-int.c.o 2025-08-14T20:46:06.6047630Z [2167/5156] 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-08-14T20:46:06.6055140Z [2168/5156] 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-08-14T20:46:06.6235490Z [2169/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-1x2-scalar-int.c.o 2025-08-14T20:46:06.6274820Z [2170/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-4x4-scalar-int.c.o 2025-08-14T20:46:06.6277680Z [2171/5156] 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-08-14T20:46:06.6395910Z [2172/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-2x1-scalar-int.c.o 2025-08-14T20:46:06.6457030Z [2173/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-1x4-scalar-int.c.o 2025-08-14T20:46:06.6537320Z [2174/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-2x2-scalar-int.c.o 2025-08-14T20:46:06.6639310Z [2175/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x1-scalar-int.c.o 2025-08-14T20:46:06.6884780Z [2176/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x2-scalar-int.c.o 2025-08-14T20:46:06.7112630Z [2177/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-1x4-scalar.c.o 2025-08-14T20:46:06.7296300Z [2178/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-2x4-scalar.c.o 2025-08-14T20:46:06.7310740Z [2179/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-2x1-scalar.c.o 2025-08-14T20:46:06.7324850Z [2180/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/x32-packx-2x-scalar.c.o 2025-08-14T20:46:06.7478800Z [2181/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-scalar-int.c.o 2025-08-14T20:46:06.7480920Z [2182/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-4x2-scalar.c.o 2025-08-14T20:46:06.7507210Z [2183/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-4x1-scalar.c.o 2025-08-14T20:46:06.7692150Z [2184/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p16c-minmax-neon-acc2.c.o 2025-08-14T20:46:06.7693180Z [2185/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-4x4-scalar.c.o 2025-08-14T20:46:06.7964150Z [2186/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packb/gen/x32-packb-2c1s1r-gemm-scalar-float.c.o 2025-08-14T20:46:06.8194550Z [2187/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packb/gen/x32-packb-2c1s1r-gemm-scalar-int.c.o 2025-08-14T20:46:06.8396470Z [2188/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packb/gen/x32-packb-4c1s1r-gemm-scalar-int.c.o 2025-08-14T20:46:06.8404050Z [2189/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packb/gen/x32-packb-2c2s1r-gemm-scalar-int.c.o 2025-08-14T20:46:06.8439330Z [2190/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packb/gen/x32-packb-2c2s1r-gemm-scalar-float.c.o 2025-08-14T20:46:06.8444820Z [2191/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packb/gen/x32-packb-4c4s1r-gemm-scalar-float.c.o 2025-08-14T20:46:06.8612280Z [2192/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packb/gen/x32-packb-4c1s1r-gemm-scalar-float.c.o 2025-08-14T20:46:06.8613920Z [2193/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packb/gen/x32-packb-4c4s1r-gemm-scalar-int.c.o 2025-08-14T20:46:06.8638330Z [2194/5156] 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-08-14T20:46:06.8827920Z [2195/5156] 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-08-14T20:46:06.9262800Z [2196/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x4-gemm-gio-scalar.c.o 2025-08-14T20:46:06.9271510Z [2197/5156] 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-08-14T20:46:06.9441020Z [2198/5156] 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-08-14T20:46:06.9458810Z [2199/5156] 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-08-14T20:46:06.9464610Z [2200/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x8-gemm-gio-scalar.c.o 2025-08-14T20:46:06.9516200Z [2201/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x16-gemm-gio-scalar.c.o 2025-08-14T20:46:06.9634230Z [2202/5156] 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-08-14T20:46:06.9773020Z [2203/5156] 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-08-14T20:46:06.9880130Z [2204/5156] 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-08-14T20:46:07.0086780Z [2205/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x32-gemm-gio-scalar.c.o 2025-08-14T20:46:07.0164890Z [2206/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/x32-packx-3x-scalar.c.o 2025-08-14T20:46:07.0262140Z [2207/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/x32-packx-4x-scalar.c.o 2025-08-14T20:46:07.0390860Z [2208/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-1x4-scalar-int.c.o 2025-08-14T20:46:07.0439910Z [2209/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-1x2-scalar-int.c.o 2025-08-14T20:46:07.0622040Z [2210/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x1-scalar-int.c.o 2025-08-14T20:46:07.0749090Z [2211/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-scalar-float.c.o 2025-08-14T20:46:07.0760450Z [2212/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-1x2-scalar-float.c.o 2025-08-14T20:46:07.0918140Z [2213/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-1x4-scalar-float.c.o 2025-08-14T20:46:07.0921430Z [2214/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x1-scalar-float.c.o 2025-08-14T20:46:07.0951410Z [2215/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-scalar-int.c.o 2025-08-14T20:46:07.1152300Z [2216/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x1-scalar-float.c.o 2025-08-14T20:46:07.1217190Z [2217/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x4-scalar-float.c.o 2025-08-14T20:46:07.1321850Z [2218/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x1-scalar-int.c.o 2025-08-14T20:46:07.1390790Z [2219/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x2-scalar-float.c.o 2025-08-14T20:46:07.1647950Z [2220/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x2-scalar-int.c.o 2025-08-14T20:46:07.1782350Z [2221/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-scalar-int.c.o 2025-08-14T20:46:07.1923190Z [2222/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zerob/gen/x32-zerob-2c2s1r-gemm-scalar-float.c.o 2025-08-14T20:46:07.1942510Z [2223/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zerob/gen/x32-zerob-2c1s1r-gemm-scalar-float.c.o 2025-08-14T20:46:07.1952050Z [2224/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-scalar-float.c.o 2025-08-14T20:46:07.2133580Z [2225/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zerob/gen/x32-zerob-2c2s1r-gemm-scalar-int.c.o 2025-08-14T20:46:07.2250800Z [2226/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zerob/gen/x32-zerob-2c1s1r-gemm-scalar-int.c.o 2025-08-14T20:46:07.2420670Z [2227/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zerob/gen/x32-zerob-4c1s1r-gemm-scalar-int.c.o 2025-08-14T20:46:07.2423500Z [2228/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zerob/gen/x32-zerob-4c4s1r-gemm-scalar-float.c.o 2025-08-14T20:46:07.2648710Z [2229/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zerob/gen/x32-zerob-4c1s1r-gemm-scalar-float.c.o 2025-08-14T20:46:07.2709540Z [2230/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zerob/gen/x32-zerob-4c4s1r-gemm-scalar-int.c.o 2025-08-14T20:46:07.2852870Z [2231/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-1x2-scalar-float.c.o 2025-08-14T20:46:07.2863480Z [2232/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-1x2-scalar-int.c.o 2025-08-14T20:46:07.3090040Z [2233/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x1-scalar-float.c.o 2025-08-14T20:46:07.3285260Z [2234/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-4x1-scalar-float.c.o 2025-08-14T20:46:07.3360700Z [2235/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-scalar-float.c.o 2025-08-14T20:46:07.3441230Z [2236/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x1-scalar-int.c.o 2025-08-14T20:46:07.3506190Z [2237/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l4c4s4r-minmax-neon-acc2.c.o 2025-08-14T20:46:07.3529860Z [2238/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-4x2-scalar-float.c.o 2025-08-14T20:46:07.3576930Z [2239/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-scalar-int.c.o 2025-08-14T20:46:07.3584870Z [2240/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-4x1-scalar-int.c.o 2025-08-14T20:46:07.4209610Z [2241/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neon-int16-u8.c.o 2025-08-14T20:46:07.4516860Z [2242/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neon-int16-u24.c.o 2025-08-14T20:46:07.4618710Z [2243/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neon-int32-u8.c.o 2025-08-14T20:46:07.4645900Z [2244/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p0p1c3x4-neon-2x1.c.o 2025-08-14T20:46:07.4651030Z [2245/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p0p1c3x8-neon-2x1.c.o 2025-08-14T20:46:07.4826320Z [2246/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neon-int32-u32.c.o 2025-08-14T20:46:07.4830900Z [2247/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p0p1c3x4-neon-2x2.c.o 2025-08-14T20:46:07.4889530Z [2248/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neon-int16-u32.c.o 2025-08-14T20:46:07.5202370Z [2249/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neon-int32-u16.c.o 2025-08-14T20:46:07.5357060Z [2250/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neon-int32-u24.c.o 2025-08-14T20:46:07.5443720Z [2251/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p0p1c3x8-neon-2x2.c.o 2025-08-14T20:46:07.5622030Z [2252/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p1c3x4-neon-2x1.c.o 2025-08-14T20:46:07.5933400Z [2253/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p1c3x4-neon-2x2.c.o 2025-08-14T20:46:07.5941260Z [2254/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p1c3x8-neon-2x2.c.o 2025-08-14T20:46:07.6160120Z [2255/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p1c3x8-neon-2x1.c.o 2025-08-14T20:46:07.6212510Z [2256/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p8c-minmax-neon-acc2.c.o 2025-08-14T20:46:07.6468000Z [2257/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-neon-acc2.c.o 2025-08-14T20:46:07.6552670Z [2258/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-neon.c.o 2025-08-14T20:46:07.6622820Z [2259/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p4c-minmax-neon-acc2.c.o 2025-08-14T20:46:07.6835660Z [2260/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p4c-minmax-neon.c.o 2025-08-14T20:46:07.7027140Z [2261/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p4c-minmax-neon.c.o 2025-08-14T20:46:07.7172820Z [2262/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p8c-minmax-neon-acc2.c.o 2025-08-14T20:46:07.7231400Z [2263/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p4c-minmax-neon-acc2.c.o 2025-08-14T20:46:07.7460910Z [2264/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p16c-minmax-neon.c.o 2025-08-14T20:46:07.7465670Z [2265/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l8c4s4r-minmax-neon-acc2.c.o 2025-08-14T20:46:07.7684310Z [2266/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l4c4s4r-minmax-neon-acc2.c.o 2025-08-14T20:46:07.7697720Z [2267/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p16c-minmax-neon-acc2.c.o 2025-08-14T20:46:07.7775520Z [2268/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l4c4s4r-minmax-neon.c.o 2025-08-14T20:46:07.8048850Z [2269/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l8c4s4r-minmax-neon-acc2.c.o 2025-08-14T20:46:07.8307560Z [2270/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l8c4s4r-minmax-neon-acc2.c.o 2025-08-14T20:46:07.8378670Z [2271/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l8c4s4r-minmax-neon.c.o 2025-08-14T20:46:07.8549790Z [2272/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l4c4s4r-minmax-neon.c.o 2025-08-14T20:46:07.9030230Z [2273/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p4c-minmax-neon-acc2.c.o 2025-08-14T20:46:07.9105830Z [2274/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-8x8s4-minmax-neon.c.o 2025-08-14T20:46:07.9134650Z [2275/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l8c4s4r-minmax-neon.c.o 2025-08-14T20:46:07.9171800Z [2276/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l8c4s4r-minmax-neon.c.o 2025-08-14T20:46:07.9179520Z [2277/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p8c-minmax-neon-acc2.c.o 2025-08-14T20:46:07.9268820Z [2278/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l4c4s4r-minmax-neon.c.o 2025-08-14T20:46:07.9352530Z [2279/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p4c-minmax-neon.c.o 2025-08-14T20:46:07.9924680Z [2280/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p16c-minmax-neon-acc2.c.o 2025-08-14T20:46:08.0016840Z [2281/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p4c-minmax-neon-acc2.c.o 2025-08-14T20:46:08.0113600Z [2282/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p16c-minmax-neon.c.o 2025-08-14T20:46:08.0269720Z [2283/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p16c-minmax-neon.c.o 2025-08-14T20:46:08.0498190Z [2284/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-neon.c.o 2025-08-14T20:46:08.0541980Z [2285/5156] 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-08-14T20:46:08.0563780Z [2286/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p4c-minmax-neon.c.o 2025-08-14T20:46:08.0590350Z [2287/5156] 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-08-14T20:46:08.0616340Z [2288/5156] 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-08-14T20:46:08.0878170Z [2289/5156] 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-08-14T20:46:08.1236810Z [2290/5156] 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-08-14T20:46:08.1264530Z [2291/5156] 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-08-14T20:46:08.1514530Z [2292/5156] 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-08-14T20:46:08.1529070Z [2293/5156] 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-08-14T20:46:08.2149330Z [2294/5156] 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-08-14T20:46:08.2153940Z [2295/5156] 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-08-14T20:46:08.2157590Z [2296/5156] 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-08-14T20:46:08.2167340Z [2297/5156] 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-08-14T20:46:08.2351880Z [2298/5156] 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-08-14T20:46:08.2709800Z [2299/5156] 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-08-14T20:46:08.2724660Z [2300/5156] 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-08-14T20:46:08.2864270Z [2301/5156] 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-08-14T20:46:08.2911890Z [2302/5156] 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-08-14T20:46:08.2934190Z [2303/5156] 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-08-14T20:46:08.3465470Z [2304/5156] 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-08-14T20:46:08.3594050Z [2305/5156] 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-08-14T20:46:08.3684080Z [2306/5156] 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-08-14T20:46:08.3722100Z [2307/5156] 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-08-14T20:46:08.3731530Z [2308/5156] 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-08-14T20:46:08.4193020Z [2309/5156] 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-08-14T20:46:08.4228970Z [2310/5156] 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-08-14T20:46:08.4272200Z [2311/5156] 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-08-14T20:46:08.4410100Z [2312/5156] 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-08-14T20:46:08.4668430Z [2313/5156] 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-08-14T20:46:08.5032860Z [2314/5156] 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-08-14T20:46:08.5042600Z [2315/5156] 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-08-14T20:46:08.5054060Z [2316/5156] 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-08-14T20:46:08.5302110Z [2317/5156] 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-08-14T20:46:08.5590600Z [2318/5156] 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-08-14T20:46:08.5716870Z [2319/5156] 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-08-14T20:46:08.5738020Z [2320/5156] 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-08-14T20:46:08.5787520Z [2321/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-neon-u16.c.o 2025-08-14T20:46:08.5887000Z [2322/5156] 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-08-14T20:46:08.6341930Z [2323/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-neon-u24.c.o 2025-08-14T20:46:08.6413930Z [2324/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-neon-dup-ld64.c.o 2025-08-14T20:46:08.6654090Z [2325/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-neon-u32.c.o 2025-08-14T20:46:08.6935920Z [2326/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8s4-minmax-neon.c.o 2025-08-14T20:46:08.6974110Z [2327/5156] 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-08-14T20:46:08.7228140Z [2328/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x16-minmax-neon-lane-ld128.c.o 2025-08-14T20:46:08.7274180Z [2329/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-2x16-minmax-neon-lane-ld128.c.o 2025-08-14T20:46:08.7459230Z [2330/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-3x16-minmax-neon-lane-ld128.c.o 2025-08-14T20:46:08.7606360Z [2331/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-neon-lane-ld128.c.o 2025-08-14T20:46:08.7651580Z [2332/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-neon-dup-ld64.c.o 2025-08-14T20:46:08.7723930Z [2333/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-neon-lane-ld64.c.o 2025-08-14T20:46:08.7884040Z [2334/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-neon-dup-ld128.c.o 2025-08-14T20:46:08.7887990Z [2335/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8s4-minmax-neon.c.o 2025-08-14T20:46:08.8173460Z [2336/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-5x8-minmax-neon-lane-ld64.c.o 2025-08-14T20:46:08.8457220Z [2337/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x16-minmax-neon-lane-ld128.c.o 2025-08-14T20:46:08.8799870Z [2338/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x2-minmax-neon-lane-ld64.c.o 2025-08-14T20:46:08.8972880Z [2339/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-5x16-minmax-neon-lane-ld128.c.o 2025-08-14T20:46:08.9007390Z [2340/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-neon-dup-ld128.c.o 2025-08-14T20:46:08.9141610Z [2341/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-neon-lane-ld64.c.o 2025-08-14T20:46:08.9189080Z [2342/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8s4-minmax-neon.c.o 2025-08-14T20:46:08.9207100Z [2343/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-neon-lane-ld128.c.o 2025-08-14T20:46:08.9460850Z [2344/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-neon-dup-ld64.c.o 2025-08-14T20:46:08.9499930Z [2345/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8-minmax-neon-lane-ld128.c.o 2025-08-14T20:46:08.9725000Z [2346/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x16-minmax-neon-lane-ld128.c.o 2025-08-14T20:46:09.0220160Z [2347/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8-minmax-neon-dup-ld64.c.o 2025-08-14T20:46:09.0320980Z [2348/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-8x8s4-minmax-neon.c.o 2025-08-14T20:46:09.0342520Z [2349/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-neon-dup-ld128.c.o 2025-08-14T20:46:09.0358960Z [2350/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8-minmax-neon-lane-ld64.c.o 2025-08-14T20:46:09.0503540Z [2351/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-neon-lane-ld64.c.o 2025-08-14T20:46:09.0537800Z [2352/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-neon-dup-ld64.c.o 2025-08-14T20:46:09.0670470Z [2353/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8s4-minmax-neon.c.o 2025-08-14T20:46:09.1337140Z [2354/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-5x8-minmax-neon-lane-ld64.c.o 2025-08-14T20:46:09.1432630Z [2355/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-neon-dup-ld128.c.o 2025-08-14T20:46:09.1441700Z [2356/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8s4-minmax-neon.c.o 2025-08-14T20:46:09.1612410Z [2357/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-neon-dup-ld64.c.o 2025-08-14T20:46:09.1858780Z [2358/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8s4-minmax-neon.c.o 2025-08-14T20:46:09.1897280Z [2359/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l32c8s8r-minmax-fp32-neon-mul16.c.o 2025-08-14T20:46:09.1906390Z [2360/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-neon-p4.c.o 2025-08-14T20:46:09.1916940Z [2361/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-neon-lane-ld128.c.o 2025-08-14T20:46:09.1979170Z [2362/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-neon-lane-ld128.c.o 2025-08-14T20:46:09.2073570Z [2363/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-neon-lane-ld64.c.o 2025-08-14T20:46:09.2568780Z [2364/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-neon-p16.c.o 2025-08-14T20:46:09.2810530Z [2365/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-neon-dup-ld64.c.o 2025-08-14T20:46:09.2812350Z [2366/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-neon-lane-ld128.c.o 2025-08-14T20:46:09.3008230Z [2367/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear/gen/f32-ibilinear-neon-c4.c.o 2025-08-14T20:46:09.3304120Z [2368/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x16-minmax-neon-lane-ld128.c.o 2025-08-14T20:46:09.3440740Z [2369/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x4-minmax-neon-lane-ld64.c.o 2025-08-14T20:46:09.3504390Z [2370/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-3x16-minmax-neon-lane-ld128.c.o 2025-08-14T20:46:09.3622490Z [2371/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-2x16-minmax-neon-lane-ld128.c.o 2025-08-14T20:46:09.3758080Z [2372/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x8s4-minmax-neon.c.o 2025-08-14T20:46:09.4037510Z [2373/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-neon-dup-ld128.c.o 2025-08-14T20:46:09.4194130Z [2374/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-neon-lane-ld64.c.o 2025-08-14T20:46:09.4221150Z [2375/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x16-minmax-neon-lane-ld128.c.o 2025-08-14T20:46:09.4224240Z [2376/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8s4-minmax-neon.c.o 2025-08-14T20:46:09.4339790Z [2377/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-neon-dup-ld64.c.o 2025-08-14T20:46:09.4950640Z [2378/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-neon-dup-ld128.c.o 2025-08-14T20:46:09.5005360Z [2379/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-5x16-minmax-neon-lane-ld128.c.o 2025-08-14T20:46:09.5138140Z [2380/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-neon-lane-ld64.c.o 2025-08-14T20:46:09.5155620Z [2381/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-neon-dup-ld64.c.o 2025-08-14T20:46:09.5169310Z [2382/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x2-minmax-neon-lane-ld64.c.o 2025-08-14T20:46:09.5257530Z [2383/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-neon-lane-ld128.c.o 2025-08-14T20:46:09.5378320Z [2384/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x8-minmax-neon-prfm.c.o 2025-08-14T20:46:09.5400860Z [2385/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8s4-minmax-neon.c.o 2025-08-14T20:46:09.5424530Z [2386/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x16-minmax-neon-lane-ld128.c.o 2025-08-14T20:46:09.5586060Z [2387/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-8x8s4-minmax-neon.c.o 2025-08-14T20:46:09.6410260Z [2388/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x8-minmax-neon.c.o 2025-08-14T20:46:09.6473220Z [2389/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-8x8-minmax-neon-prfm.c.o 2025-08-14T20:46:09.6616970Z [2390/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-8x8-minmax-neon.c.o 2025-08-14T20:46:09.6622080Z [2391/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x16-minmax-neon-prfm.c.o 2025-08-14T20:46:09.6625160Z [2392/5156] 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-08-14T20:46:09.6799780Z [2393/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x16-minmax-neon.c.o 2025-08-14T20:46:09.6898390Z [2394/5156] 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-08-14T20:46:09.6930780Z [2395/5156] 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-08-14T20:46:09.7147800Z [2396/5156] 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-08-14T20:46:09.7682820Z [2397/5156] 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-08-14T20:46:09.7892320Z [2398/5156] 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-08-14T20:46:09.8043260Z [2399/5156] 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-08-14T20:46:09.8045490Z [2400/5156] 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-08-14T20:46:09.8082470Z [2401/5156] 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-08-14T20:46:09.8212390Z [2402/5156] 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-08-14T20:46:09.8264900Z [2403/5156] 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-08-14T20:46:09.8274380Z [2404/5156] 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-08-14T20:46:09.8287270Z [2405/5156] 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-08-14T20:46:09.8807120Z [2406/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-neon-u16.c.o 2025-08-14T20:46:09.8841610Z [2407/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-neon-u8.c.o 2025-08-14T20:46:09.9022040Z [2408/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-neon-u24.c.o 2025-08-14T20:46:09.9350740Z [2409/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-neon-u8.c.o 2025-08-14T20:46:09.9486520Z [2410/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-neon-u16.c.o 2025-08-14T20:46:09.9506310Z [2411/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-p5-u4.c.o 2025-08-14T20:46:09.9520010Z [2412/5156] 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-08-14T20:46:09.9532250Z [2413/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-neon-u24.c.o 2025-08-14T20:46:09.9564000Z [2414/5156] 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-08-14T20:46:09.9786920Z [2415/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-lut64-p2-u4.c.o 2025-08-14T20:46:10.0280150Z [2416/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-p5-u16-acc2.c.o 2025-08-14T20:46:10.0430730Z [2417/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmax-neon-u4.c.o 2025-08-14T20:46:10.0514140Z [2418/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-p5-u8-acc2.c.o 2025-08-14T20:46:10.0775040Z [2419/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-p5-u16-acc4.c.o 2025-08-14T20:46:10.0822870Z [2420/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-neon-u4.c.o 2025-08-14T20:46:10.0960000Z [2421/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rdsum/gen/f32-rdsum-7p7x-minmax-neon-c64.c.o 2025-08-14T20:46:10.1185260Z [2422/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rdsum/gen/f32-rdsum-7p7x-minmax-neon-c32.c.o 2025-08-14T20:46:10.1315210Z [2423/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmax-neon-u8-acc2.c.o 2025-08-14T20:46:10.1330120Z [2424/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmax-neon-u16-acc2.c.o 2025-08-14T20:46:10.1484070Z [2425/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neon-rr2-p6-u4.c.o 2025-08-14T20:46:10.1498000Z [2426/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-neon-u8-acc2.c.o 2025-08-14T20:46:10.1577600Z [2427/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-neon-u12-acc3.c.o 2025-08-14T20:46:10.1728380Z [2428/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmax-neon-u12-acc3.c.o 2025-08-14T20:46:10.1874990Z [2429/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-neon-u16-acc4.c.o 2025-08-14T20:46:10.2012200Z [2430/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-neon-u16-acc2.c.o 2025-08-14T20:46:10.2019230Z [2431/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rminmax-neon-u4.c.o 2025-08-14T20:46:10.2396480Z [2432/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rsum/gen/f32-rsum-neon-u4.c.o 2025-08-14T20:46:10.2593080Z [2433/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rminmax-neon-u12-acc3.c.o 2025-08-14T20:46:10.2702800Z [2434/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rminmax-neon-u8-acc2.c.o 2025-08-14T20:46:10.2933680Z [2435/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rsum/gen/f32-rsum-neon-u12-acc3.c.o 2025-08-14T20:46:10.2950130Z [2436/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rsum/gen/f32-rsum-neon-u16-acc2.c.o 2025-08-14T20:46:10.3020860Z [2437/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rsum/gen/f32-rsum-neon-u8-acc2.c.o 2025-08-14T20:46:10.3099850Z [2438/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rminmax-neon-u16-acc2.c.o 2025-08-14T20:46:10.3487760Z [2439/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-neon.c.o 2025-08-14T20:46:10.3511810Z [2440/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-neon-pipelined.c.o 2025-08-14T20:46:10.3686290Z [2441/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-neon-pipelined.c.o 2025-08-14T20:46:10.3705480Z [2442/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-neon-x2.c.o 2025-08-14T20:46:10.3803170Z [2443/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-neon.c.o 2025-08-14T20:46:10.3908060Z [2444/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-neon-x2.c.o 2025-08-14T20:46:10.4080340Z [2445/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-12x1-minmax-neon.c.o 2025-08-14T20:46:10.4120820Z [2446/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x1-minmax-neon-pipelined.c.o 2025-08-14T20:46:10.4298400Z [2447/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x1-minmax-neon-x2.c.o 2025-08-14T20:46:10.4373170Z [2448/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-neon-u4.c.o 2025-08-14T20:46:10.4917820Z [2449/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-32x1-minmax-neon-pipelined.c.o 2025-08-14T20:46:10.5010490Z [2450/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x1-minmax-neon.c.o 2025-08-14T20:46:10.5054820Z [2451/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-neon-u4.c.o 2025-08-14T20:46:10.5203000Z [2452/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-32x1-minmax-neon-x2.c.o 2025-08-14T20:46:10.5214160Z [2453/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmaxc-neon-u4.c.o 2025-08-14T20:46:10.5270620Z [2454/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmax-neon-u4.c.o 2025-08-14T20:46:10.5337780Z [2455/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmin-neon-u4.c.o 2025-08-14T20:46:10.5499750Z [2456/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vminc-neon-u4.c.o 2025-08-14T20:46:10.5619490Z [2457/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-neon-u4.c.o 2025-08-14T20:46:10.5820920Z [2458/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-neon-u4.c.o 2025-08-14T20:46:10.6407070Z [2459/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vpreluc-neon-u4.c.o 2025-08-14T20:46:10.6432420Z [2460/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vprelu-neon-u4.c.o 2025-08-14T20:46:10.6520870Z [2461/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-neon-u4.c.o 2025-08-14T20:46:10.6526370Z [2462/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrpreluc-neon-u4.c.o 2025-08-14T20:46:10.6537100Z [2463/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiff-neon-u4.c.o 2025-08-14T20:46:10.6612960Z [2464/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-neon-u4.c.o 2025-08-14T20:46:10.6719110Z [2465/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-neon-u4.c.o 2025-08-14T20:46:10.7084190Z [2466/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiffc-neon-u4.c.o 2025-08-14T20:46:10.7103210Z [2467/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vclamp/gen/f32-vclamp-neon-u8.c.o 2025-08-14T20:46:10.7380590Z [2468/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vclamp/gen/f32-vclamp-neon-u4.c.o 2025-08-14T20:46:10.7661720Z [2469/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neon-rr2-lut16-p3-u12.c.o 2025-08-14T20:46:10.7847150Z [2470/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l16c8s8r-minmax-rndnu-neon-mul16.c.o 2025-08-14T20:46:10.7865960Z [2471/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vcmul/gen/f32-vcmul-neon-u12.c.o 2025-08-14T20:46:10.7886850Z [2472/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neon-rr2-lut16-p3-u4.c.o 2025-08-14T20:46:10.8050910Z [2473/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neon-rr2-lut16-p3-u16.c.o 2025-08-14T20:46:10.8056340Z [2474/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vcmul/gen/f32-vcmul-neon-u16.c.o 2025-08-14T20:46:10.8320780Z [2475/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vcmul/gen/f32-vcmul-neon-u4.c.o 2025-08-14T20:46:10.8695140Z [2476/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neon-rr2-p6-u12.c.o 2025-08-14T20:46:10.8736270Z [2477/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neon-rr2-p6-u16.c.o 2025-08-14T20:46:10.8746560Z [2478/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neon-rr2-p6-u8.c.o 2025-08-14T20:46:10.8800820Z [2479/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-neon-u4.c.o 2025-08-14T20:46:10.9025530Z [2480/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-neon-u8.c.o 2025-08-14T20:46:10.9030910Z [2481/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-neon-u4.c.o 2025-08-14T20:46:10.9268590Z [2482/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlrelu/gen/f32-vlrelu-neon-u4.c.o 2025-08-14T20:46:10.9333140Z [2483/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-neon-u8.c.o 2025-08-14T20:46:10.9362890Z [2484/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c8-minmax-neon-2x.c.o 2025-08-14T20:46:10.9580260Z [2485/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndd-neon-u4.c.o 2025-08-14T20:46:11.0022560Z [2486/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndu-neon-u4.c.o 2025-08-14T20:46:11.0041240Z [2487/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndne-neon-u4.c.o 2025-08-14T20:46:11.0059180Z [2488/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndz-neon-u4.c.o 2025-08-14T20:46:11.0271200Z [2489/5156] 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-08-14T20:46:11.0376970Z [2490/5156] 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-08-14T20:46:11.0392770Z [2491/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrsqrt/gen/f32-vrsqrt-neon-rsqrt-u4.c.o 2025-08-14T20:46:11.0825300Z [2492/5156] 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-08-14T20:46:11.1021230Z [2493/5156] 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-08-14T20:46:11.1139080Z [2494/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrsqrt/gen/f32-vrsqrt-neon-rsqrt-u8.c.o 2025-08-14T20:46:11.1175940Z [2495/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-p5-nr2recps-u4.c.o 2025-08-14T20:46:11.1179500Z [2496/5156] 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-08-14T20:46:11.1338370Z [2497/5156] 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-08-14T20:46:11.1569970Z [2498/5156] 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-08-14T20:46:11.1680170Z [2499/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-p5-nr2recps-u12.c.o 2025-08-14T20:46:11.1756990Z [2500/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-p5-nr2recps-u8.c.o 2025-08-14T20:46:11.1891600Z [2501/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-p5-nr2recps-u16.c.o 2025-08-14T20:46:11.2410740Z [2502/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vtanh/gen/f32-vtanh-neon-rational-9-8-nr.c.o 2025-08-14T20:46:11.2520320Z [2503/5156] 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-08-14T20:46:11.2666730Z [2504/5156] 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-08-14T20:46:11.2675670Z [2505/5156] 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-08-14T20:46:11.2687560Z [2506/5156] 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-08-14T20:46:11.3077740Z [2507/5156] 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-08-14T20:46:11.3133900Z [2508/5156] 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-08-14T20:46:11.3138450Z [2509/5156] 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-08-14T20:46:11.3204990Z [2510/5156] 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-08-14T20:46:11.3366600Z [2511/5156] 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-08-14T20:46:11.3830870Z [2512/5156] 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-08-14T20:46:11.3968380Z [2513/5156] 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-08-14T20:46:11.4045210Z [2514/5156] 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-08-14T20:46:11.4149310Z [2515/5156] 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-08-14T20:46:11.4582080Z [2516/5156] 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-08-14T20:46:11.4765350Z [2517/5156] 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-08-14T20:46:11.4825980Z [2518/5156] 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-08-14T20:46:11.4834510Z [2519/5156] 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-08-14T20:46:11.4953170Z [2520/5156] 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-08-14T20:46:11.5044230Z [2521/5156] 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-08-14T20:46:11.5374940Z [2522/5156] 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-08-14T20:46:11.5407670Z [2523/5156] 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-08-14T20:46:11.5467260Z [2524/5156] 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-08-14T20:46:11.5491310Z [2525/5156] 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-08-14T20:46:11.6135020Z [2526/5156] 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-08-14T20:46:11.6249650Z [2527/5156] 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-08-14T20:46:11.6280340Z [2528/5156] 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-08-14T20:46:11.6331210Z [2529/5156] 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-08-14T20:46:11.6501080Z [2530/5156] 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-08-14T20:46:11.6801210Z [2531/5156] 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-08-14T20:46:11.6997520Z [2532/5156] 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-08-14T20:46:11.7000280Z [2533/5156] 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-08-14T20:46:11.7073250Z [2534/5156] 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-08-14T20:46:11.7105060Z [2535/5156] 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-08-14T20:46:11.7673500Z [2536/5156] 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-08-14T20:46:11.7711590Z [2537/5156] 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-08-14T20:46:11.7781070Z [2538/5156] 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-08-14T20:46:11.7943980Z [2539/5156] 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-08-14T20:46:11.8009890Z [2540/5156] 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-08-14T20:46:11.8502310Z [2541/5156] 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-08-14T20:46:11.8559090Z [2542/5156] 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-08-14T20:46:11.8596240Z [2543/5156] 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-08-14T20:46:11.8772860Z [2544/5156] 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-08-14T20:46:11.9056950Z [2545/5156] 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-08-14T20:46:11.9119800Z [2546/5156] 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-08-14T20:46:11.9284840Z [2547/5156] 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-08-14T20:46:11.9296870Z [2548/5156] 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-08-14T20:46:11.9380440Z [2549/5156] 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-08-14T20:46:11.9469360Z [2550/5156] 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-08-14T20:46:11.9834740Z [2551/5156] 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-08-14T20:46:11.9858980Z [2552/5156] 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-08-14T20:46:11.9908400Z [2553/5156] 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-08-14T20:46:12.0069000Z [2554/5156] 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-08-14T20:46:12.0538210Z [2555/5156] 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-08-14T20:46:12.0615440Z [2556/5156] 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-08-14T20:46:12.0681820Z [2557/5156] 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-08-14T20:46:12.0861720Z [2558/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l8c8s8r-minmax-fp32-neon-mul16.c.o 2025-08-14T20:46:12.0870600Z [2559/5156] 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-08-14T20:46:12.0886620Z [2560/5156] 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-08-14T20:46:12.1275790Z [2561/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l8c8s8r-minmax-rndnu-neon-mul16.c.o 2025-08-14T20:46:12.1350450Z [2562/5156] 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-08-14T20:46:12.1451340Z [2563/5156] 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-08-14T20:46:12.1479080Z [2564/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l16c8s8r-minmax-fp32-neon-mul16.c.o 2025-08-14T20:46:12.2123860Z [2565/5156] 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-08-14T20:46:12.2250340Z [2566/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l32c8s8r-minmax-rndnu-neon-mul16.c.o 2025-08-14T20:46:12.2398030Z [2567/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l32c8s8r-minmax-fp32-neon-mul16.c.o 2025-08-14T20:46:12.2473940Z [2568/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l8c8s8r-minmax-fp32-neon-mul16.c.o 2025-08-14T20:46:12.2632930Z [2569/5156] 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-08-14T20:46:12.2785900Z [2570/5156] 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-08-14T20:46:12.2795060Z [2571/5156] 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-08-14T20:46:12.2986910Z [2572/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l16c8s8r-minmax-rndnu-neon-mul16.c.o 2025-08-14T20:46:12.3055110Z [2573/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l8c8s8r-minmax-rndnu-neon-mul16.c.o 2025-08-14T20:46:12.3076380Z [2574/5156] 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-08-14T20:46:12.3291200Z [2575/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l16c8s8r-minmax-fp32-neon-mul16.c.o 2025-08-14T20:46:12.3704810Z [2576/5156] 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-08-14T20:46:12.3806440Z [2577/5156] 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-08-14T20:46:12.3967620Z [2578/5156] 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-08-14T20:46:12.4024540Z [2579/5156] 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-08-14T20:46:12.4111510Z [2580/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l16c8s8r-minmax-rndnu-neon-mul16.c.o 2025-08-14T20:46:12.4181040Z [2581/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l32c8s8r-minmax-fp32-neon-mul16.c.o 2025-08-14T20:46:12.4266990Z [2582/5156] 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-08-14T20:46:12.4410760Z [2583/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l32c8s8r-minmax-rndnu-neon-mul16.c.o 2025-08-14T20:46:12.4473440Z [2584/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l8c8s8r-minmax-fp32-neon-mul16.c.o 2025-08-14T20:46:12.4726460Z [2585/5156] 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-08-14T20:46:12.5083760Z [2586/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l8c8s8r-minmax-rndnu-neon-mul16.c.o 2025-08-14T20:46:12.5286780Z [2587/5156] 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-08-14T20:46:12.5355840Z [2588/5156] 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-08-14T20:46:12.5422360Z [2589/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l16c8s8r-minmax-fp32-neon-mul16.c.o 2025-08-14T20:46:12.5559010Z [2590/5156] 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-08-14T20:46:12.5598300Z [2591/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l32c8s8r-minmax-rndnu-neon-mul16.c.o 2025-08-14T20:46:12.5822880Z [2592/5156] 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-08-14T20:46:12.6062510Z [2593/5156] 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-08-14T20:46:12.6245210Z [2594/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-fp32-neon-mul16.c.o 2025-08-14T20:46:12.6367500Z [2595/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-rndnu-neon-mul16.c.o 2025-08-14T20:46:12.6710180Z [2596/5156] 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-08-14T20:46:12.6758050Z [2597/5156] 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-08-14T20:46:12.6766770Z [2598/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-neon-mul16.c.o 2025-08-14T20:46:12.6972340Z [2599/5156] 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-08-14T20:46:12.7170880Z [2600/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-rndnu-neon-mul16.c.o 2025-08-14T20:46:12.7208200Z [2601/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p32c-minmax-fp32-neon-mul16.c.o 2025-08-14T20:46:12.7275740Z [2602/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-fp32-neon-mul16.c.o 2025-08-14T20:46:12.7403580Z [2603/5156] 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-08-14T20:46:12.7487960Z [2604/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p32c-minmax-rndnu-neon-mul16.c.o 2025-08-14T20:46:12.7508290Z [2605/5156] 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-08-14T20:46:12.7933650Z [2606/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-neon-mul16.c.o 2025-08-14T20:46:12.8027140Z [2607/5156] 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-08-14T20:46:12.8268540Z [2608/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-rndnu-neon-mul16.c.o 2025-08-14T20:46:12.8567620Z [2609/5156] 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-08-14T20:46:12.8684130Z [2610/5156] 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-08-14T20:46:12.8742610Z [2611/5156] 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-08-14T20:46:12.8788150Z [2612/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-rndnu-neon-mul16.c.o 2025-08-14T20:46:12.8789790Z [2613/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-neon-u8.c.o 2025-08-14T20:46:12.8973740Z [2614/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p32c-minmax-rndnu-neon-mul16.c.o 2025-08-14T20:46:12.9025640Z [2615/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p32c-minmax-fp32-neon-mul16.c.o 2025-08-14T20:46:12.9112930Z [2616/5156] 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-08-14T20:46:12.9273850Z [2617/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-neon-u16.c.o 2025-08-14T20:46:12.9528160Z [2618/5156] 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-08-14T20:46:12.9869900Z [2619/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-neon-u24.c.o 2025-08-14T20:46:13.0062760Z [2620/5156] 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-08-14T20:46:13.0162380Z [2621/5156] 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-08-14T20:46:13.0205250Z [2622/5156] 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-08-14T20:46:13.0347160Z [2623/5156] 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-08-14T20:46:13.0390470Z [2624/5156] 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-08-14T20:46:13.0531890Z [2625/5156] 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-08-14T20:46:13.0702950Z [2626/5156] 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-08-14T20:46:13.0936090Z [2627/5156] 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-08-14T20:46:13.1058670Z [2628/5156] 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-08-14T20:46:13.1342340Z [2629/5156] 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-08-14T20:46:13.1525840Z [2630/5156] 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-08-14T20:46:13.1547070Z [2631/5156] 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-08-14T20:46:13.1551790Z [2632/5156] 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-08-14T20:46:13.1753040Z [2633/5156] 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-08-14T20:46:13.1757280Z [2634/5156] 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-08-14T20:46:13.1904450Z [2635/5156] 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-08-14T20:46:13.2070710Z [2636/5156] 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-08-14T20:46:13.2695840Z [2637/5156] 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-08-14T20:46:13.2745770Z [2638/5156] 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-08-14T20:46:13.2892680Z [2639/5156] 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-08-14T20:46:13.3035990Z [2640/5156] 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-08-14T20:46:13.3082010Z [2641/5156] 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-08-14T20:46:13.3135150Z [2642/5156] 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-08-14T20:46:13.3136300Z [2643/5156] 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-08-14T20:46:13.3159710Z [2644/5156] 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-08-14T20:46:13.3384310Z [2645/5156] 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-08-14T20:46:13.3711790Z [2646/5156] 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-08-14T20:46:13.3923470Z [2647/5156] 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-08-14T20:46:13.3926470Z [2648/5156] 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-08-14T20:46:13.4354840Z [2649/5156] 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-08-14T20:46:13.4493350Z [2650/5156] 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-08-14T20:46:13.4616660Z [2651/5156] 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-08-14T20:46:13.4745640Z [2652/5156] 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-08-14T20:46:13.4749030Z [2653/5156] 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-08-14T20:46:13.4994340Z [2654/5156] 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-08-14T20:46:13.5062990Z [2655/5156] 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-08-14T20:46:13.5079830Z [2656/5156] 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-08-14T20:46:13.5290290Z [2657/5156] 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-08-14T20:46:13.5301130Z [2658/5156] 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-08-14T20:46:13.5563720Z [2659/5156] 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-08-14T20:46:13.5821460Z [2660/5156] 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-08-14T20:46:13.5828460Z [2661/5156] 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-08-14T20:46:13.6137100Z [2662/5156] 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-08-14T20:46:13.6322530Z [2663/5156] 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-08-14T20:46:13.6421660Z [2664/5156] 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-08-14T20:46:13.6727660Z [2665/5156] 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-08-14T20:46:13.6807640Z [2666/5156] 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-08-14T20:46:13.6813680Z [2667/5156] 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-08-14T20:46:13.6997960Z [2668/5156] 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-08-14T20:46:13.7251490Z [2669/5156] 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-08-14T20:46:13.7302400Z [2670/5156] 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-08-14T20:46:13.7512920Z [2671/5156] 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-08-14T20:46:13.7732740Z [2672/5156] 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-08-14T20:46:13.7952740Z [2673/5156] 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-08-14T20:46:13.7956660Z [2674/5156] 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-08-14T20:46:13.8183190Z [2675/5156] 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-08-14T20:46:13.8216370Z [2676/5156] 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-08-14T20:46:13.8388490Z [2677/5156] 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-08-14T20:46:13.8442490Z [2678/5156] 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-08-14T20:46:13.8814750Z [2679/5156] 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-08-14T20:46:13.9108840Z [2680/5156] 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-08-14T20:46:13.9125350Z [2681/5156] 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-08-14T20:46:13.9216740Z [2682/5156] 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-08-14T20:46:13.9351620Z [2683/5156] 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-08-14T20:46:13.9380240Z [2684/5156] 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-08-14T20:46:13.9492680Z [2685/5156] 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-08-14T20:46:14.0096520Z [2686/5156] 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-08-14T20:46:14.0138820Z [2687/5156] 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-08-14T20:46:14.0242250Z [2688/5156] 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-08-14T20:46:14.0412690Z [2689/5156] 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-08-14T20:46:14.0430830Z [2690/5156] 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-08-14T20:46:14.0434840Z [2691/5156] 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-08-14T20:46:14.0621070Z [2692/5156] 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-08-14T20:46:14.0760030Z [2693/5156] 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-08-14T20:46:14.1079420Z [2694/5156] 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-08-14T20:46:14.1520590Z [2695/5156] 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-08-14T20:46:14.1573430Z [2696/5156] 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-08-14T20:46:14.1657920Z [2697/5156] 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-08-14T20:46:14.1711210Z [2698/5156] 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-08-14T20:46:14.1734090Z [2699/5156] 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-08-14T20:46:14.1866710Z [2700/5156] 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-08-14T20:46:14.1930240Z [2701/5156] 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-08-14T20:46:14.2139840Z [2702/5156] 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-08-14T20:46:14.2697280Z [2703/5156] 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-08-14T20:46:14.2783230Z [2704/5156] 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-08-14T20:46:14.2929590Z [2705/5156] 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-08-14T20:46:14.3016360Z [2706/5156] 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-08-14T20:46:14.3083530Z [2707/5156] 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-08-14T20:46:14.3133430Z [2708/5156] 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-08-14T20:46:14.3306470Z [2709/5156] 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-08-14T20:46:14.3397350Z [2710/5156] 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-08-14T20:46:14.3473000Z [2711/5156] 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-08-14T20:46:14.3633930Z [2712/5156] 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-08-14T20:46:14.4205450Z [2713/5156] 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-08-14T20:46:14.4310500Z [2714/5156] 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-08-14T20:46:14.4323570Z [2715/5156] 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-08-14T20:46:14.4398760Z [2716/5156] 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-08-14T20:46:14.4541970Z [2717/5156] 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-08-14T20:46:14.4561900Z [2718/5156] 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-08-14T20:46:14.5013080Z [2719/5156] 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-08-14T20:46:14.5151830Z [2720/5156] 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-08-14T20:46:14.5305700Z [2721/5156] 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-08-14T20:46:14.5393940Z [2722/5156] 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-08-14T20:46:14.5605570Z [2723/5156] 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-08-14T20:46:14.5705970Z [2724/5156] 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-08-14T20:46:14.5789780Z [2725/5156] 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-08-14T20:46:14.5871310Z [2726/5156] 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-08-14T20:46:14.5877530Z [2727/5156] 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-08-14T20:46:14.6067440Z [2728/5156] 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-08-14T20:46:14.7561030Z [2729/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/arena.cc.o 2025-08-14T20:46:14.7802880Z [2730/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/io/zero_copy_stream_impl.cc.o 2025-08-14T20:46:14.7812590Z [2731/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/extension_set.cc.o 2025-08-14T20:46:14.7836510Z [2732/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/generated_enum_util.cc.o 2025-08-14T20:46:14.8041090Z [2733/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/any_lite.cc.o 2025-08-14T20:46:14.8043430Z [2734/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/io/io_win32.cc.o 2025-08-14T20:46:14.8064960Z [2735/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/generated_message_table_driven_lite.cc.o 2025-08-14T20:46:14.8299150Z [2736/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/generated_message_util.cc.o 2025-08-14T20:46:14.8344650Z [2737/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/io/coded_stream.cc.o 2025-08-14T20:46:14.8992190Z [2738/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/implicit_weak_message.cc.o 2025-08-14T20:46:15.0286290Z [2739/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/io/zero_copy_stream.cc.o 2025-08-14T20:46:15.0321340Z [2740/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/message_lite.cc.o 2025-08-14T20:46:15.0386870Z [2741/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/io/zero_copy_stream_impl_lite.cc.o 2025-08-14T20:46:15.0396190Z [2742/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/io/strtod.cc.o 2025-08-14T20:46:15.0431500Z [2743/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/structurally_valid.cc.o 2025-08-14T20:46:15.0565840Z [2744/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/repeated_field.cc.o 2025-08-14T20:46:15.0767490Z [2745/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/bytestream.cc.o 2025-08-14T20:46:15.0995660Z [2746/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/parse_context.cc.o 2025-08-14T20:46:15.1449400Z [2747/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/io_win32.cc.o 2025-08-14T20:46:15.2405220Z [2748/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/int128.cc.o 2025-08-14T20:46:15.2416070Z [2749/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/common.cc.o 2025-08-14T20:46:15.2531610Z [2750/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/stringprintf.cc.o 2025-08-14T20:46:15.2596440Z [2751/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/stringpiece.cc.o 2025-08-14T20:46:15.2600620Z [2752/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/statusor.cc.o 2025-08-14T20:46:15.2627600Z [2753/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/strutil.cc.o 2025-08-14T20:46:15.2638940Z /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-08-14T20:46:15.2640160Z sprintf(dest + used, (use_hex ? "\\x%02x" : "\\%03o"), 2025-08-14T20:46:15.2640480Z ^ 2025-08-14T20:46:15.2641000Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/stdio.h:180:1: note: 'sprintf' has been explicitly marked deprecated here 2025-08-14T20:46:15.2641930Z __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-08-14T20:46:15.2649560Z ^ 2025-08-14T20:46:15.2653270Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/cdefs.h:218:48: note: expanded from macro '__deprecated_msg' 2025-08-14T20:46:15.2655580Z #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg))) 2025-08-14T20:46:15.2660370Z ^ 2025-08-14T20:46:15.2665200Z 1 warning generated. 2025-08-14T20:46:15.2668480Z [2754/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/status.cc.o 2025-08-14T20:46:15.2863610Z [2755/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/time.cc.o 2025-08-14T20:46:15.4465650Z [2756/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/coded_stream.cc.o 2025-08-14T20:46:15.4577350Z [2757/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/wire_format_lite.cc.o 2025-08-14T20:46:15.4739150Z [2758/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/implicit_weak_message.cc.o 2025-08-14T20:46:15.4783240Z [2759/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/strtod.cc.o 2025-08-14T20:46:15.4790990Z [2760/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/generated_message_util.cc.o 2025-08-14T20:46:15.4999400Z [2761/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/generated_enum_util.cc.o 2025-08-14T20:46:15.5142100Z [2762/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/extension_set.cc.o 2025-08-14T20:46:15.5166010Z [2763/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/generated_message_table_driven_lite.cc.o 2025-08-14T20:46:15.5762280Z [2764/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/arena.cc.o 2025-08-14T20:46:15.5997610Z [2765/5156] Linking CXX static library lib/libprotobuf-lite.a 2025-08-14T20:46:15.6334140Z [2766/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/any_lite.cc.o 2025-08-14T20:46:15.6881810Z [2767/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/zero_copy_stream.cc.o 2025-08-14T20:46:15.7061360Z [2768/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/zero_copy_stream_impl.cc.o 2025-08-14T20:46:15.7147760Z [2769/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/zero_copy_stream_impl_lite.cc.o 2025-08-14T20:46:15.7728040Z [2770/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/bytestream.cc.o 2025-08-14T20:46:15.7734940Z [2771/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/parse_context.cc.o 2025-08-14T20:46:15.7869080Z [2772/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/message_lite.cc.o 2025-08-14T20:46:15.8028120Z [2773/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/repeated_field.cc.o 2025-08-14T20:46:15.8830130Z [2774/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/common.cc.o 2025-08-14T20:46:15.8860010Z [2775/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/int128.cc.o 2025-08-14T20:46:15.9081540Z [2776/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/status.cc.o 2025-08-14T20:46:15.9229310Z [2777/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/stringprintf.cc.o 2025-08-14T20:46:15.9347970Z [2778/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/stringpiece.cc.o 2025-08-14T20:46:15.9489350Z [2779/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/statusor.cc.o 2025-08-14T20:46:15.9950110Z [2780/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/structurally_valid.cc.o 2025-08-14T20:46:16.0065620Z [2781/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/time.cc.o 2025-08-14T20:46:16.0266450Z [2782/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/strutil.cc.o 2025-08-14T20:46:16.0280420Z /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-08-14T20:46:16.0284480Z sprintf(dest + used, (use_hex ? "\\x%02x" : "\\%03o"), 2025-08-14T20:46:16.0286660Z ^ 2025-08-14T20:46:16.0287240Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/stdio.h:180:1: note: 'sprintf' has been explicitly marked deprecated here 2025-08-14T20:46:16.0288600Z __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-08-14T20:46:16.0289500Z ^ 2025-08-14T20:46:16.0290960Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/cdefs.h:218:48: note: expanded from macro '__deprecated_msg' 2025-08-14T20:46:16.0292180Z #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg))) 2025-08-14T20:46:16.0292570Z ^ 2025-08-14T20:46:16.0292870Z 1 warning generated. 2025-08-14T20:46:16.0917070Z [2783/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/any.pb.cc.o 2025-08-14T20:46:16.1748740Z [2784/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/wire_format_lite.cc.o 2025-08-14T20:46:16.1851610Z [2785/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/api.pb.cc.o 2025-08-14T20:46:16.1966250Z [2786/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/any.cc.o 2025-08-14T20:46:16.2178060Z [2787/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/compiler/parser.cc.o 2025-08-14T20:46:16.2205700Z [2788/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/compiler/importer.cc.o 2025-08-14T20:46:16.2709040Z [2789/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/descriptor.cc.o 2025-08-14T20:46:16.2781260Z [2790/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/duration.pb.cc.o 2025-08-14T20:46:16.3639250Z [2791/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/descriptor_database.cc.o 2025-08-14T20:46:16.3820820Z [2792/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/empty.pb.cc.o 2025-08-14T20:46:16.3922570Z [2793/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/gzip_stream.cc.o 2025-08-14T20:46:16.4228160Z [2794/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/descriptor.pb.cc.o 2025-08-14T20:46:16.4480720Z [2795/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/field_mask.pb.cc.o 2025-08-14T20:46:16.4630930Z [2796/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/dynamic_message.cc.o 2025-08-14T20:46:16.4638960Z [2797/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/generated_message_table_driven.cc.o 2025-08-14T20:46:16.4927660Z [2798/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/extension_set_heavy.cc.o 2025-08-14T20:46:16.5356770Z [2799/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/printer.cc.o 2025-08-14T20:46:16.5638140Z [2800/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/generated_message_reflection.cc.o 2025-08-14T20:46:16.6550920Z [2801/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/tokenizer.cc.o 2025-08-14T20:46:16.6694890Z [2802/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/map_field.cc.o 2025-08-14T20:46:16.6901750Z [2803/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/service.cc.o 2025-08-14T20:46:16.7045310Z [2804/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/message.cc.o 2025-08-14T20:46:16.7105230Z [2805/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/reflection_ops.cc.o 2025-08-14T20:46:16.7208380Z [2806/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/struct.pb.cc.o 2025-08-14T20:46:16.7215190Z [2807/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/source_context.pb.cc.o 2025-08-14T20:46:16.8205760Z [2808/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/text_format.cc.o 2025-08-14T20:46:16.8401280Z [2809/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/substitute.cc.o 2025-08-14T20:46:16.9021220Z [2810/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/unknown_field_set.cc.o 2025-08-14T20:46:16.9122790Z [2811/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/type.pb.cc.o 2025-08-14T20:46:16.9380060Z [2812/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/delimited_message_util.cc.o 2025-08-14T20:46:16.9394710Z [2813/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/timestamp.pb.cc.o 2025-08-14T20:46:16.9404320Z [2814/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/field_comparator.cc.o 2025-08-14T20:46:16.9689360Z [2815/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/field_mask_utility.cc.o 2025-08-14T20:46:16.9900430Z [2816/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/default_value_objectwriter.cc.o 2025-08-14T20:46:17.1266770Z [2817/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/json_stream_parser.cc.o 2025-08-14T20:46:17.1277660Z [2818/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/field_mask_util.cc.o 2025-08-14T20:46:17.1301550Z [2819/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/json_escaping.cc.o 2025-08-14T20:46:17.1494060Z [2820/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/error_listener.cc.o 2025-08-14T20:46:17.1506640Z [2821/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/datapiece.cc.o 2025-08-14T20:46:17.1660770Z [2822/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/json_objectwriter.cc.o 2025-08-14T20:46:17.1668750Z [2823/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/object_writer.cc.o 2025-08-14T20:46:17.2085300Z [2824/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/protostream_objectsource.cc.o 2025-08-14T20:46:17.2836390Z [2825/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/protostream_objectwriter.cc.o 2025-08-14T20:46:17.3250830Z [2826/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/proto_writer.cc.o 2025-08-14T20:46:17.4049650Z [2827/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/type_info_test_helper.cc.o 2025-08-14T20:46:17.4188140Z [2828/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_enum_field.cc.o 2025-08-14T20:46:17.4323020Z [2829/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/type_info.cc.o 2025-08-14T20:46:17.4477030Z [2830/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/message_differencer.cc.o 2025-08-14T20:46:17.4559250Z [2831/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/utility.cc.o 2025-08-14T20:46:17.4677540Z [2832/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_helpers.cc.o 2025-08-14T20:46:17.4760910Z [2833/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/json_util.cc.o 2025-08-14T20:46:17.4772510Z [2834/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/js/js_generator.cc.o 2025-08-14T20:46:17.6555470Z [2835/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/time_util.cc.o 2025-08-14T20:46:17.6611450Z [2836/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/wrappers.pb.cc.o 2025-08-14T20:46:17.6837040Z [2837/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/type_resolver_util.cc.o 2025-08-14T20:46:17.6888950Z [2838/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/wire_format.cc.o 2025-08-14T20:46:17.6944180Z [2839/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_generator.cc.o 2025-08-14T20:46:17.7088110Z [2840/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_reflection_class.cc.o 2025-08-14T20:46:17.7140950Z [2841/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_message.cc.o 2025-08-14T20:46:17.7513940Z [2842/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_primitive_field.cc.o 2025-08-14T20:46:17.8656140Z [2843/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_message_field.cc.o 2025-08-14T20:46:17.8918800Z [2844/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_service.cc.o 2025-08-14T20:46:17.9099590Z [2845/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_enum_field.cc.o 2025-08-14T20:46:17.9205300Z [2846/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_map_field.cc.o 2025-08-14T20:46:17.9399600Z [2847/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_string_field.cc.o 2025-08-14T20:46:17.9564930Z [2848/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_doc_comment.cc.o 2025-08-14T20:46:17.9813400Z [2849/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_enum.cc.o 2025-08-14T20:46:17.9997450Z [2850/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_field_base.cc.o 2025-08-14T20:46:18.0346470Z [2851/5156] Linking CXX static library lib/libprotobuf.a 2025-08-14T20:46:18.1525390Z [2852/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_message_field.cc.o 2025-08-14T20:46:18.1626420Z [2853/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_map_field.cc.o 2025-08-14T20:46:18.1742860Z [2854/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_generator.cc.o 2025-08-14T20:46:18.1910940Z [2855/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_primitive_field.cc.o 2025-08-14T20:46:18.1918230Z [2856/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_message.cc.o 2025-08-14T20:46:18.1927100Z [2857/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_file.cc.o 2025-08-14T20:46:18.2280450Z [2858/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_helpers.cc.o 2025-08-14T20:46:18.2709280Z [2859/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_padding_optimizer.cc.o 2025-08-14T20:46:18.3572650Z [2860/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_field.cc.o 2025-08-14T20:46:18.3828880Z [2861/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_extension.cc.o 2025-08-14T20:46:18.4515280Z [2862/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_enum.cc.o 2025-08-14T20:46:18.4548490Z [2863/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_enum_field.cc.o 2025-08-14T20:46:18.4615860Z [2864/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/code_generator.cc.o 2025-08-14T20:46:18.4846190Z [2865/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_repeated_enum_field.cc.o 2025-08-14T20:46:18.4875090Z [2866/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_repeated_message_field.cc.o 2025-08-14T20:46:18.4896810Z [2867/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/command_line_interface.cc.o 2025-08-14T20:46:18.5597110Z [2868/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_repeated_primitive_field.cc.o 2025-08-14T20:46:18.5985700Z [2869/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_source_generator_base.cc.o 2025-08-14T20:46:18.6273330Z [2870/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_wrapper_field.cc.o 2025-08-14T20:46:18.6545700Z [2871/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_enum_field_lite.cc.o 2025-08-14T20:46:18.7209320Z [2872/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_doc_comment.cc.o 2025-08-14T20:46:18.7555460Z [2873/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_context.cc.o 2025-08-14T20:46:18.7603970Z [2874/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_enum.cc.o 2025-08-14T20:46:18.7688620Z [2875/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_extension_lite.cc.o 2025-08-14T20:46:18.7739680Z [2876/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_enum_field.cc.o 2025-08-14T20:46:18.7953970Z [2877/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_enum_lite.cc.o 2025-08-14T20:46:18.8431530Z [2878/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_generator_factory.cc.o 2025-08-14T20:46:18.9181370Z [2879/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_file.cc.o 2025-08-14T20:46:18.9282510Z [2880/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_extension.cc.o 2025-08-14T20:46:18.9597890Z [2881/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_field.cc.o 2025-08-14T20:46:19.0106290Z [2882/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_map_field_lite.cc.o 2025-08-14T20:46:19.0435260Z [2883/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_message_builder.cc.o 2025-08-14T20:46:19.0756270Z [2884/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_generator.cc.o 2025-08-14T20:46:19.0816940Z [2885/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_message_builder_lite.cc.o 2025-08-14T20:46:19.0826110Z [2886/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_helpers.cc.o 2025-08-14T20:46:19.1104840Z [2887/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_map_field.cc.o 2025-08-14T20:46:19.1566880Z [2888/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_message.cc.o 2025-08-14T20:46:19.2630710Z [2889/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_message_field.cc.o 2025-08-14T20:46:19.2643180Z [2890/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_message_field_lite.cc.o 2025-08-14T20:46:19.2786650Z [2891/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/js/well_known_types_embed.cc.o 2025-08-14T20:46:19.2794670Z [2892/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_name_resolver.cc.o 2025-08-14T20:46:19.2886920Z [2893/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_primitive_field.cc.o 2025-08-14T20:46:19.3202420Z [2894/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_string_field_lite.cc.o 2025-08-14T20:46:19.3227410Z [2895/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_message_lite.cc.o 2025-08-14T20:46:19.3404400Z [2896/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_shared_code_generator.cc.o 2025-08-14T20:46:19.3408030Z [2897/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_primitive_field_lite.cc.o 2025-08-14T20:46:19.4690980Z [2898/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_service.cc.o 2025-08-14T20:46:19.5659000Z [2899/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_generator.cc.o 2025-08-14T20:46:19.5771970Z [2900/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_field.cc.o 2025-08-14T20:46:19.5834990Z [2901/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_extension.cc.o 2025-08-14T20:46:19.5844060Z [2902/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_file.cc.o 2025-08-14T20:46:19.6071360Z [2903/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_enum.cc.o 2025-08-14T20:46:19.6236930Z [2904/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_string_field.cc.o 2025-08-14T20:46:19.6318000Z [2905/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_helpers.cc.o 2025-08-14T20:46:19.6737560Z [2906/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_map_field.cc.o 2025-08-14T20:46:19.8021970Z [2907/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_message.cc.o 2025-08-14T20:46:19.8265910Z [2908/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_message_field.cc.o 2025-08-14T20:46:19.8294610Z [2909/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_oneof.cc.o 2025-08-14T20:46:19.8332450Z [2910/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_primitive_field.cc.o 2025-08-14T20:46:19.8520440Z [2911/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/php/php_generator.cc.o 2025-08-14T20:46:19.8530280Z [2912/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/plugin.cc.o 2025-08-14T20:46:19.8801890Z [2913/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/python/python_generator.cc.o 2025-08-14T20:46:19.9430040Z [2914/5156] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/arm/cache.c.o 2025-08-14T20:46:19.9529400Z [2915/5156] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/api.c.o 2025-08-14T20:46:19.9675580Z [2916/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/ruby/ruby_generator.cc.o 2025-08-14T20:46:19.9711320Z [2917/5156] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/arm/mach/init.c.o 2025-08-14T20:46:19.9792460Z [2918/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/plugin.pb.cc.o 2025-08-14T20:46:19.9849160Z [2919/5156] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/log.c.o 2025-08-14T20:46:19.9905510Z [2920/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/subprocess.cc.o 2025-08-14T20:46:20.0058900Z [2921/5156] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/mach/topology.c.o 2025-08-14T20:46:20.0246710Z [2922/5156] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/init.c.o 2025-08-14T20:46:20.0301730Z [2923/5156] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/arm/uarch.c.o 2025-08-14T20:46:20.0313780Z [2924/5156] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/cache.c.o 2025-08-14T20:46:20.0531690Z [2925/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/zip_writer.cc.o 2025-08-14T20:46:20.0936270Z [2926/5156] Building C object confu-deps/pthreadpool/CMakeFiles/pthreadpool.dir/src/memory.c.o 2025-08-14T20:46:20.1081780Z [2927/5156] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/cache.c.o 2025-08-14T20:46:20.1086890Z [2928/5156] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/api.c.o 2025-08-14T20:46:20.1238050Z [2929/5156] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/init.c.o 2025-08-14T20:46:20.1311330Z [2930/5156] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/log.c.o 2025-08-14T20:46:20.1389900Z [2931/5156] Building C object confu-deps/pthreadpool/CMakeFiles/pthreadpool.dir/src/gcd.c.o 2025-08-14T20:46:20.1394500Z [2932/5156] Building C object confu-deps/pthreadpool/CMakeFiles/pthreadpool.dir/src/portable-api.c.o 2025-08-14T20:46:20.1405440Z [2933/5156] Building C object confu-deps/pthreadpool/CMakeFiles/pthreadpool.dir/src/legacy-api.c.o 2025-08-14T20:46:20.1561050Z [2934/5156] Linking C static library lib/libcpuinfo.a 2025-08-14T20:46:20.1865390Z [2935/5156] Linking C static library lib/libpthreadpool.a 2025-08-14T20:46:20.1922150Z [2936/5156] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/arm/uarch.c.o 2025-08-14T20:46:20.2015500Z [2937/5156] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/arm/cache.c.o 2025-08-14T20:46:20.2121910Z [2938/5156] Building CXX object third_party/protobuf/cmake/CMakeFiles/protoc.dir/__/src/google/protobuf/compiler/main.cc.o 2025-08-14T20:46:20.2385940Z [2939/5156] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/arm/mach/init.c.o 2025-08-14T20:46:20.2390620Z [2940/5156] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/mach/topology.c.o 2025-08-14T20:46:20.2635550Z [2941/5156] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/init.c.o 2025-08-14T20:46:20.2697840Z [2942/5156] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/add.c.o 2025-08-14T20:46:20.2951990Z [2943/5156] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/channel-shuffle.c.o 2025-08-14T20:46:20.2955940Z [2944/5156] Linking C static library lib/libcpuinfo_internals.a 2025-08-14T20:46:20.3126380Z [2945/5156] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/average-pooling.c.o 2025-08-14T20:46:20.3203920Z [2946/5156] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/clamp.c.o 2025-08-14T20:46:20.3207740Z [2947/5156] Building ASM object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8conv/8x8-aarch64-neon.S.o 2025-08-14T20:46:20.3267450Z [2948/5156] Linking CXX shared library lib/libc10.dylib 2025-08-14T20:46:20.3311220Z [2949/5156] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/conv-prepack.cc.o 2025-08-14T20:46:20.3966780Z [2950/5156] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/convolution.c.o 2025-08-14T20:46:20.4021180Z [2951/5156] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/fully-connected.c.o 2025-08-14T20:46:20.4096460Z [2952/5156] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/deconvolution.c.o 2025-08-14T20:46:20.4162600Z [2953/5156] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/fully-connected-sparse.c.o 2025-08-14T20:46:20.4201870Z [2954/5156] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/global-average-pooling.c.o 2025-08-14T20:46:20.4323270Z [2955/5156] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/hardsigmoid.c.o 2025-08-14T20:46:20.4367000Z [2956/5156] Linking CXX static library lib/libprotoc.a 2025-08-14T20:46:20.4392130Z [2957/5156] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/leaky-relu.c.o 2025-08-14T20:46:20.4401550Z [2958/5156] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/hardswish.c.o 2025-08-14T20:46:20.4610040Z [2959/5156] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/fc-prepack.cc.o 2025-08-14T20:46:20.4946470Z [2960/5156] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/sigmoid.c.o 2025-08-14T20:46:20.5243380Z [2961/5156] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/operator-delete.c.o 2025-08-14T20:46:20.5408200Z [2962/5156] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/tanh.c.o 2025-08-14T20:46:20.5447000Z [2963/5156] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/max-pooling.c.o 2025-08-14T20:46:20.5477050Z [2964/5156] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/softargmax.c.o 2025-08-14T20:46:20.5664990Z [2965/5156] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/fc-unpack.cc.o 2025-08-14T20:46:20.5670760Z [2966/5156] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/fc-run.cc.o 2025-08-14T20:46:20.6167980Z [2967/5156] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/indirection.c.o 2025-08-14T20:46:20.6319180Z [2968/5156] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/u8lut32norm/scalar.c.o 2025-08-14T20:46:20.6366690Z [2969/5156] Linking CXX executable bin/protoc-3.13.0.0 2025-08-14T20:46:20.6449770Z [2970/5156] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/deconv-run.cc.o 2025-08-14T20:46:20.6451010Z [2971/5156] Creating executable symlink bin/protoc 2025-08-14T20:46:20.6861330Z [2972/5156] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/sgemm/6x8-psimd.c.o 2025-08-14T20:46:20.6874380Z [2973/5156] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8avgpool/mp8x9p8q-neon.c.o 2025-08-14T20:46:20.6916780Z [2974/5156] Running gen_proto.py on onnx/onnx.in.proto 2025-08-14T20:46:20.6923870Z Processing /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/onnx/onnx/onnx.in.proto 2025-08-14T20:46:20.6929320Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_onnx_torch-ml.proto 2025-08-14T20:46:20.6934860Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_onnx_torch-ml.proto3 2025-08-14T20:46:20.6938920Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-ml.pb.h 2025-08-14T20:46:20.6943370Z generating /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_pb.py 2025-08-14T20:46:20.6948510Z [2975/5156] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/x8lut/scalar.c.o 2025-08-14T20:46:20.7042810Z [2976/5156] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/conv-run.cc.o 2025-08-14T20:46:20.7115840Z [2977/5156] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/operator-run.c.o 2025-08-14T20:46:20.7174960Z [2978/5156] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8avgpool/up8x9-neon.c.o 2025-08-14T20:46:20.7246040Z [2979/5156] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/fc-dynamic-run.cc.o 2025-08-14T20:46:20.7766720Z [2980/5156] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8avgpool/up8xm-neon.c.o 2025-08-14T20:46:20.8080180Z [2981/5156] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8conv/4x8-neon.c.o 2025-08-14T20:46:20.8087020Z [2982/5156] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8dwconv/mp8x25-neon.c.o 2025-08-14T20:46:20.8138320Z [2983/5156] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8conv/8x8-neon.c.o 2025-08-14T20:46:20.8285470Z [2984/5156] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8dwconv/mp8x25-neon-per-channel.c.o 2025-08-14T20:46:20.8332260Z [2985/5156] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8dwconv/mp8x27-neon.c.o 2025-08-14T20:46:20.8342410Z [2986/5156] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8dwconv/up8x9-neon.c.o 2025-08-14T20:46:20.8809850Z [2987/5156] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8dwconv/up8x9-neon-per-channel.c.o 2025-08-14T20:46:20.8921890Z [2988/5156] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gavgpool/mp8x7p7q-neon.c.o 2025-08-14T20:46:20.9033840Z [2989/5156] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gavgpool/up8x7-neon.c.o 2025-08-14T20:46:20.9205700Z [2990/5156] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gavgpool/up8xm-neon.c.o 2025-08-14T20:46:20.9390680Z [2991/5156] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/4x8-neon.c.o 2025-08-14T20:46:20.9449950Z [2992/5156] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/4x-sumrows-neon.c.o 2025-08-14T20:46:20.9460730Z [2993/5156] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/4x8c2-xzp-neon.c.o 2025-08-14T20:46:20.9589020Z [2994/5156] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/6x4-neon.c.o 2025-08-14T20:46:20.9748880Z [2995/5156] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/4x8-dq-neon.c.o 2025-08-14T20:46:21.0096310Z [2996/5156] Running C++ protocol buffer compiler on /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_onnx_torch-ml.proto 2025-08-14T20:46:21.0179480Z [2997/5156] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8vadd/neon.c.o 2025-08-14T20:46:21.0180320Z [2998/5156] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/sgemm/5x8-neon.c.o 2025-08-14T20:46:21.0243310Z [2999/5156] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/8x8-neon.c.o 2025-08-14T20:46:21.0384310Z [3000/5156] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/sgemm/6x8-neon.c.o 2025-08-14T20:46:21.0770770Z [3001/5156] Running gen_proto.py on onnx/onnx-operators.in.proto 2025-08-14T20:46:21.0771970Z Processing /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/onnx/onnx/onnx-operators.in.proto 2025-08-14T20:46:21.0773520Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch-ml.proto 2025-08-14T20:46:21.0775120Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch-ml.proto3 2025-08-14T20:46:21.0776620Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-operators-ml.pb.h 2025-08-14T20:46:21.0778030Z generating /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_operators_pb.py 2025-08-14T20:46:21.0822860Z [3002/5156] Running gen_proto.py on onnx/onnx-data.in.proto 2025-08-14T20:46:21.0823970Z Processing /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/onnx/onnx/onnx-data.in.proto 2025-08-14T20:46:21.0825380Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-data_onnx_torch.proto 2025-08-14T20:46:21.0826950Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-data_onnx_torch.proto3 2025-08-14T20:46:21.0828750Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-data.pb.h 2025-08-14T20:46:21.0830060Z generating /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_data_pb.py 2025-08-14T20:46:21.0874370Z [3003/5156] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/x8zip/x2-neon.c.o 2025-08-14T20:46:21.1008990Z [3004/5156] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/u8clamp/neon.c.o 2025-08-14T20:46:21.1047620Z [3005/5156] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/u8rmax/neon.c.o 2025-08-14T20:46:21.1054730Z [3006/5156] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/u8maxpool/16x9p8q-neon.c.o 2025-08-14T20:46:21.1058660Z [3007/5156] Building ASM object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/8x8-aarch64-neon.S.o 2025-08-14T20:46:21.1077050Z [3008/5156] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/u8maxpool/sub16-neon.c.o 2025-08-14T20:46:21.1175160Z [3009/5156] 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-08-14T20:46:21.1376970Z [3010/5156] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/x8zip/x4-neon.c.o 2025-08-14T20:46:21.1820620Z [3011/5156] Running C++ protocol buffer compiler on /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-data_onnx_torch.proto 2025-08-14T20:46:21.1847020Z [3012/5156] Building ASM object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm_sparse/8x4-packA-aarch64-neon.S.o 2025-08-14T20:46:21.1873470Z [3013/5156] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/x8zip/x3-neon.c.o 2025-08-14T20:46:21.1885510Z [3014/5156] Building ASM object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/8x8-dq-aarch64-neon.S.o 2025-08-14T20:46:21.1942950Z [3015/5156] Building ASM object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm_sparse/8x8c8x1-dq-packedA-aarch64-neon.S.o 2025-08-14T20:46:21.2067700Z [3016/5156] Building ASM object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm_sparse/8x8c1x4-dq-packedA-aarch64-neon.S.o 2025-08-14T20:46:21.2144600Z [3017/5156] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/x8zip/xm-neon.c.o 2025-08-14T20:46:21.2214540Z [3018/5156] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/init.c.o 2025-08-14T20:46:21.2285480Z [3019/5156] Building C object confu-deps/clog/CMakeFiles/clog.dir/src/clog.c.o 2025-08-14T20:46:21.3259460Z [3020/5156] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/convolution-inference.c.o 2025-08-14T20:46:21.3949890Z [3021/5156] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/assertions.cc.o 2025-08-14T20:46:21.4252660Z [3022/5156] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/interned_strings.cc.o 2025-08-14T20:46:21.4453450Z [3023/5156] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/path.cc.o 2025-08-14T20:46:21.4604100Z [3024/5156] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/ir_pb_converter.cc.o 2025-08-14T20:46:21.4947060Z [3025/5156] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/model_helpers.cc.o 2025-08-14T20:46:21.5178940Z [3026/5156] Building CXX object third_party/onnx/CMakeFiles/onnx_proto.dir/onnx/onnx-data_onnx_torch.pb.cc.o 2025-08-14T20:46:21.5671250Z [3027/5156] Building CXX object third_party/onnx/CMakeFiles/onnx_proto.dir/onnx/onnx-operators_onnx_torch-ml.pb.cc.o 2025-08-14T20:46:21.5737880Z [3028/5156] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/checker.cc.o 2025-08-14T20:46:21.5950450Z [3029/5156] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/status.cc.o 2025-08-14T20:46:21.6734820Z [3030/5156] Building CXX object third_party/onnx/CMakeFiles/onnx_proto.dir/onnx/onnx_onnx_torch-ml.pb.cc.o 2025-08-14T20:46:21.6903650Z [3031/5156] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/controlflow/defs.cc.o 2025-08-14T20:46:21.7178560Z [3032/5156] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/attr_proto_util.cc.o 2025-08-14T20:46:21.7190850Z [3033/5156] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/controlflow/old.cc.o 2025-08-14T20:46:21.7317420Z [3034/5156] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/controlflow/utils.cc.o 2025-08-14T20:46:21.7601380Z [3035/5156] Linking CXX static library lib/libonnx_proto.a 2025-08-14T20:46:21.8265830Z [3036/5156] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/data_type_utils.cc.o 2025-08-14T20:46:21.8829370Z [3037/5156] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/function.cc.o 2025-08-14T20:46:21.9041850Z [3038/5156] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/generator/utils.cc.o 2025-08-14T20:46:21.9091760Z [3039/5156] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/generator/defs.cc.o 2025-08-14T20:46:21.9365070Z [3040/5156] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/generator/old.cc.o 2025-08-14T20:46:21.9753070Z [3041/5156] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/logical/old.cc.o 2025-08-14T20:46:21.9807170Z [3042/5156] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/logical/defs.cc.o 2025-08-14T20:46:21.9943480Z [3043/5156] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/image/defs.cc.o 2025-08-14T20:46:22.0812730Z [3044/5156] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/math/defs.cc.o 2025-08-14T20:46:22.1331550Z [3045/5156] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/math/utils.cc.o 2025-08-14T20:46:22.1451010Z [3046/5156] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/math/old.cc.o 2025-08-14T20:46:22.2348490Z [3047/5156] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/object_detection/defs.cc.o 2025-08-14T20:46:22.2393940Z [3048/5156] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/object_detection/old.cc.o 2025-08-14T20:46:22.2584590Z [3049/5156] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/optional/old.cc.o 2025-08-14T20:46:22.2593720Z [3050/5156] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/parser.cc.o 2025-08-14T20:46:22.2881810Z [3051/5156] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/nn/defs.cc.o 2025-08-14T20:46:22.2981770Z [3052/5156] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/nn/old.cc.o 2025-08-14T20:46:22.3184540Z [3053/5156] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/optional/defs.cc.o 2025-08-14T20:46:22.3380430Z [3054/5156] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/printer.cc.o 2025-08-14T20:46:22.4362240Z [3055/5156] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/quantization/old.cc.o 2025-08-14T20:46:22.4488340Z [3056/5156] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/quantization/defs.cc.o 2025-08-14T20:46:22.4847010Z [3057/5156] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/reduction/defs.cc.o 2025-08-14T20:46:22.5387040Z [3058/5156] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/reduction/old.cc.o 2025-08-14T20:46:22.6016740Z [3059/5156] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/rnn/defs.cc.o 2025-08-14T20:46:22.6196430Z [3060/5156] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/shape_inference.cc.o 2025-08-14T20:46:22.6304420Z [3061/5156] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/reduction/utils.cc.o 2025-08-14T20:46:22.6328530Z [3062/5156] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/rnn/old.cc.o 2025-08-14T20:46:22.6508680Z [3063/5156] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/sequence/defs.cc.o 2025-08-14T20:46:22.6869400Z [3064/5156] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/schema.cc.o 2025-08-14T20:46:22.7659460Z [3065/5156] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/tensor/old.cc.o 2025-08-14T20:46:22.7699580Z [3066/5156] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/tensor/utils.cc.o 2025-08-14T20:46:22.7790490Z [3067/5156] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/tensor_proto_util.cc.o 2025-08-14T20:46:22.8239380Z [3068/5156] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/tensor/defs.cc.o 2025-08-14T20:46:22.8689500Z [3069/5156] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/tensor_util.cc.o 2025-08-14T20:46:22.8788190Z [3070/5156] Linking C static library lib/libclog.a 2025-08-14T20:46:22.9579150Z [3071/5156] Linking CXX static library lib/libpytorch_qnnpack.a 2025-08-14T20:46:22.9787960Z [3072/5156] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/text/defs.cc.o 2025-08-14T20:46:22.9801240Z [3073/5156] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/traditionalml/old.cc.o 2025-08-14T20:46:22.9988530Z [3074/5156] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/fully-connected-inference.c.o 2025-08-14T20:46:23.0000680Z [3075/5156] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/training/defs.cc.o 2025-08-14T20:46:23.0185280Z [3076/5156] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/traditionalml/defs.cc.o 2025-08-14T20:46:23.0231750Z [3077/5156] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/version_converter/helper.cc.o 2025-08-14T20:46:23.0374800Z [3078/5156] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/inliner/inliner.cc.o 2025-08-14T20:46:23.0531590Z [3079/5156] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/pooling-output.c.o 2025-08-14T20:46:23.0550180Z [3080/5156] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/shape_inference/implementation.cc.o 2025-08-14T20:46:23.0870340Z [3081/5156] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/softmax-output.c.o 2025-08-14T20:46:23.1078980Z [3082/5156] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/fully-connected-output.c.o 2025-08-14T20:46:23.1092300Z [3083/5156] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/version_converter/convert.cc.o 2025-08-14T20:46:23.1249120Z [3084/5156] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/relu-output.c.o 2025-08-14T20:46:23.1397920Z [3085/5156] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/relu-input-gradient.c.o 2025-08-14T20:46:23.1404390Z [3086/5156] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/convolution-input-gradient.c.o 2025-08-14T20:46:23.1531430Z [3087/5156] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/convolution-output.c.o 2025-08-14T20:46:23.1876480Z [3088/5156] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/psimd/2d-fourier-8x8.c.o 2025-08-14T20:46:23.1956170Z [3089/5156] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/psimd/2d-fourier-16x16.c.o 2025-08-14T20:46:23.2043670Z [3090/5156] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/convolution-kernel-gradient.c.o 2025-08-14T20:46:23.2095790Z [3091/5156] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/2d-winograd-8x8-3x3.c.o 2025-08-14T20:46:23.2282600Z [3092/5156] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/2d-winograd-8x8-3x3-fp16.c.o 2025-08-14T20:46:23.2400780Z [3093/5156] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/h4gemm.c.o 2025-08-14T20:46:23.2526440Z [3094/5156] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/c4gemm-conjb.c.o 2025-08-14T20:46:23.2529100Z [3095/5156] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/s4gemm.c.o 2025-08-14T20:46:23.2575670Z [3096/5156] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/s4c2gemm-conjb.c.o 2025-08-14T20:46:23.3208770Z [3097/5156] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/psimd/softmax.c.o 2025-08-14T20:46:23.3265800Z [3098/5156] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/relu.c.o 2025-08-14T20:46:23.3304340Z [3099/5156] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/sgemm.c.o 2025-08-14T20:46:23.3370470Z [3100/5156] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/conv1x1.c.o 2025-08-14T20:46:23.3521430Z [3101/5156] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/sdotxf.c.o 2025-08-14T20:46:23.3619690Z [3102/5156] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/psimd/blas/shdotxf.c.o 2025-08-14T20:46:23.3790740Z [3103/5156] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/c4gemm.c.o 2025-08-14T20:46:23.3885050Z [3104/5156] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/s4c2gemm.c.o 2025-08-14T20:46:23.3939250Z [3105/5156] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/c4gemm-conjb-transc.c.o 2025-08-14T20:46:23.4283780Z [3106/5156] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/convolution-output.c.o 2025-08-14T20:46:23.4285540Z [3107/5156] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/convolution-kernel.c.o 2025-08-14T20:46:23.4423060Z [3108/5156] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/fully-connected-output.c.o 2025-08-14T20:46:23.4454310Z [3109/5156] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/convolution-input-gradient.c.o 2025-08-14T20:46:23.4631620Z [3110/5156] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/softmax-output.c.o 2025-08-14T20:46:23.4704990Z [3111/5156] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/s4c2gemm-conjb-transc.c.o 2025-08-14T20:46:23.4731670Z [3112/5156] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/max-pooling-output.c.o 2025-08-14T20:46:23.5043750Z [3113/5156] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/relu-input-gradient.c.o 2025-08-14T20:46:23.5097950Z [3114/5156] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/relu-output.c.o 2025-08-14T20:46:23.5357320Z [3115/5156] Linking C static library lib/libnnpack.a 2025-08-14T20:46:23.5497780Z [3116/5156] Linking C static library lib/libnnpack_reference_layers.a 2025-08-14T20:46:23.5613670Z [3117/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-25p8c-minmax-neonfp16arith-acc2.c.o 2025-08-14T20:46:23.5653850Z [3118/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-avgpool/f16-avgpool-9p8x-minmax-neonfp16arith-c8.c.o 2025-08-14T20:46:23.5765590Z [3119/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-conv-hwc2chw/f16-conv-hwc2chw-3x3s2p1c3x4-neonfp16arith-2x2.c.o 2025-08-14T20:46:23.5792250Z [3120/5156] Linking CXX static library lib/libonnx.a 2025-08-14T20:46:23.5960140Z [3121/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-3p16c-minmax-neonfp16arith.c.o 2025-08-14T20:46:23.6094760Z [3122/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-avgpool/f16-avgpool-9x-minmax-neonfp16arith-c8.c.o 2025-08-14T20:46:23.6375170Z [3123/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-4p16c-minmax-neonfp16arith.c.o 2025-08-14T20:46:23.6569590Z [3124/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-9p16c-minmax-neonfp16arith.c.o 2025-08-14T20:46:23.6687690Z [3125/5156] 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-08-14T20:46:23.6832560Z [3126/5156] 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-08-14T20:46:23.6845530Z [3127/5156] 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-08-14T20:46:23.6849210Z [3128/5156] 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-08-14T20:46:23.7062240Z [3129/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-9p8c-minmax-neonfp16arith.c.o 2025-08-14T20:46:23.7066590Z [3130/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neon-int16-u16.c.o 2025-08-14T20:46:23.7360370Z [3131/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neonfp16-u16.c.o 2025-08-14T20:46:23.7528420Z [3132/5156] 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-08-14T20:46:23.7620250Z [3133/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-scalar-u1.c.o 2025-08-14T20:46:23.7643170Z [3134/5156] 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-08-14T20:46:23.7650280Z [3135/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32acc-rsum/gen/f16-f32acc-rsum-neonfp16arith-u32-acc4.c.o 2025-08-14T20:46:23.7868500Z [3136/5156] 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-08-14T20:46:23.7894990Z [3137/5156] 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-08-14T20:46:23.8046510Z [3138/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-scalar-u4.c.o 2025-08-14T20:46:23.8243210Z [3139/5156] 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-08-14T20:46:23.8266720Z [3140/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-1x16-minmax-neonfp16arith-ld64.c.o 2025-08-14T20:46:23.8450690Z [3141/5156] 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-08-14T20:46:23.8656440Z [3142/5156] 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-08-14T20:46:23.8693720Z [3143/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-1x8-minmax-neonfp16arith-ld64.c.o 2025-08-14T20:46:23.8758600Z [3144/5156] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/f16-igemm-1x16-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2025-08-14T20:46:23.8974520Z [3145/5156] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/f16-igemm-4x16-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2025-08-14T20:46:23.9135440Z [3146/5156] 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-08-14T20:46:23.9367750Z [3147/5156] 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-08-14T20:46:23.9438510Z [3148/5156] 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-08-14T20:46:23.9514710Z [3149/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-6x16-minmax-neonfp16arith-ld64.c.o 2025-08-14T20:46:23.9539670Z [3150/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-ibilinear/gen/f16-ibilinear-neonfp16arith-c8.c.o 2025-08-14T20:46:23.9602940Z [3151/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-ibilinear-chw/gen/f16-ibilinear-chw-neonfp16arith-p8.c.o 2025-08-14T20:46:23.9687720Z [3152/5156] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/f16-igemm-6x16-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2025-08-14T20:46:23.9702700Z [3153/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-6x8-minmax-neonfp16arith-ld64.c.o 2025-08-14T20:46:24.0501400Z [3154/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/gen/f16-igemm-1x8-minmax-neonfp16arith-ld64.c.o 2025-08-14T20:46:24.0519540Z [3155/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/gen/f16-igemm-6x16-minmax-neonfp16arith-ld64.c.o 2025-08-14T20:46:24.0682230Z [3156/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-maxpool/f16-maxpool-9p8x-minmax-neonfp16arith-c8.c.o 2025-08-14T20:46:24.0686230Z [3157/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/gen/f16-igemm-6x8-minmax-neonfp16arith-ld64.c.o 2025-08-14T20:46:24.0813910Z [3158/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-imagic-u4.c.o 2025-08-14T20:46:24.0840950Z [3159/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-pavgpool/f16-pavgpool-9p8x-minmax-neonfp16arith-c8.c.o 2025-08-14T20:46:24.0979920Z [3160/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u32.c.o 2025-08-14T20:46:24.1111650Z [3161/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-pavgpool/f16-pavgpool-9x-minmax-neonfp16arith-c8.c.o 2025-08-14T20:46:24.1268940Z [3162/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-neonfp16arith-u32.c.o 2025-08-14T20:46:24.1408670Z [3163/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/gen/f16-igemm-1x16-minmax-neonfp16arith-ld64.c.o 2025-08-14T20:46:24.1831590Z [3164/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-rminmax/gen/f16-rminmax-scalar-u2-acc2.c.o 2025-08-14T20:46:24.1836190Z [3165/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-rminmax/gen/f16-rmax-neonfp16arith-u32-acc4.c.o 2025-08-14T20:46:24.2045420Z [3166/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-spmm/gen/f16-spmm-32x1-minmax-neonfp16arith-pipelined.c.o 2025-08-14T20:46:24.2108580Z [3167/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vadd-neonfp16arith-u16.c.o 2025-08-14T20:46:24.2231480Z [3168/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-qu8-vcvt/gen/f16-qu8-vcvt-scalar-imagic-u4.c.o 2025-08-14T20:46:24.2243540Z [3169/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-rminmax/gen/f16-rmax-scalar-u2-acc2.c.o 2025-08-14T20:46:24.2443470Z [3170/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u32-acc4.c.o 2025-08-14T20:46:24.2449650Z [3171/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vaddc-neonfp16arith-u16.c.o 2025-08-14T20:46:24.2717960Z [3172/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vdivc-aarch64-neonfp16arith-u8.c.o 2025-08-14T20:46:24.2956640Z [3173/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vdivc-fp16arith-u2.c.o 2025-08-14T20:46:24.2973870Z [3174/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vdiv-fp16arith-u2.c.o 2025-08-14T20:46:24.3101800Z [3175/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vdiv-aarch64-neonfp16arith-u8.c.o 2025-08-14T20:46:24.3375300Z [3176/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmaxc-neonfp16arith-u16.c.o 2025-08-14T20:46:24.3446510Z [3177/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmin-neonfp16arith-u16.c.o 2025-08-14T20:46:24.3460470Z [3178/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmax-neonfp16arith-u16.c.o 2025-08-14T20:46:24.3659100Z [3179/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vminc-neonfp16arith-u16.c.o 2025-08-14T20:46:24.3791560Z [3180/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmul-neonfp16arith-u16.c.o 2025-08-14T20:46:24.4213880Z [3181/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vprelu-neonfp16arith-u16.c.o 2025-08-14T20:46:24.4223980Z [3182/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmulc-neonfp16arith-u16.c.o 2025-08-14T20:46:24.4279370Z [3183/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vpreluc-neonfp16arith-u16.c.o 2025-08-14T20:46:24.4400340Z [3184/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vrdivc-aarch64-neonfp16arith-u8.c.o 2025-08-14T20:46:24.4422770Z [3185/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l8c4s4r-minmax-neonfma-acc2.c.o 2025-08-14T20:46:24.4780510Z [3186/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vmulcaddc/gen/f16-vmulcaddc-c8-minmax-neonfp16arith-2x.c.o 2025-08-14T20:46:24.4964820Z [3187/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l4c4s4r-minmax-neon-acc2.c.o 2025-08-14T20:46:24.5016360Z [3188/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vrpreluc-neonfp16arith-u16.c.o 2025-08-14T20:46:24.5439010Z [3189/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vrsubc-neonfp16arith-u16.c.o 2025-08-14T20:46:24.5490480Z [3190/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vsqrdiff-neonfp16arith-u16.c.o 2025-08-14T20:46:24.5563310Z [3191/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vsqrdiffc-neonfp16arith-u16.c.o 2025-08-14T20:46:24.5571640Z [3192/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vclamp/gen/f16-vclamp-neonfp16arith-u16.c.o 2025-08-14T20:46:24.5656210Z [3193/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vsubc-neonfp16arith-u16.c.o 2025-08-14T20:46:24.5834850Z [3194/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vsub-neonfp16arith-u16.c.o 2025-08-14T20:46:24.5969540Z [3195/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vcmul/gen/f16-vcmul-neonfp16arith-u16.c.o 2025-08-14T20:46:24.5986180Z [3196/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vrdivc-fp16arith-u2.c.o 2025-08-14T20:46:24.6357240Z [3197/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-velu/gen/f16-velu-neonfp16arith-rr1-p3-u16.c.o 2025-08-14T20:46:24.6508990Z [3198/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vhswish/gen/f16-vhswish-neonfp16arith-u16.c.o 2025-08-14T20:46:24.6786720Z [3199/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vlrelu/gen/f16-vlrelu-neonfp16arith-u16.c.o 2025-08-14T20:46:24.6854690Z [3200/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrnd/gen/f16-vrndne-neonfp16arith-u16.c.o 2025-08-14T20:46:24.6998800Z [3201/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1recps-u16.c.o 2025-08-14T20:46:24.7061350Z [3202/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrnd/gen/f16-vrndu-neonfp16arith-u16.c.o 2025-08-14T20:46:24.7225760Z [3203/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrsqrt/gen/f16-vrsqrt-neonfp16arith-rsqrt-u16.c.o 2025-08-14T20:46:24.7241730Z [3204/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1fma-u32.c.o 2025-08-14T20:46:24.7318610Z [3205/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrnd/gen/f16-vrndd-neonfp16arith-u16.c.o 2025-08-14T20:46:24.7328980Z [3206/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrnd/gen/f16-vrndz-neonfp16arith-u16.c.o 2025-08-14T20:46:24.7827500Z [3207/5156] 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-08-14T20:46:24.7877970Z [3208/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vsqrt/gen/f16-vsqrt-aarch64-neonfp16arith-sqrt-u8.c.o 2025-08-14T20:46:24.8049090Z [3209/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vsqrt/gen/f16-vsqrt-neonfp16arith-nr1fma1adj-u8.c.o 2025-08-14T20:46:24.8281510Z [3210/5156] 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-08-14T20:46:24.8296430Z [3211/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-4x-scalar-c1.c.o 2025-08-14T20:46:24.8460520Z [3212/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vunary/gen/f16-vsqr-neonfp16arith-u16.c.o 2025-08-14T20:46:24.8466520Z [3213/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-4x-neon-c4.c.o 2025-08-14T20:46:24.8604560Z [3214/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9p8x-neon-c4.c.o 2025-08-14T20:46:24.8624040Z [3215/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vunary/gen/f16-vabs-neonfp16arith-u16.c.o 2025-08-14T20:46:24.8651720Z [3216/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vunary/gen/f16-vneg-neonfp16arith-u16.c.o 2025-08-14T20:46:24.8841990Z [3217/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9p8x-scalar-c1.c.o 2025-08-14T20:46:24.9220680Z [3218/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9x-neon-c4.c.o 2025-08-14T20:46:24.9252040Z [3219/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-conv-hwc2chw/f32-conv-hwc2chw-3x3s2p1c3x4-aarch64-neonfma-2x2.c.o 2025-08-14T20:46:24.9384160Z [3220/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9x-scalar-c1.c.o 2025-08-14T20:46:24.9509150Z [3221/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-avgpool/f32-avgpool-9p8x-minmax-scalar-c1.c.o 2025-08-14T20:46:24.9514340Z [3222/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-avgpool/f32-avgpool-9p8x-minmax-neon-c4.c.o 2025-08-14T20:46:24.9573150Z [3223/5156] 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-08-14T20:46:24.9846020Z [3224/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-conv-hwc2chw/f32-conv-hwc2chw-3x3s2p1c3x4-scalar-1x1.c.o 2025-08-14T20:46:24.9894340Z [3225/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-avgpool/f32-avgpool-9x-minmax-scalar-c1.c.o 2025-08-14T20:46:24.9999650Z [3226/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-avgpool/f32-avgpool-9x-minmax-neon-c4.c.o 2025-08-14T20:46:25.0033470Z [3227/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-conv-hwc2chw/f32-conv-hwc2chw-3x3s2p1c3x4-neon-2x2.c.o 2025-08-14T20:46:25.0514780Z [3228/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l4c1s1r-minmax-scalar-acc2.c.o 2025-08-14T20:46:25.0568160Z [3229/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p1c-scalar-acc2.c.o 2025-08-14T20:46:25.0608720Z [3230/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p1c-minmax-scalar-acc2.c.o 2025-08-14T20:46:25.0785340Z [3231/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-neonfma-acc2.c.o 2025-08-14T20:46:25.0791560Z [3232/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-neon-acc2.c.o 2025-08-14T20:46:25.0954960Z [3233/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p1c-minmax-scalar-acc2.c.o 2025-08-14T20:46:25.0992120Z [3234/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p1c-scalar-acc2.c.o 2025-08-14T20:46:25.1287020Z [3235/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p8c-minmax-neon.c.o 2025-08-14T20:46:25.1548600Z [3236/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p8c-minmax-neonfma.c.o 2025-08-14T20:46:25.1551100Z [3237/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-4p1c-minmax-scalar-acc2.c.o 2025-08-14T20:46:25.1716490Z [3238/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-4p1c-scalar-acc2.c.o 2025-08-14T20:46:25.1858600Z [3239/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-9p1c-minmax-scalar-acc2.c.o 2025-08-14T20:46:25.2032590Z [3240/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-4p8c-minmax-neon.c.o 2025-08-14T20:46:25.2106380Z [3241/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-4p8c-minmax-neonfma.c.o 2025-08-14T20:46:25.2297140Z [3242/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-9p1c-scalar-acc2.c.o 2025-08-14T20:46:25.2299890Z [3243/5156] 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-08-14T20:46:25.2323690Z [3244/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-9p8c-minmax-neon.c.o 2025-08-14T20:46:25.2648130Z [3245/5156] 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-08-14T20:46:25.2814800Z [3246/5156] 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-08-14T20:46:25.2988060Z [3247/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-9p8c-minmax-neonfma.c.o 2025-08-14T20:46:25.3100620Z [3248/5156] 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-08-14T20:46:25.3201610Z [3249/5156] 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-08-14T20:46:25.3302240Z [3250/5156] 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-08-14T20:46:25.3313030Z [3251/5156] 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-08-14T20:46:25.3512310Z [3252/5156] 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-08-14T20:46:25.3804880Z [3253/5156] 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-08-14T20:46:25.3810560Z [3254/5156] 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-08-14T20:46:25.3844970Z [3255/5156] 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-08-14T20:46:25.4018000Z [3256/5156] 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-08-14T20:46:25.4367320Z [3257/5156] 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-08-14T20:46:25.4375310Z [3258/5156] 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-08-14T20:46:25.4476290Z [3259/5156] 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-08-14T20:46:25.4603490Z [3260/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-neon-u8.c.o 2025-08-14T20:46:25.4729720Z [3261/5156] 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-08-14T20:46:25.4757950Z [3262/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-neonfp16-u16.c.o 2025-08-14T20:46:25.4760770Z [3263/5156] 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-08-14T20:46:25.4928860Z [3264/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-fabsf-u2.c.o 2025-08-14T20:46:25.5001310Z [3265/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-bitcast-u4.c.o 2025-08-14T20:46:25.5494800Z [3266/5156] 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-08-14T20:46:25.5521110Z [3267/5156] 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-08-14T20:46:25.5535560Z [3268/5156] 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-08-14T20:46:25.5598550Z [3269/5156] 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-08-14T20:46:25.5611240Z [3270/5156] 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-08-14T20:46:25.5638140Z [3271/5156] 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-08-14T20:46:25.5719800Z [3272/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x4-relu-scalar.c.o 2025-08-14T20:46:25.5755690Z [3273/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x4-minmax-scalar.c.o 2025-08-14T20:46:25.5761220Z [3274/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x4-scalar.c.o 2025-08-14T20:46:25.6558600Z [3275/5156] 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-08-14T20:46:25.6880550Z [3276/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-neon-lane-ld64.c.o 2025-08-14T20:46:25.6889410Z [3277/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-2x4-scalar.c.o 2025-08-14T20:46:25.6984480Z [3278/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-2x4-minmax-scalar.c.o 2025-08-14T20:46:25.6991690Z [3279/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x2-minmax-scalar.c.o 2025-08-14T20:46:25.7043830Z [3280/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x8s4-minmax-neonfma.c.o 2025-08-14T20:46:25.7148800Z [3281/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-2x4-relu-scalar.c.o 2025-08-14T20:46:25.7244300Z [3282/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x2-minmax-neon-lane-ld64.c.o 2025-08-14T20:46:25.7321940Z [3283/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x2-scalar.c.o 2025-08-14T20:46:25.7367290Z [3284/5156] 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-08-14T20:46:25.7534400Z [3285/5156] 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-08-14T20:46:25.7715120Z [3286/5156] 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-08-14T20:46:25.7857010Z [3287/5156] 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-08-14T20:46:25.8038900Z [3288/5156] 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-08-14T20:46:25.8157460Z [3289/5156] 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-08-14T20:46:25.8253130Z [3290/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x4-scalar.c.o 2025-08-14T20:46:25.8256060Z [3291/5156] 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-08-14T20:46:25.8441200Z [3292/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x4-relu-scalar.c.o 2025-08-14T20:46:25.8542470Z [3293/5156] 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-08-14T20:46:25.8611060Z [3294/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x4-minmax-scalar.c.o 2025-08-14T20:46:25.8894990Z [3295/5156] 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-08-14T20:46:25.8942680Z [3296/5156] 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-08-14T20:46:25.9101200Z [3297/5156] 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-08-14T20:46:25.9107370Z [3298/5156] 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-08-14T20:46:25.9287180Z [3299/5156] 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-08-14T20:46:25.9831310Z [3300/5156] 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-08-14T20:46:25.9838710Z [3301/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-neon-lane-ld128.c.o 2025-08-14T20:46:25.9862980Z [3302/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x8s4-minmax-neonfma.c.o 2025-08-14T20:46:25.9894060Z [3303/5156] 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-08-14T20:46:25.9908800Z [3304/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-neon-p8.c.o 2025-08-14T20:46:26.0021460Z [3305/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-neonfma-p8.c.o 2025-08-14T20:46:26.0072570Z [3306/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-6x8s4-minmax-neonfma.c.o 2025-08-14T20:46:26.0529990Z [3307/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ibilinear/gen/f32-ibilinear-neonfma-c8.c.o 2025-08-14T20:46:26.0595650Z [3308/5156] 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-08-14T20:46:26.0619740Z [3309/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-scalar-p4.c.o 2025-08-14T20:46:26.0650340Z [3310/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ibilinear/gen/f32-ibilinear-neon-c8.c.o 2025-08-14T20:46:26.0666550Z [3311/5156] 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-08-14T20:46:26.0894570Z [3312/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ibilinear/gen/f32-ibilinear-scalar-c2.c.o 2025-08-14T20:46:26.0920470Z [3313/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x4-scalar.c.o 2025-08-14T20:46:26.1089910Z [3314/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x4-minmax-scalar.c.o 2025-08-14T20:46:26.1377080Z [3315/5156] 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-08-14T20:46:26.1479360Z [3316/5156] 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-08-14T20:46:26.1483800Z [3317/5156] 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-08-14T20:46:26.1492060Z [3318/5156] 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-08-14T20:46:26.1509280Z [3319/5156] 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-08-14T20:46:26.1574980Z [3320/5156] 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-08-14T20:46:26.1622030Z [3321/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x4-relu-scalar.c.o 2025-08-14T20:46:26.2186520Z [3322/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-neon-lane-ld64.c.o 2025-08-14T20:46:26.2349600Z [3323/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x8s4-minmax-neonfma.c.o 2025-08-14T20:46:26.2407630Z [3324/5156] 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-08-14T20:46:26.2562060Z [3325/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-2x4-minmax-scalar.c.o 2025-08-14T20:46:26.2816210Z [3326/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x2-scalar.c.o 2025-08-14T20:46:26.2917460Z [3327/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-2x4-relu-scalar.c.o 2025-08-14T20:46:26.2946370Z [3328/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x2-minmax-scalar.c.o 2025-08-14T20:46:26.2963850Z [3329/5156] 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-08-14T20:46:26.3044220Z [3330/5156] 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-08-14T20:46:26.3073700Z [3331/5156] 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-08-14T20:46:26.3252080Z [3332/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x2-minmax-neon-lane-ld64.c.o 2025-08-14T20:46:26.3257280Z [3333/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x4-minmax-scalar.c.o 2025-08-14T20:46:26.3604870Z [3334/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x4-relu-scalar.c.o 2025-08-14T20:46:26.3733920Z [3335/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-2x4-scalar.c.o 2025-08-14T20:46:26.3742410Z [3336/5156] 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-08-14T20:46:26.3744620Z [3337/5156] 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-08-14T20:46:26.3769420Z [3338/5156] 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-08-14T20:46:26.3935130Z [3339/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x4-scalar.c.o 2025-08-14T20:46:26.4098270Z [3340/5156] 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-08-14T20:46:26.4506690Z [3341/5156] 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-08-14T20:46:26.4608330Z [3342/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-neon-lane-ld128.c.o 2025-08-14T20:46:26.4632400Z [3343/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x8s4-minmax-neonfma.c.o 2025-08-14T20:46:26.4645050Z [3344/5156] 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-08-14T20:46:26.4789750Z [3345/5156] 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-08-14T20:46:26.4991320Z [3346/5156] 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-08-14T20:46:26.4993080Z [3347/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-maxpool/f32-maxpool-9p8x-minmax-scalar-c1.c.o 2025-08-14T20:46:26.5245940Z [3348/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-6x8s4-minmax-neonfma.c.o 2025-08-14T20:46:26.5485610Z [3349/5156] 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-08-14T20:46:26.5525870Z [3350/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-maxpool/f32-maxpool-9p8x-minmax-neon-c4.c.o 2025-08-14T20:46:26.5742130Z [3351/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-pavgpool/f32-pavgpool-9x-minmax-scalar-c1.c.o 2025-08-14T20:46:26.5873260Z [3352/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-pavgpool/f32-pavgpool-9p8x-minmax-neon-c4.c.o 2025-08-14T20:46:26.5907340Z [3353/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-pavgpool/f32-pavgpool-9p8x-minmax-scalar-c1.c.o 2025-08-14T20:46:26.6320030Z [3354/5156] 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-08-14T20:46:26.6525240Z [3355/5156] 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-08-14T20:46:26.6562190Z [3356/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x4-minmax-scalar.c.o 2025-08-14T20:46:26.6565590Z [3357/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-pavgpool/f32-pavgpool-9x-minmax-neon-c4.c.o 2025-08-14T20:46:26.6641360Z [3358/5156] 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-08-14T20:46:26.6708660Z [3359/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x4-minmax-scalar.c.o 2025-08-14T20:46:26.6836320Z [3360/5156] 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-08-14T20:46:26.7001450Z [3361/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x4-minmax-scalar.c.o 2025-08-14T20:46:26.7082220Z [3362/5156] 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-08-14T20:46:26.7192110Z [3363/5156] 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-08-14T20:46:26.7265030Z [3364/5156] 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-08-14T20:46:26.7527530Z [3365/5156] 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-08-14T20:46:26.7808600Z [3366/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x4-minmax-scalar.c.o 2025-08-14T20:46:26.7974420Z [3367/5156] 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-08-14T20:46:26.8048810Z [3368/5156] 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-08-14T20:46:26.8168320Z [3369/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-neon-u32.c.o 2025-08-14T20:46:26.8333030Z [3370/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-imagic-u4.c.o 2025-08-14T20:46:26.8383660Z [3371/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-imagic-u1.c.o 2025-08-14T20:46:26.8394710Z [3372/5156] 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-08-14T20:46:26.8564860Z [3373/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-lrintf-u4.c.o 2025-08-14T20:46:26.8618430Z [3374/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-neonv8-u32.c.o 2025-08-14T20:46:26.9056400Z [3375/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-neon-u32.c.o 2025-08-14T20:46:26.9118150Z [3376/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-imagic-u4.c.o 2025-08-14T20:46:26.9175760Z [3377/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-imagic-u1.c.o 2025-08-14T20:46:26.9234270Z [3378/5156] 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-08-14T20:46:26.9323280Z [3379/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-neonv8-u32.c.o 2025-08-14T20:46:26.9348150Z [3380/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-p5-u4-acc2.c.o 2025-08-14T20:46:26.9378520Z [3381/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rdsum/gen/f32-rdsum-7p7x-minmax-scalar.c.o 2025-08-14T20:46:26.9515290Z [3382/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-lrintf-u4.c.o 2025-08-14T20:46:26.9978930Z [3383/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rmax-neon-u16-acc4.c.o 2025-08-14T20:46:27.0119940Z [3384/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rmax-scalar-u4-acc4.c.o 2025-08-14T20:46:27.0268740Z [3385/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rsum/gen/f32-rsum-scalar-u4-acc4.c.o 2025-08-14T20:46:27.0322070Z [3386/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rminmax-neon-u16-acc4.c.o 2025-08-14T20:46:27.0392020Z [3387/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rminmax-scalar-u4-acc4.c.o 2025-08-14T20:46:27.0742830Z [3388/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-32x2-minmax-aarch64-neonfma.c.o 2025-08-14T20:46:27.0747900Z [3389/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rdsum/gen/f32-rdsum-7p7x-minmax-neon-c16.c.o 2025-08-14T20:46:27.0753930Z [3390/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-32x1-minmax-neonfma-pipelined.c.o 2025-08-14T20:46:27.0757460Z [3391/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-32x1-minmax-neon.c.o 2025-08-14T20:46:27.1022390Z [3392/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rsum/gen/f32-rsum-neon-u16-acc4.c.o 2025-08-14T20:46:27.1024980Z [3393/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-scalar.c.o 2025-08-14T20:46:27.1145810Z [3394/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-8x2-minmax-scalar.c.o 2025-08-14T20:46:27.1181850Z [3395/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-32x4-minmax-aarch64-neonfma.c.o 2025-08-14T20:46:27.1624910Z [3396/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vadd-neon-u8.c.o 2025-08-14T20:46:27.1725310Z [3397/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-8x4-minmax-scalar.c.o 2025-08-14T20:46:27.1931220Z [3398/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vaddc-scalar-u8.c.o 2025-08-14T20:46:27.1942520Z [3399/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vadd-scalar-u8.c.o 2025-08-14T20:46:27.2146560Z [3400/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdivc-scalar-u2.c.o 2025-08-14T20:46:27.2153710Z [3401/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdivc-aarch64-neon-u8.c.o 2025-08-14T20:46:27.2175160Z [3402/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdiv-aarch64-neon-u8.c.o 2025-08-14T20:46:27.2383850Z [3403/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdiv-scalar-u2.c.o 2025-08-14T20:46:27.2575530Z [3404/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vaddc-neon-u8.c.o 2025-08-14T20:46:27.2653570Z [3405/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmax-neon-u8.c.o 2025-08-14T20:46:27.2655580Z [3406/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmax-scalar-u8.c.o 2025-08-14T20:46:27.2875160Z [3407/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmaxc-scalar-u8.c.o 2025-08-14T20:46:27.3109860Z [3408/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmaxc-neon-u8.c.o 2025-08-14T20:46:27.3244100Z [3409/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmin-neon-u8.c.o 2025-08-14T20:46:27.3290690Z [3410/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmin-scalar-u8.c.o 2025-08-14T20:46:27.3517200Z [3411/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vminc-neon-u8.c.o 2025-08-14T20:46:27.3682990Z [3412/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vminc-scalar-u8.c.o 2025-08-14T20:46:27.3746960Z [3413/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmul-neon-u8.c.o 2025-08-14T20:46:27.3760840Z [3414/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmul-scalar-u8.c.o 2025-08-14T20:46:27.4018380Z [3415/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vprelu-scalar-u8.c.o 2025-08-14T20:46:27.4022350Z [3416/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vprelu-neon-u8.c.o 2025-08-14T20:46:27.4104370Z [3417/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmulc-scalar-u8.c.o 2025-08-14T20:46:27.4239400Z [3418/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmulc-neon-u8.c.o 2025-08-14T20:46:27.4306750Z [3419/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vpreluc-scalar-u8.c.o 2025-08-14T20:46:27.4474220Z [3420/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vpreluc-neon-u8.c.o 2025-08-14T20:46:27.4760960Z [3421/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrdivc-aarch64-neon-u8.c.o 2025-08-14T20:46:27.4970680Z [3422/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrpreluc-scalar-u8.c.o 2025-08-14T20:46:27.5286840Z [3423/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrpreluc-neon-u8.c.o 2025-08-14T20:46:27.5352420Z [3424/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiffc-neon-u8.c.o 2025-08-14T20:46:27.5410990Z [3425/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrsubc-scalar-u8.c.o 2025-08-14T20:46:27.5521950Z [3426/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiff-scalar-u8.c.o 2025-08-14T20:46:27.5615530Z [3427/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrdivc-scalar-u2.c.o 2025-08-14T20:46:27.5707850Z [3428/5156] 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-08-14T20:46:27.5711110Z [3429/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrsubc-neon-u8.c.o 2025-08-14T20:46:27.5839010Z [3430/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiffc-scalar-u8.c.o 2025-08-14T20:46:27.5865800Z [3431/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiff-neon-u8.c.o 2025-08-14T20:46:27.6461930Z [3432/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsub-neon-u8.c.o 2025-08-14T20:46:27.6469770Z [3433/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsub-scalar-u8.c.o 2025-08-14T20:46:27.6563410Z [3434/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsubc-scalar-u8.c.o 2025-08-14T20:46:27.6568060Z [3435/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsubc-neon-u8.c.o 2025-08-14T20:46:27.6729730Z [3436/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vclamp/gen/f32-vclamp-scalar-u4.c.o 2025-08-14T20:46:27.6953730Z [3437/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vclamp/gen/f32-vclamp-neon-u16.c.o 2025-08-14T20:46:27.7061810Z [3438/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcmul/gen/f32-vcmul-scalar-u4.c.o 2025-08-14T20:46:27.7184130Z [3439/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysign-neon.c.o 2025-08-14T20:46:27.7247690Z [3440/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysign-scalar.c.o 2025-08-14T20:46:27.7374270Z [3441/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcmul/gen/f32-vcmul-neon-u8.c.o 2025-08-14T20:46:27.7473010Z [3442/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysignc-scalar.c.o 2025-08-14T20:46:27.7678370Z [3443/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vrcopysignc-scalar.c.o 2025-08-14T20:46:27.7923800Z [3444/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-neon-rr2-lut16-p3-u8.c.o 2025-08-14T20:46:27.7928980Z [3445/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vrcopysignc-neon.c.o 2025-08-14T20:46:27.8137450Z [3446/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vexp/gen/f32-vexp-scalar-exp.c.o 2025-08-14T20:46:27.8251260Z [3447/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysignc-neon.c.o 2025-08-14T20:46:27.8287490Z [3448/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-lut16-p3-u16.c.o 2025-08-14T20:46:27.8427000Z [3449/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-u2.c.o 2025-08-14T20:46:27.8521580Z [3450/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-p6-u8.c.o 2025-08-14T20:46:27.8683790Z [3451/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-u4.c.o 2025-08-14T20:46:27.8807710Z [3452/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vgelu/gen/f32-vgelu-scalar-rational-12-10-div.c.o 2025-08-14T20:46:27.9082800Z [3453/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vgelu/gen/f32-vgelu-neon-rational-12-10-div.c.o 2025-08-14T20:46:27.9150800Z [3454/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vhswish/gen/f32-vhswish-scalar-u4.c.o 2025-08-14T20:46:27.9241140Z [3455/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlrelu/gen/f32-vlrelu-neon-u8.c.o 2025-08-14T20:46:27.9373520Z [3456/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vhswish/gen/f32-vhswish-neon-u16.c.o 2025-08-14T20:46:27.9388510Z [3457/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlog/gen/f32-vlog-scalar-rational-3-3-div.c.o 2025-08-14T20:46:27.9578370Z [3458/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlrelu/gen/f32-vlrelu-scalar-u4.c.o 2025-08-14T20:46:27.9700100Z [3459/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c4-minmax-neonfma-2x.c.o 2025-08-14T20:46:27.9708410Z [3460/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlog/gen/f32-vlog-neon-rational-3-3-div.c.o 2025-08-14T20:46:28.0016750Z [3461/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c1-minmax-scalar-2x.c.o 2025-08-14T20:46:28.0047350Z [3462/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrelu/gen/f32-vrelu-scalar-u8.c.o 2025-08-14T20:46:28.0315530Z [3463/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c4-minmax-neon-2x.c.o 2025-08-14T20:46:28.0519050Z [3464/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-scalar-libm-u1.c.o 2025-08-14T20:46:28.0595190Z [3465/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-neonv8-u8.c.o 2025-08-14T20:46:28.0739070Z [3466/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-neon-u8.c.o 2025-08-14T20:46:28.0746210Z [3467/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-neonv8-u8.c.o 2025-08-14T20:46:28.0760600Z [3468/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-scalar-libm-u4.c.o 2025-08-14T20:46:28.0946220Z [3469/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-neon-u8.c.o 2025-08-14T20:46:28.0960200Z [3470/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-scalar-libm-u1.c.o 2025-08-14T20:46:28.0975530Z [3471/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-neonv8-u8.c.o 2025-08-14T20:46:28.1586920Z [3472/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-scalar-libm-u4.c.o 2025-08-14T20:46:28.1607170Z [3473/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-neon-u8.c.o 2025-08-14T20:46:28.1799910Z [3474/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-neonv8-u8.c.o 2025-08-14T20:46:28.1811730Z [3475/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-scalar-libm-u1.c.o 2025-08-14T20:46:28.1943280Z [3476/5156] 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-08-14T20:46:28.1980130Z [3477/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-scalar-libm-u1.c.o 2025-08-14T20:46:28.2127190Z [3478/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-neon-u8.c.o 2025-08-14T20:46:28.2135620Z [3479/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-scalar-libm-u4.c.o 2025-08-14T20:46:28.2329280Z [3480/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-scalar-libm-u4.c.o 2025-08-14T20:46:28.2330400Z [3481/5156] 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-08-14T20:46:28.2851250Z [3482/5156] 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-08-14T20:46:28.2858880Z [3483/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrsqrt/gen/f32-vrsqrt-scalar-rsqrt-u1.c.o 2025-08-14T20:46:28.2900950Z [3484/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrsqrt/gen/f32-vrsqrt-neon-rsqrt-u16.c.o 2025-08-14T20:46:28.3071760Z [3485/5156] 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-08-14T20:46:28.3112920Z [3486/5156] 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-08-14T20:46:28.3116460Z [3487/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrsqrt/gen/f32-vrsqrt-scalar-rsqrt-u4.c.o 2025-08-14T20:46:28.3447340Z [3488/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsqrt/gen/f32-vsqrt-scalar-sqrt-u1.c.o 2025-08-14T20:46:28.3566320Z [3489/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsqrt/gen/f32-vsqrt-aarch64-neon-sqrt-u4.c.o 2025-08-14T20:46:28.3679510Z [3490/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vtanh/gen/f32-vtanh-neon-rational-9-8-div.c.o 2025-08-14T20:46:28.3896880Z [3491/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vabs-scalar.c.o 2025-08-14T20:46:28.3993640Z [3492/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vtanh/gen/f32-vtanh-scalar-rational-9-8-div.c.o 2025-08-14T20:46:28.4132570Z [3493/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vsqr-scalar.c.o 2025-08-14T20:46:28.4191300Z [3494/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vneg-scalar.c.o 2025-08-14T20:46:28.4326660Z [3495/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vsqr-neon.c.o 2025-08-14T20:46:28.4488940Z [3496/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vneg-neon.c.o 2025-08-14T20:46:28.4669110Z [3497/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/pf32-gemm/pf32-gemm-32x32-minmax-neonsme2.c.o 2025-08-14T20:46:28.4671920Z /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-08-14T20:46:28.4673970Z } 2025-08-14T20:46:28.4674230Z ^ 2025-08-14T20:46:28.4696380Z /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-08-14T20:46:28.4697000Z } 2025-08-14T20:46:28.4709980Z ^ 2025-08-14T20:46:28.4710230Z 2 warnings generated. 2025-08-14T20:46:28.4870880Z [3498/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vabs-neon.c.o 2025-08-14T20:46:28.4940200Z [3499/5156] 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-08-14T20:46:28.5123980Z [3500/5156] 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-08-14T20:46:28.5206220Z [3501/5156] 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-08-14T20:46:28.5477240Z [3502/5156] 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-08-14T20:46:28.5787310Z [3503/5156] 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-08-14T20:46:28.5888560Z [3504/5156] 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-08-14T20:46:28.5963930Z [3505/5156] 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-08-14T20:46:28.5982140Z [3506/5156] 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-08-14T20:46:28.6134030Z [3507/5156] 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-08-14T20:46:28.6141420Z [3508/5156] 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-08-14T20:46:28.6165920Z [3509/5156] 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-08-14T20:46:28.6636640Z [3510/5156] 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-08-14T20:46:28.6715230Z [3511/5156] 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-08-14T20:46:28.7044390Z [3512/5156] 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-08-14T20:46:28.7111530Z [3513/5156] 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-08-14T20:46:28.7280060Z [3514/5156] 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-08-14T20:46:28.7395250Z [3515/5156] 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-08-14T20:46:28.7433110Z [3516/5156] 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-08-14T20:46:28.7454780Z [3517/5156] 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-08-14T20:46:28.7560050Z [3518/5156] 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-08-14T20:46:28.7582960Z [3519/5156] 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-08-14T20:46:28.8272690Z [3520/5156] 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-08-14T20:46:28.8297960Z [3521/5156] 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-08-14T20:46:28.8320210Z [3522/5156] 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-08-14T20:46:28.8533070Z [3523/5156] 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-08-14T20:46:28.8591330Z [3524/5156] 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-08-14T20:46:28.8713380Z [3525/5156] 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-08-14T20:46:28.8856760Z [3526/5156] 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-08-14T20:46:28.8859630Z [3527/5156] 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-08-14T20:46:28.9037930Z [3528/5156] 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-08-14T20:46:28.9044130Z [3529/5156] 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-08-14T20:46:28.9769070Z [3530/5156] 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-08-14T20:46:28.9783010Z [3531/5156] 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-08-14T20:46:28.9998210Z [3532/5156] 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-08-14T20:46:29.0017900Z [3533/5156] 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-08-14T20:46:29.0057650Z [3534/5156] 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-08-14T20:46:29.0063630Z [3535/5156] 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-08-14T20:46:29.0179880Z [3536/5156] 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-08-14T20:46:29.0346600Z [3537/5156] 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-08-14T20:46:29.0361000Z [3538/5156] 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-08-14T20:46:29.0864810Z [3539/5156] 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-08-14T20:46:29.0871520Z [3540/5156] 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-08-14T20:46:29.0916090Z [3541/5156] 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-08-14T20:46:29.0918640Z [3542/5156] 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-08-14T20:46:29.1263820Z [3543/5156] 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-08-14T20:46:29.1494770Z [3544/5156] 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-08-14T20:46:29.1672360Z [3545/5156] 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-08-14T20:46:29.1688440Z [3546/5156] 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-08-14T20:46:29.1776800Z [3547/5156] 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-08-14T20:46:29.2156880Z [3548/5156] 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-08-14T20:46:29.2165760Z [3549/5156] 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-08-14T20:46:29.2254070Z [3550/5156] 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-08-14T20:46:29.2274830Z [3551/5156] 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-08-14T20:46:29.2402520Z [3552/5156] 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-08-14T20:46:29.2474250Z [3553/5156] 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-08-14T20:46:29.2788560Z [3554/5156] 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-08-14T20:46:29.3007710Z [3555/5156] 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-08-14T20:46:29.3073240Z [3556/5156] 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-08-14T20:46:29.3220920Z [3557/5156] 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-08-14T20:46:29.3332070Z [3558/5156] 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-08-14T20:46:29.3336990Z [3559/5156] 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-08-14T20:46:29.3346110Z [3560/5156] 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-08-14T20:46:29.3518950Z [3561/5156] 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-08-14T20:46:29.3573910Z [3562/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.o 2025-08-14T20:46:29.3945230Z [3563/5156] 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-08-14T20:46:29.3963990Z [3564/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p1c-minmax-fp32-scalar-imagic.c.o 2025-08-14T20:46:29.4186910Z [3565/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.o 2025-08-14T20:46:29.4521550Z [3566/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.o 2025-08-14T20:46:29.4556600Z [3567/5156] 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-08-14T20:46:29.4613370Z [3568/5156] 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-08-14T20:46:29.4631840Z [3569/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.o 2025-08-14T20:46:29.4673670Z [3570/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f16-vcvt/gen/qs8-f16-vcvt-neonfp16arith-u32.c.o 2025-08-14T20:46:29.4790750Z [3571/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-neon-u32.c.o 2025-08-14T20:46:29.4819530Z [3572/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p2c-minmax-fp32-scalar-imagic.c.o 2025-08-14T20:46:29.5012840Z [3573/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-scalar-u1.c.o 2025-08-14T20:46:29.5389850Z [3574/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-scalar-u4.c.o 2025-08-14T20:46:29.5498270Z [3575/5156] 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-08-14T20:46:29.5707190Z [3576/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-packw/gen/qs8-packw-x16c8-gemm-goi-scalar.c.o 2025-08-14T20:46:29.5766110Z [3577/5156] 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-08-14T20:46:29.5772970Z [3578/5156] 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-08-14T20:46:29.6002570Z [3579/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-packw/gen/qs8-packw-x64c4-gemm-goi-scalar.c.o 2025-08-14T20:46:29.6156120Z [3580/5156] 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-08-14T20:46:29.6304040Z [3581/5156] 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-08-14T20:46:29.6658430Z [3582/5156] 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-08-14T20:46:29.6667750Z [3583/5156] 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-08-14T20:46:29.6685940Z [3584/5156] 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-08-14T20:46:29.6725890Z [3585/5156] 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-08-14T20:46:29.6874950Z [3586/5156] 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-08-14T20:46:29.6912110Z [3587/5156] 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-08-14T20:46:29.6919130Z [3588/5156] 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-08-14T20:46:29.7444830Z [3589/5156] 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-08-14T20:46:29.7621870Z [3590/5156] 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-08-14T20:46:29.7727380Z [3591/5156] 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-08-14T20:46:29.7743040Z [3592/5156] 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-08-14T20:46:29.7913800Z [3593/5156] 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-08-14T20:46:29.7952910Z [3594/5156] 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-08-14T20:46:29.8005220Z [3595/5156] 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-08-14T20:46:29.8178670Z [3596/5156] 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-08-14T20:46:29.8356420Z [3597/5156] 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-08-14T20:46:29.8493990Z [3598/5156] 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-08-14T20:46:29.8542110Z [3599/5156] 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-08-14T20:46:29.8695540Z [3600/5156] 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-08-14T20:46:29.8699880Z [3601/5156] 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-08-14T20:46:29.8711080Z [3602/5156] 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-08-14T20:46:29.8912630Z [3603/5156] 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-08-14T20:46:29.9212670Z [3604/5156] 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-08-14T20:46:29.9368250Z [3605/5156] 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-08-14T20:46:29.9403940Z [3606/5156] 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-08-14T20:46:29.9453350Z [3607/5156] 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-08-14T20:46:29.9549780Z [3608/5156] 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-08-14T20:46:29.9675170Z [3609/5156] 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-08-14T20:46:29.9847500Z [3610/5156] 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-08-14T20:46:30.0299420Z [3611/5156] 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-08-14T20:46:30.0362470Z [3612/5156] 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-08-14T20:46:30.0545220Z [3613/5156] 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-08-14T20:46:30.0686990Z [3614/5156] 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-08-14T20:46:30.0785410Z [3615/5156] 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-08-14T20:46:30.0787870Z [3616/5156] 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-08-14T20:46:30.0933210Z [3617/5156] 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-08-14T20:46:30.0948080Z [3618/5156] 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-08-14T20:46:30.1011900Z [3619/5156] 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-08-14T20:46:30.1058190Z [3620/5156] 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-08-14T20:46:30.1108180Z [3621/5156] 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-08-14T20:46:30.1236860Z [3622/5156] 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-08-14T20:46:30.1638030Z [3623/5156] 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-08-14T20:46:30.1646500Z [3624/5156] 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-08-14T20:46:30.1866270Z [3625/5156] 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-08-14T20:46:30.1871980Z [3626/5156] 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-08-14T20:46:30.1964580Z [3627/5156] 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-08-14T20:46:30.2032590Z [3628/5156] 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-08-14T20:46:30.2034890Z [3629/5156] 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-08-14T20:46:30.2222310Z [3630/5156] 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-08-14T20:46:30.2569670Z [3631/5156] 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-08-14T20:46:30.2773810Z [3632/5156] 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-08-14T20:46:30.2978000Z [3633/5156] 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-08-14T20:46:30.3060900Z [3634/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rdsum/gen/qs8-rdsum-minmax-fp32-scalar-u1-acc1.c.o 2025-08-14T20:46:30.3065150Z [3635/5156] 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-08-14T20:46:30.3175510Z [3636/5156] 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-08-14T20:46:30.3199120Z [3637/5156] 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-08-14T20:46:30.3323180Z [3638/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rsum/gen/qs8-rsum-scalar-u4.c.o 2025-08-14T20:46:30.3362760Z [3639/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rdsum/gen/qs8-rdsum-7p7x-minmax-fp32-neon-c32.c.o 2025-08-14T20:46:30.3367470Z [3640/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rsum/gen/qs8-rsum-neon-u32-acc2.c.o 2025-08-14T20:46:30.3898210Z [3641/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rsum/gen/qs8-rsum-neondot-u32-acc2.c.o 2025-08-14T20:46:30.4201290Z [3642/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-neon-ld64-u32.c.o 2025-08-14T20:46:30.4293700Z [3643/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-scalar-u4.c.o 2025-08-14T20:46:30.4299520Z [3644/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-scalar-u1.c.o 2025-08-14T20:46:30.4319710Z [3645/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-scalar-u1.c.o 2025-08-14T20:46:30.4466840Z [3646/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-scalar-u1.c.o 2025-08-14T20:46:30.4609740Z [3647/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-neon-ld64-u32.c.o 2025-08-14T20:46:30.4788550Z [3648/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-scalar-u4.c.o 2025-08-14T20:46:30.4922180Z [3649/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-neon-ld64-u16.c.o 2025-08-14T20:46:30.4998430Z [3650/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-neon-u32.c.o 2025-08-14T20:46:30.5144510Z [3651/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-neon-ld64-u16.c.o 2025-08-14T20:46:30.5148130Z [3652/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-scalar-u4.c.o 2025-08-14T20:46:30.5209120Z [3653/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-avgpool/qu8-avgpool-9p8x-minmax-fp32-scalar-imagic-c1.c.o 2025-08-14T20:46:30.5378880Z [3654/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-andxor-u4.c.o 2025-08-14T20:46:30.5388080Z [3655/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-neon-u32.c.o 2025-08-14T20:46:30.5617680Z [3656/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-select-u4.c.o 2025-08-14T20:46:30.5965840Z [3657/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-scalar-u4.c.o 2025-08-14T20:46:30.6113660Z [3658/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmul/gen/qs8-vmul-minmax-rndnu-neon-ld64-u16.c.o 2025-08-14T20:46:30.6119500Z [3659/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-scalar-u4.c.o 2025-08-14T20:46:30.6144970Z [3660/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-avgpool/qu8-avgpool-9x-minmax-fp32-scalar-imagic-c1.c.o 2025-08-14T20:46:30.6338040Z [3661/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.o 2025-08-14T20:46:30.6341550Z [3662/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-avgpool/qu8-avgpool-9p8x-minmax-fp32-neon-c8.c.o 2025-08-14T20:46:30.6491280Z [3663/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p1c-minmax-fp32-scalar-imagic.c.o 2025-08-14T20:46:30.6494970Z [3664/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-rndnu-neon-ld64-u16.c.o 2025-08-14T20:46:30.6738890Z [3665/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.o 2025-08-14T20:46:30.6958630Z [3666/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-avgpool/qu8-avgpool-9x-minmax-fp32-neon-c8.c.o 2025-08-14T20:46:30.7262620Z [3667/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p2c-minmax-fp32-scalar-imagic.c.o 2025-08-14T20:46:30.7444840Z [3668/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l1c1s1r-minmax-scalar-acc2.c.o 2025-08-14T20:46:30.7447350Z [3669/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-rndnu-neon-mul8.c.o 2025-08-14T20:46:30.7456190Z [3670/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.o 2025-08-14T20:46:30.7598320Z [3671/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-scalar-u1.c.o 2025-08-14T20:46:30.7651950Z [3672/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-scalar-u4.c.o 2025-08-14T20:46:30.7655590Z [3673/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-neon-u32.c.o 2025-08-14T20:46:30.7809640Z [3674/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-rndnu-neon-mul8.c.o 2025-08-14T20:46:30.7873750Z [3675/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.o 2025-08-14T20:46:30.8384570Z [3676/5156] 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-08-14T20:46:30.8595020Z [3677/5156] 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-08-14T20:46:30.8675440Z [3678/5156] 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-08-14T20:46:30.8816070Z [3679/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-2x2-minmax-fp32-scalar-imagic.c.o 2025-08-14T20:46:30.8825730Z [3680/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x4-minmax-fp32-scalar-lrintf.c.o 2025-08-14T20:46:30.8885080Z [3681/5156] 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-08-14T20:46:30.9010420Z [3682/5156] 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-08-14T20:46:30.9025690Z [3683/5156] 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-08-14T20:46:30.9184100Z [3684/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-3x4-minmax-fp32-scalar-lrintf.c.o 2025-08-14T20:46:30.9192130Z [3685/5156] 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-08-14T20:46:30.9381460Z [3686/5156] 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-08-14T20:46:30.9580630Z [3687/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x2-minmax-fp32-scalar-imagic.c.o 2025-08-14T20:46:31.0026890Z [3688/5156] 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-08-14T20:46:31.0239890Z [3689/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x2-minmax-fp32-scalar-imagic.c.o 2025-08-14T20:46:31.0382010Z [3690/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-3x4-minmax-fp32-scalar-lrintf.c.o 2025-08-14T20:46:31.0483510Z [3691/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-2x2-minmax-fp32-scalar-imagic.c.o 2025-08-14T20:46:31.0485980Z [3692/5156] 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-08-14T20:46:31.0588560Z [3693/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x4-minmax-fp32-scalar-lrintf.c.o 2025-08-14T20:46:31.0591020Z [3694/5156] 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-08-14T20:46:31.0614540Z [3695/5156] 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-08-14T20:46:31.0642820Z [3696/5156] 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-08-14T20:46:31.0677320Z [3697/5156] 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-08-14T20:46:31.0707770Z [3698/5156] 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-08-14T20:46:31.1175690Z [3699/5156] 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-08-14T20:46:31.1374460Z [3700/5156] 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-08-14T20:46:31.1685940Z [3701/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rdsum/gen/qu8-rdsum-scalar.c.o 2025-08-14T20:46:31.1704330Z [3702/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rsum/gen/qu8-rsum-scalar-u4.c.o 2025-08-14T20:46:31.1862170Z [3703/5156] 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-08-14T20:46:31.1865030Z [3704/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rdsum/gen/qu8-rdsum-7p7x-neon-u16.c.o 2025-08-14T20:46:31.2013540Z [3705/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rsum/gen/qu8-rsum-neon-u32-acc2.c.o 2025-08-14T20:46:31.2029320Z [3706/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rdsum/gen/qu8-rdsum-7p7x-neon-u32.c.o 2025-08-14T20:46:31.2055620Z [3707/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-neon-ld64-u32.c.o 2025-08-14T20:46:31.2221460Z [3708/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-neon-ld64-u16.c.o 2025-08-14T20:46:31.2432080Z [3709/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-scalar-u4.c.o 2025-08-14T20:46:31.2808520Z [3710/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-scalar-u1.c.o 2025-08-14T20:46:31.2943410Z [3711/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-neon-ld64-u16.c.o 2025-08-14T20:46:31.2952080Z [3712/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-neon-ld64-u32.c.o 2025-08-14T20:46:31.3019970Z [3713/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-scalar-u1.c.o 2025-08-14T20:46:31.3030650Z [3714/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-scalar-u1.c.o 2025-08-14T20:46:31.3145580Z [3715/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-scalar-u4.c.o 2025-08-14T20:46:31.3157740Z [3716/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-scalar-u4.c.o 2025-08-14T20:46:31.3555770Z [3717/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-neon-u32.c.o 2025-08-14T20:46:31.3611960Z [3718/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-neon-u32.c.o 2025-08-14T20:46:31.3850660Z [3719/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-select-u4.c.o 2025-08-14T20:46:31.3924220Z [3720/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-andxor-u4.c.o 2025-08-14T20:46:31.4171230Z [3721/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-scalar-u4.c.o 2025-08-14T20:46:31.4174620Z [3722/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s32-f32-vcvt/gen/s32-f32-vcvt-scalar.c.o 2025-08-14T20:46:31.4231000Z [3723/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmul/gen/qu8-vmul-minmax-rndnu-neon-ld64-u16.c.o 2025-08-14T20:46:31.4352100Z [3724/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-rndnu-neon-ld64-u16.c.o 2025-08-14T20:46:31.4355550Z [3725/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s32-f32-vcvt/gen/s32-f32-vcvt-neon.c.o 2025-08-14T20:46:31.4383780Z [3726/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-scalar-u4.c.o 2025-08-14T20:46:31.4964880Z [3727/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-ibilinear/gen/s8-ibilinear-neon-c16.c.o 2025-08-14T20:46:31.5057430Z [3728/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-vclamp/s8-vclamp-neon-u64.c.o 2025-08-14T20:46:31.5122050Z [3729/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-ibilinear/gen/s8-ibilinear-scalar-c1.c.o 2025-08-14T20:46:31.5273710Z [3730/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-ibilinear/gen/s8-ibilinear-neon-c8.c.o 2025-08-14T20:46:31.5277980Z [3731/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-lut32norm/u8-lut32norm-scalar.c.o 2025-08-14T20:46:31.5315210Z [3732/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-maxpool/s8-maxpool-9p8x-minmax-scalar-c1.c.o 2025-08-14T20:46:31.5472780Z [3733/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-maxpool/s8-maxpool-9p8x-minmax-neon-c16.c.o 2025-08-14T20:46:31.5478190Z [3734/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-maxpool/u8-maxpool-9p8x-minmax-neon-c16.c.o 2025-08-14T20:46:31.5598050Z [3735/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-vclamp/s8-vclamp-scalar-u4.c.o 2025-08-14T20:46:31.5633610Z [3736/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-ibilinear/gen/u8-ibilinear-neon-c16.c.o 2025-08-14T20:46:31.6092430Z [3737/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-ibilinear/gen/u8-ibilinear-scalar-c1.c.o 2025-08-14T20:46:31.6263160Z [3738/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-ibilinear/gen/u8-ibilinear-neon-c8.c.o 2025-08-14T20:46:31.6368170Z [3739/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-rmax/u8-rmax-scalar-u2.c.o 2025-08-14T20:46:31.6390020Z [3740/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-rmax/u8-rmax-neon-u16.c.o 2025-08-14T20:46:31.6440620Z [3741/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-maxpool/u8-maxpool-9p8x-minmax-scalar-c1.c.o 2025-08-14T20:46:31.6588940Z [3742/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-vclamp/u8-vclamp-scalar-u4.c.o 2025-08-14T20:46:31.6673780Z [3743/5156] 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-08-14T20:46:31.6897940Z [3744/5156] 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-08-14T20:46:31.7133000Z [3745/5156] 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-08-14T20:46:31.7207160Z [3746/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x16-transposec/gen/x16-transposec-8x8-reuse-dec-zip-neon.c.o 2025-08-14T20:46:31.7411180Z [3747/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x24-transposec/gen/x24-transposec-1x2-scalar.c.o 2025-08-14T20:46:31.7426810Z [3748/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-vclamp/u8-vclamp-neon-u64.c.o 2025-08-14T20:46:31.7590560Z [3749/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x24-transposec/x24-transposec-4x4-aarch64-neon-tbl128.c.o 2025-08-14T20:46:31.7699980Z [3750/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x16-transposec/gen/x16-transposec-2x4-scalar-int.c.o 2025-08-14T20:46:31.7713940Z [3751/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x24-transposec/x24-transposec-2x2-neon-tbl64.c.o 2025-08-14T20:46:31.7920080Z [3752/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-pack-lh/x32-packlh-neonsme2.c.o 2025-08-14T20:46:31.7925500Z /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-08-14T20:46:31.7940210Z } 2025-08-14T20:46:31.7940550Z ^ 2025-08-14T20:46:31.7940880Z 1 warning generated. 2025-08-14T20:46:31.8097540Z [3753/5156] 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-08-14T20:46:31.8274120Z [3754/5156] 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-08-14T20:46:31.8442900Z [3755/5156] 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-08-14T20:46:31.8463550Z [3756/5156] 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-08-14T20:46:31.8731210Z [3757/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-transposec/x32-transposec-4x4-aarch64-neon-tbl128.c.o 2025-08-14T20:46:31.8733570Z [3758/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-transposec/gen/x32-transposec-4x4-reuse-dec-zip-neon.c.o 2025-08-14T20:46:31.8797670Z [3759/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x2-scalar.c.o 2025-08-14T20:46:31.8823900Z [3760/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-transposec/gen/x32-transposec-2x4-scalar-int.c.o 2025-08-14T20:46:31.8886730Z [3761/5156] 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-08-14T20:46:31.8935850Z [3762/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-unpool/x32-unpool-scalar.c.o 2025-08-14T20:46:31.9085950Z [3763/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-unpool/x32-unpool-neon.c.o 2025-08-14T20:46:31.9342710Z [3764/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x2-neon.c.o 2025-08-14T20:46:31.9449330Z [3765/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x3-scalar.c.o 2025-08-14T20:46:31.9544240Z [3766/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x3-neon.c.o 2025-08-14T20:46:31.9917240Z [3767/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x4-scalar.c.o 2025-08-14T20:46:32.0039980Z [3768/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-xm-neon.c.o 2025-08-14T20:46:32.0043990Z [3769/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-lut/gen/x8-lut-scalar-u4.c.o 2025-08-14T20:46:32.0076710Z [3770/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-xm-scalar.c.o 2025-08-14T20:46:32.0095730Z [3771/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x64-transposec/gen/x64-transposec-2x2-multi-dec-zip-neon.c.o 2025-08-14T20:46:32.0134390Z [3772/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x64-transposec/gen/x64-transposec-2x2-reuse-dec-zip-neon.c.o 2025-08-14T20:46:32.0217750Z [3773/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x4-neon.c.o 2025-08-14T20:46:32.0436150Z [3774/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x64-transposec/gen/x64-transposec-4x2-scalar-int.c.o 2025-08-14T20:46:32.0605040Z [3775/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-lut/gen/x8-lut-aarch64-neon-tbx128x4-u64.c.o 2025-08-14T20:46:32.0769450Z [3776/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-transposec/gen/x8-transposec-16x16-reuse-dec-zip-neon.c.o 2025-08-14T20:46:32.1137630Z [3777/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packq/x8-packq-aarch64-neon-f32qp8-u2.c.o 2025-08-14T20:46:32.1282420Z [3778/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packw/gen/x8-packw-x32-gemm-goi-scalar-u2.c.o 2025-08-14T20:46:32.1383250Z [3779/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packw/gen/x8-packw-x16-gemm-goi-scalar-u2.c.o 2025-08-14T20:46:32.1403030Z [3780/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x2-scalar.c.o 2025-08-14T20:46:32.1436790Z [3781/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x2-neon.c.o 2025-08-14T20:46:32.1592350Z [3782/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packw/gen/x8-packw-x4-gemm-goi-scalar-u2.c.o 2025-08-14T20:46:32.1598050Z [3783/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packw/gen/x8-packw-x8-gemm-goi-scalar-u2.c.o 2025-08-14T20:46:32.1605500Z [3784/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-transposec/gen/x8-transposec-2x4-scalar-int.c.o 2025-08-14T20:46:32.1876720Z [3785/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x3-neon.c.o 2025-08-14T20:46:32.1982220Z [3786/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packq/x8-packq-scalar-f32qp8-u1.c.o 2025-08-14T20:46:32.1985730Z [3787/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x3-scalar.c.o 2025-08-14T20:46:32.2170840Z [3788/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x4-neon.c.o 2025-08-14T20:46:32.2259250Z [3789/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x4-scalar.c.o 2025-08-14T20:46:32.2466180Z [3790/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-xm-scalar.c.o 2025-08-14T20:46:32.2549120Z [3791/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-xm-neon.c.o 2025-08-14T20:46:32.2745520Z [3792/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-copy/xx-copy-scalar-memcpy.c.o 2025-08-14T20:46:32.2763030Z [3793/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-fill/xx-fill-neon-u64.c.o 2025-08-14T20:46:32.2802100Z [3794/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-fill/xx-fill-scalar-u16.c.o 2025-08-14T20:46:32.2967500Z [3795/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-pad/xx-pad-p4-scalar-u16.c.o 2025-08-14T20:46:32.2970210Z [3796/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2-k-over-64.c.o 2025-08-14T20:46:32.3211180Z [3797/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-pad/xx-pad-p16-neon-u16.c.o 2025-08-14T20:46:32.3269140Z [3798/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-transposev/xx-transposev-1x1-scalar-memcpy.c.o 2025-08-14T20:46:32.3274990Z [3799/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2-k-over-2048.c.o 2025-08-14T20:46:32.3471550Z [3800/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-4.c.o 2025-08-14T20:46:32.3517050Z [3801/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-8.c.o 2025-08-14T20:46:32.3743020Z [3802/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-64.c.o 2025-08-14T20:46:32.3855450Z [3803/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-32.c.o 2025-08-14T20:46:32.3944420Z [3804/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/vlog.c.o 2025-08-14T20:46:32.3959970Z [3805/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-16.c.o 2025-08-14T20:46:32.3995600Z [3806/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-2048.c.o 2025-08-14T20:46:32.4192780Z [3807/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l1c1s1r-scalar-acc2.c.o 2025-08-14T20:46:32.4319350Z [3808/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p2c-scalar-acc2.c.o 2025-08-14T20:46:32.4344690Z [3809/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p2c-minmax-scalar.c.o 2025-08-14T20:46:32.4652450Z [3810/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l1c1s1r-scalar.c.o 2025-08-14T20:46:32.4742060Z [3811/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l1c1s1r-minmax-scalar.c.o 2025-08-14T20:46:32.4786930Z [3812/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l1c1s1r-minmax-scalar-acc2.c.o 2025-08-14T20:46:32.4856760Z [3813/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l1c1s1r-minmax-scalar.c.o 2025-08-14T20:46:32.6144170Z [3814/5156] Linking C static library lib/libmicrokernels-prod.a 2025-08-14T20:46:32.6344840Z [3815/5156] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p2c-scalar.c.o 2025-08-14T20:46:32.6587190Z [3816/5156] Generating build_identifier.c 2025-08-14T20:46:33.2744930Z [3817/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_nn_functions.cpp.o 2025-08-14T20:46:33.2996140Z [3818/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_torch_functions_1.cpp.o 2025-08-14T20:46:33.3043990Z [3819/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_variable_methods.cpp.o 2025-08-14T20:46:33.3820550Z [3820/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_torch_functions_0.cpp.o 2025-08-14T20:46:33.4152410Z [3821/5156] Linking C static library lib/libmicrokernels-all.a 2025-08-14T20:46:33.5164340Z [3822/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_functions_1.cpp.o 2025-08-14T20:46:33.5462490Z [3823/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_functions_0.cpp.o 2025-08-14T20:46:33.5574470Z [3824/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_functions_2.cpp.o 2025-08-14T20:46:33.5848880Z [3825/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_functions_3.cpp.o 2025-08-14T20:46:33.7827000Z [3826/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_linalg_functions.cpp.o 2025-08-14T20:46:33.8261200Z [3827/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_fft_functions.cpp.o 2025-08-14T20:46:33.8435570Z [3828/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/DataLoader.cpp.o 2025-08-14T20:46:33.8691460Z [3829/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_functions_4.cpp.o 2025-08-14T20:46:33.8829940Z [3830/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_torch_functions_2.cpp.o 2025-08-14T20:46:33.8879950Z [3831/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_nested_functions.cpp.o 2025-08-14T20:46:34.0936540Z [3832/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_return_types.cpp.o 2025-08-14T20:46:34.1025100Z [3833/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_enum_tag.cpp.o 2025-08-14T20:46:34.1026830Z [3834/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_sparse_functions.cpp.o 2025-08-14T20:46:34.1938170Z [3835/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_special_functions.cpp.o 2025-08-14T20:46:34.2029590Z [3836/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/DeviceAccelerator.cpp.o 2025-08-14T20:46:34.2607970Z [3837/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Device.cpp.o 2025-08-14T20:46:34.2915270Z [3838/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Dtype.cpp.o 2025-08-14T20:46:34.5012720Z [3839/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Layout.cpp.o 2025-08-14T20:46:34.5313560Z [3840/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/QScheme.cpp.o 2025-08-14T20:46:34.5411120Z [3841/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/MemoryFormat.cpp.o 2025-08-14T20:46:34.7159370Z [3842/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/DynamicTypes.cpp.o 2025-08-14T20:46:34.7328800Z [3843/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Exceptions.cpp.o 2025-08-14T20:46:34.7761750Z [3844/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Generator.cpp.o 2025-08-14T20:46:34.8752470Z [3845/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/PyInterpreterHooks.cpp.o 2025-08-14T20:46:34.8804780Z [3846/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/python_dimname.cpp.o 2025-08-14T20:46:34.9415230Z [3847/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/PyInterpreter.cpp.o 2025-08-14T20:46:34.9977870Z [3848/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Module.cpp.o 2025-08-14T20:46:35.0109340Z [3849/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Size.cpp.o 2025-08-14T20:46:35.3234020Z [3850/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Storage.cpp.o 2025-08-14T20:46:35.3690840Z [3851/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/StorageMethods.cpp.o 2025-08-14T20:46:35.5088780Z [3852/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Stream.cpp.o 2025-08-14T20:46:35.5228040Z [3853/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/StorageSharing.cpp.o 2025-08-14T20:46:35.5553890Z [3854/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Event.cpp.o 2025-08-14T20:46:35.6615720Z [3855/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/profiler_python.cpp.o 2025-08-14T20:46:35.6875290Z [3856/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/TypeInfo.cpp.o 2025-08-14T20:46:35.7793680Z [3857/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/api/src/python/init.cpp.o 2025-08-14T20:46:35.7966670Z [3858/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/functions/init.cpp.o 2025-08-14T20:46:35.8126920Z [3859/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_anomaly_mode.cpp.o 2025-08-14T20:46:35.9646840Z [3860/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_cpp_function.cpp.o 2025-08-14T20:46:36.0499730Z [3861/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/init.cpp.o 2025-08-14T20:46:36.1580540Z [3862/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_saved_variable_hooks.cpp.o 2025-08-14T20:46:36.3566920Z [3863/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_engine.cpp.o 2025-08-14T20:46:36.4534160Z [3864/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_legacy_variable.cpp.o 2025-08-14T20:46:36.4739380Z [3865/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_function.cpp.o 2025-08-14T20:46:36.4942500Z [3866/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_hook.cpp.o 2025-08-14T20:46:36.5093170Z [3867/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_variable_indexing.cpp.o 2025-08-14T20:46:36.6366570Z [3868/5156] Building C object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/cpython_defs.c.o 2025-08-14T20:46:36.6432060Z [3869/5156] Building C object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/eval_frame.c.o 2025-08-14T20:46:36.6756010Z [3870/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_torch_functions_manual.cpp.o 2025-08-14T20:46:36.7130410Z [3871/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/cpp_shim.cpp.o 2025-08-14T20:46:36.7417870Z [3872/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_nested_functions_manual.cpp.o 2025-08-14T20:46:36.7522180Z [3873/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/cache_entry.cpp.o 2025-08-14T20:46:36.8603040Z [3874/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_variable.cpp.o 2025-08-14T20:46:37.0250240Z [3875/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/framelocals_mapping.cpp.o 2025-08-14T20:46:37.0291470Z [3876/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/extra_state.cpp.o 2025-08-14T20:46:37.0569050Z [3877/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/python_compiled_autograd.cpp.o 2025-08-14T20:46:37.0654900Z [3878/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/utils.cpp.o 2025-08-14T20:46:37.0698910Z [3879/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/eval_frame_cpp.cpp.o 2025-08-14T20:46:37.1348430Z [3880/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/init.cpp.o 2025-08-14T20:46:37.1868720Z [3881/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/fx/node.cpp.o 2025-08-14T20:46:37.3545820Z [3882/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/export/example_upgraders.cpp.o 2025-08-14T20:46:37.4267530Z [3883/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/export/upgrader.cpp.o 2025-08-14T20:46:37.5477450Z [3884/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/guards.cpp.o 2025-08-14T20:46:37.5581080Z [3885/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/inductor/static_cuda_launcher.cpp.o 2025-08-14T20:46:37.5602110Z [3886/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/export/pybind.cpp.o 2025-08-14T20:46:37.5789730Z [3887/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/inductor/aoti_package/pybind.cpp.o 2025-08-14T20:46:37.6842280Z [3888/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/functorch/init.cpp.o 2025-08-14T20:46:37.7299250Z [3889/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/mps/Module.cpp.o 2025-08-14T20:46:37.7460220Z [3890/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/mtia/Module.cpp.o 2025-08-14T20:46:37.7762150Z [3891/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/inductor/aoti_runner/pybind.cpp.o 2025-08-14T20:46:37.9614910Z [3892/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/inductor/resize_storage_bytes.cpp.o 2025-08-14T20:46:38.0888950Z [3893/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/inductor/aoti_eager/kernel_meta_info.cpp.o 2025-08-14T20:46:38.1068770Z [3894/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/inductor/aoti_eager/kernel_holder.cpp.o 2025-08-14T20:46:38.2963630Z [3895/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/deduplicate_initializers.cpp.o 2025-08-14T20:46:38.3173710Z [3896/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/constant_fold.cpp.o 2025-08-14T20:46:38.3826540Z [3897/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/constant_map.cpp.o 2025-08-14T20:46:38.4184820Z [3898/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/cast_all_constant_to_floating.cpp.o 2025-08-14T20:46:38.4534690Z [3899/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/backends/backend_init.cpp.o 2025-08-14T20:46:38.4765740Z [3900/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/eval_peephole.cpp.o 2025-08-14T20:46:38.5191410Z [3901/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx.cpp.o 2025-08-14T20:46:38.5801130Z [3902/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/init.cpp.o 2025-08-14T20:46:38.6657730Z [3903/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/peephole.cpp.o 2025-08-14T20:46:38.7058040Z [3904/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/eliminate_unused_items.cpp.o 2025-08-14T20:46:38.7318940Z [3905/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/list_model_parameters.cpp.o 2025-08-14T20:46:38.8754030Z [3906/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/prepare_division_for_onnx.cpp.o 2025-08-14T20:46:38.8824590Z [3907/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/preprocess_for_onnx.cpp.o 2025-08-14T20:46:38.8880430Z [3908/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/function_substitution.cpp.o 2025-08-14T20:46:38.9006810Z [3909/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/onnx_log.cpp.o 2025-08-14T20:46:38.9212530Z [3910/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/helper.cpp.o 2025-08-14T20:46:38.9830170Z [3911/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/scalar_type_analysis.cpp.o 2025-08-14T20:46:39.0321560Z [3912/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/fixup_onnx_controlflow.cpp.o 2025-08-14T20:46:39.2209030Z [3913/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/remove_inplace_ops_for_onnx.cpp.o 2025-08-14T20:46:39.2331740Z [3914/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/unpack_quantized_weights.cpp.o 2025-08-14T20:46:39.3393420Z [3915/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/naming.cpp.o 2025-08-14T20:46:39.3776920Z [3916/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/pattern_conversion/autograd_function_process.cpp.o 2025-08-14T20:46:39.3852970Z [3917/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/function_extraction.cpp.o 2025-08-14T20:46:39.3887450Z [3918/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/pattern_conversion/common.cpp.o 2025-08-14T20:46:39.5053270Z [3919/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/pybind_utils.cpp.o 2025-08-14T20:46:39.6220830Z [3920/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/pattern_conversion/pattern_encapsulation.cpp.o 2025-08-14T20:46:39.6611470Z [3921/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/shape_type_inference.cpp.o 2025-08-14T20:46:39.7984590Z [3922/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_custom_class.cpp.o 2025-08-14T20:46:39.8062780Z [3923/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/pattern_conversion/pattern_conversion.cpp.o 2025-08-14T20:46:39.8270790Z [3924/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_dict.cpp.o 2025-08-14T20:46:39.8656150Z [3925/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_list.cpp.o 2025-08-14T20:46:39.9595930Z [3926/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_arg_flatten.cpp.o 2025-08-14T20:46:40.0600430Z [3927/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/frontend/tree_views.cpp.o 2025-08-14T20:46:40.2407000Z [3928/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/frontend/concrete_module_type.cpp.o 2025-08-14T20:46:40.2534010Z [3929/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_tree_views.cpp.o 2025-08-14T20:46:40.2989900Z [3930/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_interpreter.cpp.o 2025-08-14T20:46:40.3247660Z [3931/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_sugared_value.cpp.o 2025-08-14T20:46:40.3627170Z [3932/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_ir.cpp.o 2025-08-14T20:46:40.3896150Z [3933/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_tracer.cpp.o 2025-08-14T20:46:40.4678700Z [3934/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/runtime/static/init.cpp.o 2025-08-14T20:46:40.4898510Z [3935/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/script_init.cpp.o 2025-08-14T20:46:40.6255900Z [3936/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/monitor/python_init.cpp.o 2025-08-14T20:46:40.6547350Z [3937/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/multiprocessing/init.cpp.o 2025-08-14T20:46:40.8143990Z [3938/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/profiler/python/combined_traceback.cpp.o 2025-08-14T20:46:40.8596590Z [3939/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/profiler/python/init.cpp.o 2025-08-14T20:46:40.9947030Z [3940/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/tensorexpr/tensorexpr_init.cpp.o 2025-08-14T20:46:41.1057710Z [3941/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/tensor/python_tensor.cpp.o 2025-08-14T20:46:41.1337980Z [3942/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/serialization.cpp.o 2025-08-14T20:46:41.1444620Z [3943/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/device_lazy_init.cpp.o 2025-08-14T20:46:41.1762970Z [3944/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/invalid_arguments.cpp.o 2025-08-14T20:46:41.2035650Z [3945/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/onnx/init.cpp.o 2025-08-14T20:46:41.2618410Z [3946/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/object_ptr.cpp.o 2025-08-14T20:46:41.3273990Z [3947/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/init.cpp.o 2025-08-14T20:46:41.3839500Z [3948/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/throughput_benchmark.cpp.o 2025-08-14T20:46:41.4734760Z [3949/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils.cpp.o 2025-08-14T20:46:41.4837200Z [3950/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/pyobject_preservation.cpp.o 2025-08-14T20:46:41.6045460Z [3951/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/python_symnode.cpp.o 2025-08-14T20:46:41.6549450Z [3952/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/pybind.cpp.o 2025-08-14T20:46:41.7786990Z [3953/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/structseq.cpp.o 2025-08-14T20:46:41.7854010Z [3954/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_dtypes.cpp.o 2025-08-14T20:46:41.8444250Z [3955/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/nested.cpp.o 2025-08-14T20:46:41.9150090Z [3956/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_layouts.cpp.o 2025-08-14T20:46:41.9344480Z [3957/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_memoryformats.cpp.o 2025-08-14T20:46:42.0402970Z [3958/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/python_arg_parser.cpp.o 2025-08-14T20:46:42.0619120Z [3959/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/python_dispatch.cpp.o 2025-08-14T20:46:42.1538490Z [3960/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_qschemes.cpp.o 2025-08-14T20:46:42.2739160Z [3961/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_types.cpp.o 2025-08-14T20:46:42.2954630Z [3962/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/verbose.cpp.o 2025-08-14T20:46:42.3174000Z [3963/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_apply.cpp.o 2025-08-14T20:46:42.3225450Z [3964/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/disable_torch_function.cpp.o 2025-08-14T20:46:42.5070830Z [3965/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_list.cpp.o 2025-08-14T20:46:42.5174390Z [3966/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/cpu/Module.cpp.o 2025-08-14T20:46:42.5276390Z [3967/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/instruction_counter/Module.cpp.o 2025-08-14T20:46:42.5378200Z [3968/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_new.cpp.o 2025-08-14T20:46:42.5983030Z [3969/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_numpy.cpp.o 2025-08-14T20:46:42.6549700Z [3970/5156] Building C object functorch/CMakeFiles/functorch.dir/csrc/dim/dim_opcode.c.o 2025-08-14T20:46:42.6594920Z [3971/5156] Building CXX object caffe2/torch/lib/libshm/CMakeFiles/torch_shm_manager.dir/manager.cpp.o 2025-08-14T20:46:42.6841800Z [3972/5156] Building CXX object functorch/CMakeFiles/functorch.dir/csrc/dim/dim.cpp.o 2025-08-14T20:46:42.6872900Z [3973/5156] Building CXX object caffe2/torch/lib/libshm/CMakeFiles/shm.dir/core.cpp.o 2025-08-14T20:46:42.7595850Z [3974/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/nativert/python/Bindings.cpp.o 2025-08-14T20:46:42.8951880Z [3975/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/lazy/python/python_util.cpp.o 2025-08-14T20:46:42.9892300Z [3976/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/AffineQuantizer.cpp.o 2025-08-14T20:46:42.9987090Z [3977/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/AffineQuantizerBase.cpp.o 2025-08-14T20:46:43.1108980Z [3978/5156] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/lazy/python/init.cpp.o 2025-08-14T20:46:43.1295830Z [3979/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorUtils.cpp.o 2025-08-14T20:46:43.2346220Z [3980/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorUnaryOps.cpp.o 2025-08-14T20:46:43.3126960Z [3981/5156] Building CXX object functorch/CMakeFiles/functorch.dir/csrc/init_dim_only.cpp.o 2025-08-14T20:46:43.4256710Z [3982/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorTransformerFunctions.cpp.o 2025-08-14T20:46:43.4408310Z [3983/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/Copy.cpp.o 2025-08-14T20:46:43.4408980Z [3984/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/ACLUtils.cpp.o 2025-08-14T20:46:43.6386950Z [3985/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/QTensor.cpp.o 2025-08-14T20:46:43.6552490Z [3986/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/TensorFactories.cpp.o 2025-08-14T20:46:43.6850480Z [3987/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/FakeQuantPerChannelAffine.cpp.o 2025-08-14T20:46:43.7066220Z [3988/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/FakeQuantPerTensorAffine.cpp.o 2025-08-14T20:46:43.7469470Z [3989/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/TensorAdvancedIndexing.cpp.o 2025-08-14T20:46:43.8313270Z [3990/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/AveragePool3d.cpp.o 2025-08-14T20:46:43.8471960Z [3991/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/ChannelShuffle.cpp.o 2025-08-14T20:46:43.8932110Z [3992/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/TensorCompare.cpp.o 2025-08-14T20:46:43.9572020Z [3993/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/AdaptiveAveragePooling.cpp.o 2025-08-14T20:46:43.9923670Z [3994/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/AveragePool2d.cpp.o 2025-08-14T20:46:44.0168170Z [3995/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/RuyUtils.cpp.o 2025-08-14T20:46:44.1433860Z [3996/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/Normalization.cpp.o 2025-08-14T20:46:44.1449160Z [3997/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/BinaryOps.cpp.o 2025-08-14T20:46:44.1670810Z [3998/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/IntReprQuant.cpp.o 2025-08-14T20:46:44.2241610Z [3999/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/LinearUnpackImpl.cpp.o 2025-08-14T20:46:44.2292270Z [4000/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/ReduceOps.cpp.o 2025-08-14T20:46:44.2459820Z [4001/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/MakePerTensorQuantizedTensor.cpp.o 2025-08-14T20:46:44.2754790Z [4002/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/Pooling.cpp.o 2025-08-14T20:46:44.4431260Z [4003/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/Sorting.cpp.o 2025-08-14T20:46:44.4754600Z [4004/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/TensorOperators.cpp.o 2025-08-14T20:46:44.4849280Z [4005/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/TensorShape.cpp.o 2025-08-14T20:46:44.5738150Z [4006/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/UpSampleNearest3d.cpp.o 2025-08-14T20:46:44.5946110Z [4007/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/UpSampleNearest2d.cpp.o 2025-08-14T20:46:44.6125170Z [4008/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/UpSampleBilinear2d.cpp.o 2025-08-14T20:46:44.6722960Z [4009/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/fbgemm_utils.cpp.o 2025-08-14T20:46:44.7468350Z [4010/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/init_qnnpack.cpp.o 2025-08-14T20:46:44.7928300Z [4011/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qconv.cpp.o 2025-08-14T20:46:44.8892550Z [4012/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qclamp.cpp.o 2025-08-14T20:46:44.9217510Z [4013/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/fused_obs_fake_quant.cpp.o 2025-08-14T20:46:44.9681270Z [4014/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qelu.cpp.o 2025-08-14T20:46:44.9979110Z [4015/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/XnnpackUtils.cpp.o 2025-08-14T20:46:45.0001120Z [4016/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qconv_dynamic.cpp.o 2025-08-14T20:46:45.1729610Z [4017/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qconv_prepack.cpp.o 2025-08-14T20:46:45.2108800Z [4018/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qembeddingbag.cpp.o 2025-08-14T20:46:45.2258690Z [4019/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qlinear.cpp.o 2025-08-14T20:46:45.2591190Z [4020/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qconv_unpack_impl.cpp.o 2025-08-14T20:46:45.3136350Z [4021/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qdropout.cpp.o 2025-08-14T20:46:45.3475610Z [4022/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qgelu.cpp.o 2025-08-14T20:46:45.4209320Z [4023/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qhardsigmoid.cpp.o 2025-08-14T20:46:45.4309590Z [4024/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qembeddingbag_prepack.cpp.o 2025-08-14T20:46:45.5311870Z [4025/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qembeddingbag_unpack.cpp.o 2025-08-14T20:46:45.5546960Z [4026/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qhardswish.cpp.o 2025-08-14T20:46:45.6502650Z [4027/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qlinear_dynamic.cpp.o 2025-08-14T20:46:45.7029040Z [4028/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qlinear_prepack.cpp.o 2025-08-14T20:46:45.7386730Z [4029/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qnormalization.cpp.o 2025-08-14T20:46:45.7568860Z [4030/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qsigmoid.cpp.o 2025-08-14T20:46:45.7641710Z [4031/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qmul.cpp.o 2025-08-14T20:46:45.8774040Z [4032/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qrelu.cpp.o 2025-08-14T20:46:45.9658210Z [4033/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkl/MklAllocationHelper.cpp.o 2025-08-14T20:46:45.9801190Z [4034/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qmatmul.cpp.o 2025-08-14T20:46:46.0018130Z [4035/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qtanh.cpp.o 2025-08-14T20:46:46.0300000Z [4036/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qthreshold.cpp.o 2025-08-14T20:46:46.1116330Z [4037/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/library.cpp.o 2025-08-14T20:46:46.1193550Z [4038/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkl/LinearAlgebra.cpp.o 2025-08-14T20:46:46.2427120Z [4039/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qsoftmax.cpp.o 2025-08-14T20:46:46.2660470Z [4040/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkl/SparseBlasImpl.cpp.o 2025-08-14T20:46:46.3878850Z [4041/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkl/SparseCsrLinearAlgebra.cpp.o 2025-08-14T20:46:46.4030740Z [4042/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/BinaryOps.cpp.o 2025-08-14T20:46:46.4120760Z [4043/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Copy.cpp.o 2025-08-14T20:46:46.4212070Z [4044/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/IDeepRegistration.cpp.o 2025-08-14T20:46:46.4242240Z [4045/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Conv.cpp.o 2025-08-14T20:46:46.4766580Z [4046/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkl/SpectralOps.cpp.o 2025-08-14T20:46:46.5324250Z [4047/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/qconv_unpack.cpp.o 2025-08-14T20:46:46.5610710Z [4048/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/qlinear_unpack.cpp.o 2025-08-14T20:46:46.5833460Z [4049/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Gelu.cpp.o 2025-08-14T20:46:46.8157270Z [4050/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Normalization.cpp.o 2025-08-14T20:46:46.8314680Z [4051/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/ConvPrepack.cpp.o 2025-08-14T20:46:46.8328490Z [4052/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Linear.cpp.o 2025-08-14T20:46:46.8358820Z [4053/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/MkldnnTensorMath.cpp.o 2025-08-14T20:46:46.8569570Z [4054/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/MKLDNNCommon.cpp.o 2025-08-14T20:46:46.8593940Z [4055/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/MKLDNNConversions.cpp.o 2025-08-14T20:46:46.9169620Z [4056/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Matmul.cpp.o 2025-08-14T20:46:47.0949210Z [4057/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Pooling.cpp.o 2025-08-14T20:46:47.1095980Z [4058/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/RegisterMkldnnOpContextClass.cpp.o 2025-08-14T20:46:47.1620370Z [4059/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/OpContext.cpp.o 2025-08-14T20:46:47.1937450Z [4060/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/TensorShape.cpp.o 2025-08-14T20:46:47.2015370Z [4061/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/SoftMax.cpp.o 2025-08-14T20:46:47.2119220Z [4062/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Relu.cpp.o 2025-08-14T20:46:47.2300620Z [4063/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/TensorFactories.cpp.o 2025-08-14T20:46:47.3317940Z [4064/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Prelu.cpp.o 2025-08-14T20:46:47.4549040Z [4065/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/UnaryOps.cpp.o 2025-08-14T20:46:47.5207870Z [4066/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Utils.cpp.o 2025-08-14T20:46:47.5305240Z [4067/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/transformers/attention.cpp.o 2025-08-14T20:46:47.5723790Z [4068/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/RNN.cpp.o 2025-08-14T20:46:47.6217940Z [4069/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/upgrader_mobile.cpp.o 2025-08-14T20:46:47.6461570Z [4070/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Histogram.cpp.o 2025-08-14T20:46:47.6549230Z [4071/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/GridSampler.cpp.o 2025-08-14T20:46:47.8179080Z [4072/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Im2Col.cpp.o 2025-08-14T20:46:47.8850380Z [4073/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Lerp.cpp.o 2025-08-14T20:46:47.8874680Z [4074/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/IndexingUtils.cpp.o 2025-08-14T20:46:47.9050260Z [4075/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Itertools.cpp.o 2025-08-14T20:46:47.9548430Z [4076/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Integration.cpp.o 2025-08-14T20:46:47.9601250Z [4077/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LegacyBatching.cpp.o 2025-08-14T20:46:48.1261520Z [4078/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Linear.cpp.o 2025-08-14T20:46:48.2433620Z [4079/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LossMultiLabelMargin.cpp.o 2025-08-14T20:46:48.2464470Z [4080/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LossMultiMargin.cpp.o 2025-08-14T20:46:48.2573660Z [4081/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LossCTC.cpp.o 2025-08-14T20:46:48.2706960Z [4082/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Loss.cpp.o 2025-08-14T20:46:48.2873530Z [4083/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LossNLL.cpp.o 2025-08-14T20:46:48.3142820Z [4084/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LinearAlgebra.cpp.o 2025-08-14T20:46:48.4643800Z [4085/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalTranspose.mm.o 2025-08-14T20:46:48.4782160Z [4086/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LossNLL2d.cpp.o 2025-08-14T20:46:48.5700380Z [4087/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/MaxUnpooling.cpp.o 2025-08-14T20:46:48.5906200Z [4088/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/MaxPooling.cpp.o 2025-08-14T20:46:48.6115390Z [4089/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/MetaTensor.cpp.o 2025-08-14T20:46:48.6926710Z [4090/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Memory.cpp.o 2025-08-14T20:46:48.7486300Z [4091/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/NamedTensor.cpp.o 2025-08-14T20:46:48.7547050Z [4092/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/NaiveConvolutionTranspose2d.cpp.o 2025-08-14T20:46:48.7729850Z [4093/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/NaiveConvolutionTranspose3d.cpp.o 2025-08-14T20:46:48.8019710Z [4094/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/NNPACK.cpp.o 2025-08-14T20:46:48.9116600Z [4095/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/NegateFallback.cpp.o 2025-08-14T20:46:48.9617420Z [4096/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Onehot.cpp.o 2025-08-14T20:46:49.0148510Z [4097/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/PackedSequence.cpp.o 2025-08-14T20:46:49.0825300Z [4098/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/NaiveDilatedConvolution.cpp.o 2025-08-14T20:46:49.0967540Z [4099/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/PadNd.cpp.o 2025-08-14T20:46:49.1120340Z [4100/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Normalization.cpp.o 2025-08-14T20:46:49.1970100Z [4101/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/PointwiseOps.cpp.o 2025-08-14T20:46:49.2155260Z [4102/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/PixelShuffle.cpp.o 2025-08-14T20:46:49.2968130Z [4103/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Pow.cpp.o 2025-08-14T20:46:49.3019890Z [4104/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Pooling.cpp.o 2025-08-14T20:46:49.3407070Z [4105/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/QuantizedLinear.cpp.o 2025-08-14T20:46:49.4938640Z [4106/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/RangeFactories.cpp.o 2025-08-14T20:46:49.5040970Z [4107/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/RNN.cpp.o 2025-08-14T20:46:49.5598490Z [4108/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ReduceAllOps.cpp.o 2025-08-14T20:46:49.5765720Z [4109/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Repeat.cpp.o 2025-08-14T20:46:49.5870210Z [4110/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ReflectionPad.cpp.o 2025-08-14T20:46:49.5903230Z [4111/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ReplicationPadding.cpp.o 2025-08-14T20:46:49.6525230Z [4112/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ReduceOps.cpp.o 2025-08-14T20:46:49.8072840Z [4113/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Scalar.cpp.o 2025-08-14T20:46:49.8144000Z [4114/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Resize.cpp.o 2025-08-14T20:46:49.8228350Z [4115/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/RowwisePrune.cpp.o 2025-08-14T20:46:49.9384090Z [4116/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SoftMax.cpp.o 2025-08-14T20:46:49.9587440Z [4117/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SobolEngineOps.cpp.o 2025-08-14T20:46:49.9750000Z [4118/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Sorting.cpp.o 2025-08-14T20:46:50.0450470Z [4119/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SegmentReduce.cpp.o 2025-08-14T20:46:50.0714910Z [4120/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SobolEngineOpsUtils.cpp.o 2025-08-14T20:46:50.1192950Z [4121/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SpectralOps.cpp.o 2025-08-14T20:46:50.2235100Z [4122/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SummaryOps.cpp.o 2025-08-14T20:46:50.3144890Z [4123/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SparseTensorUtils.cpp.o 2025-08-14T20:46:50.4069180Z [4124/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorIteratorReduce.cpp.o 2025-08-14T20:46:50.4569580Z [4125/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorCompare.cpp.o 2025-08-14T20:46:50.4729680Z [4126/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorFactories.cpp.o 2025-08-14T20:46:50.4924990Z [4127/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorProperties.cpp.o 2025-08-14T20:46:50.6116570Z [4128/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorTransformations.cpp.o 2025-08-14T20:46:50.6304060Z [4129/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TestOps.cpp.o 2025-08-14T20:46:50.6500130Z [4130/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorShape.cpp.o 2025-08-14T20:46:50.7215500Z [4131/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorAdvancedIndexing.cpp.o 2025-08-14T20:46:50.7552490Z [4132/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorConversions.cpp.o 2025-08-14T20:46:50.7654980Z [4133/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TriangularOps.cpp.o 2025-08-14T20:46:50.7748800Z [4134/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Unfold2d.cpp.o 2025-08-14T20:46:50.8302050Z [4135/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TypeProperties.cpp.o 2025-08-14T20:46:50.8453200Z [4136/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Unfold3d.cpp.o 2025-08-14T20:46:50.8528040Z [4137/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UnaryOps.cpp.o 2025-08-14T20:46:51.0808930Z [4138/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UnfoldBackward.cpp.o 2025-08-14T20:46:51.0908810Z [4139/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSample.cpp.o 2025-08-14T20:46:51.0954770Z [4140/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Unique.cpp.o 2025-08-14T20:46:51.1735170Z [4141/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleLinear1d.cpp.o 2025-08-14T20:46:51.1840800Z [4142/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleBilinear2d.cpp.o 2025-08-14T20:46:51.2067160Z [4143/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleBicubic2d.cpp.o 2025-08-14T20:46:51.2210620Z [4144/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleNearest2d.cpp.o 2025-08-14T20:46:51.2418160Z [4145/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleNearest1d.cpp.o 2025-08-14T20:46:51.3210670Z [4146/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/verbose_wrapper.cpp.o 2025-08-14T20:46:51.4624070Z [4147/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/WeightNorm.cpp.o 2025-08-14T20:46:51.4719270Z [4148/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleNearest3d.cpp.o 2025-08-14T20:46:51.4821700Z [4149/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/VariableMethodStubs.cpp.o 2025-08-14T20:46:51.4884080Z [4150/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleTrilinear3d.cpp.o 2025-08-14T20:46:51.5056740Z [4151/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/group_norm.cpp.o 2025-08-14T20:46:51.5306270Z [4152/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/layer_norm.cpp.o 2025-08-14T20:46:51.5413410Z [4153/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/prim_native_functions.cpp.o 2025-08-14T20:46:51.7355880Z [4154/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/library.cpp.o 2025-08-14T20:46:51.8247300Z [4155/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/qlinear.cpp.o 2025-08-14T20:46:51.8319330Z [4156/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/fbgemm_utils.cpp.o 2025-08-14T20:46:51.8571350Z [4157/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/ParamUtils.cpp.o 2025-08-14T20:46:51.9094390Z [4158/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SoftMax.cpp.o 2025-08-14T20:46:51.9216650Z [4159/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/qlinear_prepack.cpp.o 2025-08-14T20:46:51.9439860Z [4160/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/qlinear_dynamic.cpp.o 2025-08-14T20:46:52.1691730Z [4161/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/qlinear_deserialize.cpp.o 2025-08-14T20:46:52.1794650Z [4162/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/FlattenIndicesKernel.cpp.o 2025-08-14T20:46:52.1801110Z [4163/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/qlinear_unpack.cpp.o 2025-08-14T20:46:52.2097480Z [4164/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseBlasImpl.cpp.o 2025-08-14T20:46:52.2325240Z [4165/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseCsrTensor.cpp.o 2025-08-14T20:46:52.3094330Z [4166/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseBlas.cpp.o 2025-08-14T20:46:52.3605230Z [4167/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseBinaryOpIntersectionKernel.cpp.o 2025-08-14T20:46:52.3714560Z [4168/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/qlinear_serialize.cpp.o 2025-08-14T20:46:52.4833300Z [4169/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseMatMul.cpp.o 2025-08-14T20:46:52.5628610Z [4170/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseCsrTensorMath.cpp.o 2025-08-14T20:46:52.6418860Z [4171/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseFactories.cpp.o 2025-08-14T20:46:52.6456580Z [4172/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseUnaryOps.cpp.o 2025-08-14T20:46:52.6672710Z [4173/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseTensorMath.cpp.o 2025-08-14T20:46:52.6743700Z [4174/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseTensor.cpp.o 2025-08-14T20:46:52.8062410Z [4175/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/ValidateCompressedIndicesKernel.cpp.o 2025-08-14T20:46:52.9480170Z [4176/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorMatmul.cpp.o 2025-08-14T20:46:53.0116020Z [4177/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorBackward.cpp.o 2025-08-14T20:46:53.0273630Z [4178/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorAliases.cpp.o 2025-08-14T20:46:53.1664670Z [4179/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/IPUHooksInterface.cpp.o 2025-08-14T20:46:53.1764880Z [4180/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/type_parser.cpp.o 2025-08-14T20:46:53.1785600Z [4181/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/HPUHooksInterface.cpp.o 2025-08-14T20:46:53.2460390Z [4182/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorBinaryOps.cpp.o 2025-08-14T20:46:53.2688990Z [4183/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/MAIAHooksInterface.cpp.o 2025-08-14T20:46:53.2988030Z [4184/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorFactories.cpp.o 2025-08-14T20:46:53.3976770Z [4185/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/MPSHooksInterface.cpp.o 2025-08-14T20:46:53.4176440Z [4186/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorMath.cpp.o 2025-08-14T20:46:53.4358860Z [4187/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/MTIAHooksInterface.cpp.o 2025-08-14T20:46:53.4371360Z [4188/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/MetaGuardImpl.cpp.o 2025-08-14T20:46:53.4712690Z [4189/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalUpsamplingNearest.mm.o 2025-08-14T20:46:53.5016470Z [4190/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/XPUHooksInterface.cpp.o 2025-08-14T20:46:53.5023680Z [4191/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/PrivateUse1HooksInterface.cpp.o 2025-08-14T20:46:53.7126480Z [4192/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/ADInterpreters.cpp.o 2025-08-14T20:46:54.0721610Z [4193/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesActivation.cpp.o 2025-08-14T20:46:54.1246800Z [4194/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesDynamic.cpp.o 2025-08-14T20:46:54.1469300Z [4195/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesBinaryOps.cpp.o 2025-08-14T20:46:54.1619590Z [4196/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesConvolution.cpp.o 2025-08-14T20:46:54.1823120Z [4197/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesHelper.cpp.o 2025-08-14T20:46:54.2007190Z [4198/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesFactory.cpp.o 2025-08-14T20:46:54.2959190Z [4199/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesDecompositions.cpp.o 2025-08-14T20:46:54.4112710Z [4200/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesLinearAlgebra.cpp.o 2025-08-14T20:46:54.7613630Z [4201/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesLoss.cpp.o 2025-08-14T20:46:54.8052960Z [4202/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesModules.cpp.o 2025-08-14T20:46:54.8668770Z [4203/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesIndexing.cpp.o 2025-08-14T20:46:54.8908670Z [4204/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesNorm.cpp.o 2025-08-14T20:46:54.9028790Z [4205/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesPooling.cpp.o 2025-08-14T20:46:54.9202640Z [4206/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesScatterOps.cpp.o 2025-08-14T20:46:54.9424710Z [4207/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesRandomness.cpp.o 2025-08-14T20:46:54.9619350Z [4208/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesReduceOps.cpp.o 2025-08-14T20:46:55.2188610Z [4209/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchedTensorImpl.cpp.o 2025-08-14T20:46:55.3599520Z [4210/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/FunctionalizeInterpreter.cpp.o 2025-08-14T20:46:55.3802440Z [4211/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesUnaryOps.cpp.o 2025-08-14T20:46:55.3904930Z [4212/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/Interpreter.cpp.o 2025-08-14T20:46:55.4537890Z [4213/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesViews.cpp.o 2025-08-14T20:46:55.4797600Z [4214/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/PlumbingHelper.cpp.o 2025-08-14T20:46:55.4996290Z [4215/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchedFallback.cpp.o 2025-08-14T20:46:55.7165580Z [4216/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/DynamicLayer.cpp.o 2025-08-14T20:46:55.7356060Z [4217/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/ATenGeneral.cpp.o 2025-08-14T20:46:55.7597690Z [4218/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/TensorWrapper.cpp.o 2025-08-14T20:46:55.7982920Z [4219/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/LegacyBatchingRegistrations.cpp.o 2025-08-14T20:46:55.8242350Z [4220/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/VmapInterpreter.cpp.o 2025-08-14T20:46:55.8916820Z [4221/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/record_function.cpp.o 2025-08-14T20:46:56.0013800Z [4222/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/PyTorchOperatorHacks.cpp.o 2025-08-14T20:46:56.0182690Z [4223/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/LegacyVmapTransforms.cpp.o 2025-08-14T20:46:56.0306920Z [4224/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/CachingHostAllocator.cpp.o 2025-08-14T20:46:56.0732940Z [4225/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/BackendSelectFallbackKernel.cpp.o 2025-08-14T20:46:56.0903650Z [4226/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/DeprecatedTypeProperties.cpp.o 2025-08-14T20:46:56.0910920Z [4227/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Dimname.cpp.o 2025-08-14T20:46:56.1127180Z [4228/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/VmapModeRegistrations.cpp.o 2025-08-14T20:46:56.1143240Z [4229/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/DeprecatedTypePropertiesRegistry.cpp.o 2025-08-14T20:46:56.3516820Z [4230/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Generator.cpp.o 2025-08-14T20:46:56.3688630Z [4231/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Formatting.cpp.o 2025-08-14T20:46:56.3855240Z [4232/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/GeneratorForPrivateuseone.cpp.o 2025-08-14T20:46:56.3919240Z [4233/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/NamedTensor.cpp.o 2025-08-14T20:46:56.3934180Z [4234/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Dict.cpp.o 2025-08-14T20:46:56.3949520Z [4235/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/List.cpp.o 2025-08-14T20:46:56.4957840Z [4236/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/NestedIntSymNodeImpl.cpp.o 2025-08-14T20:46:56.5148250Z [4237/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/NamedRegistrations.cpp.o 2025-08-14T20:46:56.5248830Z [4238/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/MetaFallbackKernel.cpp.o 2025-08-14T20:46:56.6505730Z [4239/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Range.cpp.o 2025-08-14T20:46:56.7394500Z [4240/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/VariableHooksInterface.cpp.o 2025-08-14T20:46:56.7409660Z [4241/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Vitals.cpp.o 2025-08-14T20:46:56.7558550Z [4242/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/PythonFallbackKernel.cpp.o 2025-08-14T20:46:56.8361720Z [4243/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/VariableFallbackKernel.cpp.o 2025-08-14T20:46:56.8402700Z [4244/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/PythonOpRegistrationTrampoline.cpp.o 2025-08-14T20:46:56.8442450Z [4245/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/TorchDispatchUtils.cpp.o 2025-08-14T20:46:56.8473250Z [4246/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Tensor.cpp.o 2025-08-14T20:46:56.9299870Z [4247/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/blob.cpp.o 2025-08-14T20:46:56.9552040Z [4248/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/adaption.cpp.o 2025-08-14T20:46:57.0877950Z [4249/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/dispatch/ObservedOperators.cpp.o 2025-08-14T20:46:57.1395390Z [4250/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/boxing/KernelFunction.cpp.o 2025-08-14T20:46:57.1659540Z [4251/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/dispatch/DispatchKeyExtractor.cpp.o 2025-08-14T20:46:57.1804030Z [4252/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/class_type.cpp.o 2025-08-14T20:46:57.2084850Z [4253/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/custom_class.cpp.o 2025-08-14T20:46:57.2141130Z [4254/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/dynamic_type.cpp.o 2025-08-14T20:46:57.2341530Z [4255/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/dispatch/OperatorEntry.cpp.o 2025-08-14T20:46:57.3366210Z [4256/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/dispatch/Dispatcher.cpp.o 2025-08-14T20:46:57.3823190Z [4257/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/interned_strings.cpp.o 2025-08-14T20:46:57.4385980Z [4258/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/register_symbols.cpp.o 2025-08-14T20:46:57.4587960Z [4259/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/operator_name.cpp.o 2025-08-14T20:46:57.5610830Z [4260/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/function_schema.cpp.o 2025-08-14T20:46:57.5989030Z [4261/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/library.cpp.o 2025-08-14T20:46:57.6128040Z [4262/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/ivalue.cpp.o 2025-08-14T20:46:57.6157210Z [4263/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/op_registration/op_registration.cpp.o 2025-08-14T20:46:57.6170190Z [4264/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/op_registration/infer_schema.cpp.o 2025-08-14T20:46:57.6210610Z [4265/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/tensor_type.cpp.o 2025-08-14T20:46:57.7355800Z [4266/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/error_report.cpp.o 2025-08-14T20:46:57.7721250Z [4267/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/type_factory.cpp.o 2025-08-14T20:46:57.8324270Z [4268/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/type.cpp.o 2025-08-14T20:46:57.8512810Z [4269/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/lexer.cpp.o 2025-08-14T20:46:57.8806650Z [4270/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/strtod.cpp.o 2025-08-14T20:46:57.9513390Z [4271/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/union_type.cpp.o 2025-08-14T20:46:58.0315000Z [4272/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/schema_type_parser.cpp.o 2025-08-14T20:46:58.0631160Z [4273/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/source_range.cpp.o 2025-08-14T20:46:58.0647290Z [4274/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/function_schema_parser.cpp.o 2025-08-14T20:46:58.0989570Z [4275/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AdaptiveAveragePooling.cpp.o 2025-08-14T20:46:58.1381280Z [4276/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Activation.cpp.o 2025-08-14T20:46:58.1695370Z [4277/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AdaptiveAveragePooling3d.cpp.o 2025-08-14T20:46:58.2178770Z [4278/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AdaptiveMaxPooling2d.cpp.o 2025-08-14T20:46:58.2832470Z [4279/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AdaptiveMaxPooling3d.cpp.o 2025-08-14T20:46:58.3572490Z [4280/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AmpKernels.cpp.o 2025-08-14T20:46:58.3723560Z [4281/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AffineGridGenerator.cpp.o 2025-08-14T20:46:58.4772250Z [4282/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AutogradComposite.cpp.o 2025-08-14T20:46:58.5243520Z [4283/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AveragePool3d.cpp.o 2025-08-14T20:46:58.5409360Z [4284/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AveragePool2d.cpp.o 2025-08-14T20:46:58.5648670Z [4285/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/BinaryOps.cpp.o 2025-08-14T20:46:58.5774600Z [4286/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/BatchLinearAlgebraKernel.cpp.o 2025-08-14T20:46:58.5794850Z [4287/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/BatchLinearAlgebra.cpp.o 2025-08-14T20:46:58.7072200Z [4288/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/BlasKernel.cpp.o 2025-08-14T20:46:58.7458190Z [4289/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Blas.cpp.o 2025-08-14T20:46:58.8256470Z [4290/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Bucketization.cpp.o 2025-08-14T20:46:58.9120580Z [4291/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ComparisonUtils.cpp.o 2025-08-14T20:46:58.9241440Z [4292/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/CPUBlas.cpp.o 2025-08-14T20:46:58.9270030Z [4293/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/CPUFallback.cpp.o 2025-08-14T20:46:58.9523790Z [4294/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ChanelShuffle.cpp.o 2025-08-14T20:46:58.9924790Z [4295/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Constraints.cpp.o 2025-08-14T20:46:59.0081700Z [4296/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Col2Im.cpp.o 2025-08-14T20:46:59.0677860Z [4297/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Convolution.cpp.o 2025-08-14T20:46:59.1478330Z [4298/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ConvolutionMM3d.cpp.o 2025-08-14T20:46:59.2109520Z [4299/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ConvolutionTBC.cpp.o 2025-08-14T20:46:59.2513970Z [4300/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/DispatchStub.cpp.o 2025-08-14T20:46:59.2818160Z [4301/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ConvolutionMM2d.cpp.o 2025-08-14T20:46:59.3535850Z [4302/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/DilatedMaxPool2d.cpp.o 2025-08-14T20:46:59.3687090Z [4303/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Correlation.cpp.o 2025-08-14T20:46:59.3813140Z [4304/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Copy.cpp.o 2025-08-14T20:46:59.4168670Z [4305/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Cross.cpp.o 2025-08-14T20:46:59.4807810Z [4306/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/DilatedMaxPool3d.cpp.o 2025-08-14T20:46:59.5441490Z [4307/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Distance.cpp.o 2025-08-14T20:46:59.6637040Z [4308/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Dropout.cpp.o 2025-08-14T20:46:59.6981840Z [4309/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Fill.cpp.o 2025-08-14T20:46:59.6999070Z [4310/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Distributions.cpp.o 2025-08-14T20:46:59.7013010Z [4311/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Embedding.cpp.o 2025-08-14T20:46:59.7233220Z [4312/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ForeachOpsKernels.cpp.o 2025-08-14T20:46:59.7420280Z [4313/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/FractionalMaxPool2d.cpp.o 2025-08-14T20:46:59.7593630Z [4314/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/EmbeddingBag.cpp.o 2025-08-14T20:46:59.9539410Z [4315/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/FractionalMaxPool3d.cpp.o 2025-08-14T20:46:59.9996470Z [4316/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Dispatch.cpp.o 2025-08-14T20:47:00.0210820Z [4317/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/FunctionOfAMatrixUtils.cpp.o 2025-08-14T20:47:00.0562310Z [4318/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/FusedAdagrad.cpp.o 2025-08-14T20:47:00.0641560Z [4319/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/FusedAdam.cpp.o 2025-08-14T20:47:00.1055480Z [4320/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/FusedSGD.cpp.o 2025-08-14T20:47:00.1674610Z [4321/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/GatedLinearUnit.cpp.o 2025-08-14T20:47:00.3162280Z [4322/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/DeviceAccelerator.cpp.o 2025-08-14T20:47:00.3285270Z [4323/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/VmapModeRegistrations.cpp.o 2025-08-14T20:47:00.3646350Z [4324/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ExpandUtils.cpp.o 2025-08-14T20:47:00.4146520Z [4325/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ThreadLocalState.cpp.o 2025-08-14T20:47:00.4571810Z [4326/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/CPUGeneratorImpl.cpp.o 2025-08-14T20:47:00.5953420Z [4327/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Context.cpp.o 2025-08-14T20:47:00.6193850Z [4328/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Utils.cpp.o 2025-08-14T20:47:00.6460920Z [4329/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Version.cpp.o 2025-08-14T20:47:00.6708480Z [4330/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ConjugateFallback.cpp.o 2025-08-14T20:47:00.6983750Z [4331/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/FuncTorchTLS.cpp.o 2025-08-14T20:47:00.7255100Z [4332/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/DLConvertor.cpp.o 2025-08-14T20:47:00.7354180Z [4333/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/LegacyBatchedTensorImpl.cpp.o 2025-08-14T20:47:00.7587270Z [4334/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/CachedTensorUtils.cpp.o 2025-08-14T20:47:00.8702960Z [4335/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/EmptyTensor.cpp.o 2025-08-14T20:47:01.0343390Z [4336/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/LegacyBatchedFallback.cpp.o 2025-08-14T20:47:01.0517230Z [4337/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/FunctionalStorageImpl.cpp.o 2025-08-14T20:47:01.0793230Z [4338/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/TensorNames.cpp.o 2025-08-14T20:47:01.1064110Z [4339/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/FunctionalTensorWrapper.cpp.o 2025-08-14T20:47:01.1156410Z [4340/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/DynamicLibrary.cpp.o 2025-08-14T20:47:01.2396020Z [4341/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/FunctionalizeFallbackKernel.cpp.o 2025-08-14T20:47:01.2511860Z [4342/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/TensorMeta.cpp.o 2025-08-14T20:47:01.2800590Z [4343/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ThreadLocalPythonObjects.cpp.o 2025-08-14T20:47:01.3481000Z [4344/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/TensorUtils.cpp.o 2025-08-14T20:47:01.3495570Z [4345/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/LegacyVmapMode.cpp.o 2025-08-14T20:47:01.3750470Z [4346/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/FunctionalInverses.cpp.o 2025-08-14T20:47:01.3783300Z [4347/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/AccumulateType.cpp.o 2025-08-14T20:47:01.4926250Z [4348/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/MapAllocator.cpp.o 2025-08-14T20:47:01.5305870Z [4349/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/MemoryOverlap.cpp.o 2025-08-14T20:47:01.6562830Z [4350/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/NamedTensorUtils.cpp.o 2025-08-14T20:47:01.6595740Z [4351/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/TensorGeometry.cpp.o 2025-08-14T20:47:01.6713790Z [4352/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/TensorIterator.cpp.o 2025-08-14T20:47:01.7435010Z [4353/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/TensorIndexing.cpp.o 2025-08-14T20:47:01.7575810Z [4354/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/SequenceNumber.cpp.o 2025-08-14T20:47:01.9240600Z [4355/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/LegacyVmapTransforms.cpp.o 2025-08-14T20:47:01.9382110Z [4356/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/SavedTensorHooks.cpp.o 2025-08-14T20:47:01.9613920Z [4357/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/StorageUtils.cpp.o 2025-08-14T20:47:01.9971790Z [4358/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/LegacyBatchingRegistrations.cpp.o 2025-08-14T20:47:02.0410980Z [4359/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ParallelNative.cpp.o 2025-08-14T20:47:02.0487470Z [4360/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/PythonTorchFunctionTLS.cpp.o 2025-08-14T20:47:02.0557480Z [4361/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ScalarOps.cpp.o 2025-08-14T20:47:02.1024920Z [4362/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/SparseTensorImpl.cpp.o 2025-08-14T20:47:02.1881790Z [4363/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/cpu/FlushDenormal.cpp.o 2025-08-14T20:47:02.2040720Z [4364/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ParallelThreadPoolNative.cpp.o 2025-08-14T20:47:02.2134380Z [4365/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/cpu/Utils.cpp.o 2025-08-14T20:47:02.2561720Z [4366/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ParallelOpenMP.cpp.o 2025-08-14T20:47:02.3057840Z [4367/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ParallelCommon.cpp.o 2025-08-14T20:47:02.3513250Z [4368/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/SparseCsrTensorImpl.cpp.o 2025-08-14T20:47:02.3747380Z [4369/5156] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/avgpool-config.c.o 2025-08-14T20:47:02.3750960Z [4370/5156] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/argmaxpool-config.c.o 2025-08-14T20:47:02.3965220Z [4371/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/CPUGuardImpl.cpp.o 2025-08-14T20:47:02.4586020Z [4372/5156] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/binary-elementwise-config.c.o 2025-08-14T20:47:02.4697070Z [4373/5156] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/conv-hwc2chw-config.c.o 2025-08-14T20:47:02.4725650Z [4374/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/HIPHooksInterface.cpp.o 2025-08-14T20:47:02.4934980Z [4375/5156] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/cmul-config.c.o 2025-08-14T20:47:02.5227500Z [4376/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/CUDAHooksInterface.cpp.o 2025-08-14T20:47:02.5257750Z [4377/5156] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/dwconv2d-chw-config.c.o 2025-08-14T20:47:02.5649040Z [4378/5156] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/dwconv-config.c.o 2025-08-14T20:47:02.5651690Z [4379/5156] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/experiments-config.c.o 2025-08-14T20:47:02.5932610Z [4380/5156] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/ibilinear-chw-config.c.o 2025-08-14T20:47:02.6194060Z [4381/5156] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/gemm-config.c.o 2025-08-14T20:47:02.6218440Z [4382/5156] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/lut32norm-config.c.o 2025-08-14T20:47:02.6502430Z [4383/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/NestedTensorImpl.cpp.o 2025-08-14T20:47:02.6508750Z [4384/5156] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/ibilinear-config.c.o 2025-08-14T20:47:02.6740900Z [4385/5156] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/maxpool-config.c.o 2025-08-14T20:47:02.6910820Z [4386/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ZeroTensorFallback.cpp.o 2025-08-14T20:47:02.6915160Z [4387/5156] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/pack-lh-config.c.o 2025-08-14T20:47:02.6920750Z [4388/5156] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/pavgpool-config.c.o 2025-08-14T20:47:02.7210970Z [4389/5156] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/raddstoreexpminusmax-config.c.o 2025-08-14T20:47:02.7390940Z [4390/5156] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/reduce-config.c.o 2025-08-14T20:47:02.7640050Z [4391/5156] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/transpose-config.c.o 2025-08-14T20:47:02.7702160Z [4392/5156] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/rmax-config.c.o 2025-08-14T20:47:02.7854050Z [4393/5156] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/spmm-config.c.o 2025-08-14T20:47:02.8063690Z [4394/5156] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/xx-fill-config.c.o 2025-08-14T20:47:02.8191510Z [4395/5156] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/unary-elementwise-config.c.o 2025-08-14T20:47:02.8212060Z [4396/5156] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/vmulcaddc-config.c.o 2025-08-14T20:47:02.8216380Z [4397/5156] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/unpool-config.c.o 2025-08-14T20:47:02.8434010Z [4398/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/autocast_mode.cpp.o 2025-08-14T20:47:02.8450170Z [4399/5156] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/xx-pad-config.c.o 2025-08-14T20:47:02.8464120Z [4400/5156] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/x8-lut-config.c.o 2025-08-14T20:47:02.8800910Z [4401/5156] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/zip-config.c.o 2025-08-14T20:47:02.8847610Z [4402/5156] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/init.c.o 2025-08-14T20:47:02.9105050Z [4403/5156] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/build_identifier.c.o 2025-08-14T20:47:02.9294480Z [4404/5156] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/params.c.o 2025-08-14T20:47:02.9718930Z [4405/5156] Building C object caffe2/CMakeFiles/torch_cpu.dir/__/third_party/miniz-3.0.2/miniz.c.o 2025-08-14T20:47:02.9833650Z [4406/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/serialize/crc.cc.o 2025-08-14T20:47:03.0097040Z [4407/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/serialize/read_adapter_interface.cc.o 2025-08-14T20:47:03.1003800Z [4408/5156] Linking CXX static library lib/libXNNPACK.a 2025-08-14T20:47:03.1219990Z [4409/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/utils/threadpool/thread_pool_guard.cpp.o 2025-08-14T20:47:03.1246050Z [4410/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/serialize/file_adapter.cc.o 2025-08-14T20:47:03.1592090Z [4411/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/serialize/istream_adapter.cc.o 2025-08-14T20:47:03.1811700Z [4412/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/utils/string_utils.cc.o 2025-08-14T20:47:03.1918590Z [4413/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/serialize/inline_container.cc.o 2025-08-14T20:47:03.2378120Z [4414/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/utils/threadpool/ThreadPool.cc.o 2025-08-14T20:47:03.3201310Z [4415/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/utils/threadpool/pthreadpool-cpp.cc.o 2025-08-14T20:47:03.3616120Z [4416/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/utils/proto_wrap.cc.o 2025-08-14T20:47:03.4015120Z [4417/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/perfkernels/embedding_lookup_idx.cc.o 2025-08-14T20:47:03.5711820Z [4418/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/ViewFuncs.cpp.o 2025-08-14T20:47:03.8824940Z [4419/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/core/common.cc.o 2025-08-14T20:47:03.9559360Z [4420/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/Functions.cpp.o 2025-08-14T20:47:03.9580070Z [4421/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/TraceType_0.cpp.o 2025-08-14T20:47:03.9957130Z [4422/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/VariableType_1.cpp.o 2025-08-14T20:47:04.0107100Z [4423/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/VariableType_0.cpp.o 2025-08-14T20:47:04.0372750Z [4424/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/VariableType_2.cpp.o 2025-08-14T20:47:04.0772320Z [4425/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/VariableType_3.cpp.o 2025-08-14T20:47:04.1050860Z [4426/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/VariableType_4.cpp.o 2025-08-14T20:47:04.3111940Z [4427/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/TraceType_1.cpp.o 2025-08-14T20:47:04.3310470Z [4428/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/TraceType_2.cpp.o 2025-08-14T20:47:04.4063880Z [4429/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/generated/c_shim_cpu.cpp.o 2025-08-14T20:47:04.4164430Z [4430/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/generated/RegisterAutogradLazy.cpp.o 2025-08-14T20:47:04.4208850Z [4431/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/TraceType_3.cpp.o 2025-08-14T20:47:04.4544030Z [4432/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/generated/c_shim_aten.cpp.o 2025-08-14T20:47:04.5080490Z [4433/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/TraceType_4.cpp.o 2025-08-14T20:47:04.5125340Z [4434/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/ADInplaceOrViewType_1.cpp.o 2025-08-14T20:47:04.5235090Z [4435/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/ADInplaceOrViewType_0.cpp.o 2025-08-14T20:47:04.7797210Z [4436/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/generated/c_shim_mps.cpp.o 2025-08-14T20:47:04.8010390Z [4437/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/autograd_meta.cpp.o 2025-08-14T20:47:04.8073490Z [4438/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/generated/RegisterLazy.cpp.o 2025-08-14T20:47:04.8113430Z [4439/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/autograd.cpp.o 2025-08-14T20:47:04.8650860Z [4440/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/anomaly_mode.cpp.o 2025-08-14T20:47:04.8845220Z [4441/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/cpp_hook.cpp.o 2025-08-14T20:47:04.9088790Z [4442/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/generated/LazyNativeFunctions.cpp.o 2025-08-14T20:47:05.1109510Z [4443/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/autograd_not_implemented_fallback.cpp.o 2025-08-14T20:47:05.1574200Z [4444/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/custom_function.cpp.o 2025-08-14T20:47:05.1603190Z [4445/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/forward_grad.cpp.o 2025-08-14T20:47:05.1819740Z [4446/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/engine.cpp.o 2025-08-14T20:47:05.4202010Z [4447/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/functions/utils.cpp.o 2025-08-14T20:47:05.4680760Z [4448/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/input_metadata.cpp.o 2025-08-14T20:47:05.5182180Z [4449/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/functions/basic_ops.cpp.o 2025-08-14T20:47:05.5441420Z [4450/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/function.cpp.o 2025-08-14T20:47:05.5619150Z [4451/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/functions/tensor.cpp.o 2025-08-14T20:47:05.5740760Z [4452/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/profiler_kineto.cpp.o 2025-08-14T20:47:05.5994570Z [4453/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/functions/accumulate_grad.cpp.o 2025-08-14T20:47:05.6561220Z [4454/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/input_buffer.cpp.o 2025-08-14T20:47:05.7486650Z [4455/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/jit_decomp_interface.cpp.o 2025-08-14T20:47:05.8051220Z [4456/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/utils/warnings.cpp.o 2025-08-14T20:47:05.8606630Z [4457/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/saved_variable.cpp.o 2025-08-14T20:47:05.8638860Z [4458/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/profiler_legacy.cpp.o 2025-08-14T20:47:05.8782420Z [4459/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/record_function_ops.cpp.o 2025-08-14T20:47:05.9913250Z [4460/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/variable_info.cpp.o 2025-08-14T20:47:06.0240110Z [4461/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/dynamo/compiled_autograd.cpp.o 2025-08-14T20:47:06.2114380Z [4462/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_package/model_package_loader.cpp.o 2025-08-14T20:47:06.2208320Z [4463/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_runner/model_container_runner.cpp.o 2025-08-14T20:47:06.2406920Z [4464/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/mkldnn_tensor.cpp.o 2025-08-14T20:47:06.2563710Z [4465/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_runner/model_container_runner_cpu.cpp.o 2025-08-14T20:47:06.2675520Z [4466/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/shim_cpu.cpp.o 2025-08-14T20:47:06.2920190Z [4467/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/oss_proxy_executor.cpp.o 2025-08-14T20:47:06.3527710Z [4468/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/variable.cpp.o 2025-08-14T20:47:06.4232510Z [4469/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/tensor_converter.cpp.o 2025-08-14T20:47:06.4970820Z [4470/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/shim_common.cpp.o 2025-08-14T20:47:06.6522620Z [4471/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/api/object.cpp.o 2025-08-14T20:47:06.7421060Z [4472/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/backends/backend_detail.cpp.o 2025-08-14T20:47:06.7517720Z [4473/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/backends/backend_debug_info.cpp.o 2025-08-14T20:47:06.7577020Z [4474/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/backends/backend_debug_handler.cpp.o 2025-08-14T20:47:06.7588800Z [4475/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/backends/backend_interface.cpp.o 2025-08-14T20:47:06.7777380Z [4476/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/api/module.cpp.o 2025-08-14T20:47:06.8554040Z [4477/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/api/function_impl.cpp.o 2025-08-14T20:47:06.8844330Z [4478/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/inductor_ops.cpp.o 2025-08-14T20:47:07.0244810Z [4479/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/backends/backend_resolver.cpp.o 2025-08-14T20:47:07.2302830Z [4480/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/builtin_functions.cpp.o 2025-08-14T20:47:07.3551300Z [4481/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/edit_distance.cpp.o 2025-08-14T20:47:07.3788330Z [4482/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/compiler.cpp.o 2025-08-14T20:47:07.3940460Z [4483/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/codegen.cpp.o 2025-08-14T20:47:07.3958990Z [4484/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/canonicalize_modified_loop.cpp.o 2025-08-14T20:47:07.4203900Z [4485/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/kernel_cache.cpp.o 2025-08-14T20:47:07.4346740Z [4486/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/executor.cpp.o 2025-08-14T20:47:07.4580920Z [4487/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/interface.cpp.o 2025-08-14T20:47:07.5067700Z [4488/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/fallback.cpp.o 2025-08-14T20:47:07.6456530Z [4489/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/name_mangler.cpp.o 2025-08-14T20:47:07.7342590Z [4490/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/exit_transforms.cpp.o 2025-08-14T20:47:07.7958570Z [4491/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/convert_to_ssa.cpp.o 2025-08-14T20:47:07.8187570Z [4492/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/inline_loop_condition.cpp.o 2025-08-14T20:47:07.8304560Z [4493/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/ir_emitter.cpp.o 2025-08-14T20:47:07.8408120Z [4494/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/parser.cpp.o 2025-08-14T20:47:07.8418010Z [4495/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/script_type_parser.cpp.o 2025-08-14T20:47:07.8479690Z [4496/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/schema_matching.cpp.o 2025-08-14T20:47:07.9347970Z [4497/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/sugared_value.cpp.o 2025-08-14T20:47:08.0969480Z [4498/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/versioned_symbols.cpp.o 2025-08-14T20:47:08.1113640Z [4499/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/tracer.cpp.o 2025-08-14T20:47:08.2113250Z [4500/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/alias_analysis.cpp.o 2025-08-14T20:47:08.2377690Z [4501/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/attributes.cpp.o 2025-08-14T20:47:08.3163590Z [4502/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/node_hashing.cpp.o 2025-08-14T20:47:08.3588640Z [4503/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/scope.cpp.o 2025-08-14T20:47:08.3817380Z [4504/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/ir.cpp.o 2025-08-14T20:47:08.3860930Z [4505/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/graph_utils.cpp.o 2025-08-14T20:47:08.4009340Z [4506/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/irparser.cpp.o 2025-08-14T20:47:08.5246720Z [4507/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/subgraph_matcher.cpp.o 2025-08-14T20:47:08.5655620Z [4508/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/type_hashing.cpp.o 2025-08-14T20:47:08.5825130Z [4509/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/constants.cpp.o 2025-08-14T20:47:08.6382530Z [4510/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/jit_opt_limit.cpp.o 2025-08-14T20:47:08.6861380Z [4511/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/jit_log.cpp.o 2025-08-14T20:47:08.7972920Z [4512/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/function.cpp.o 2025-08-14T20:47:08.8206090Z [4513/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/import.cpp.o 2025-08-14T20:47:08.8736900Z [4514/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/compatibility/model_compatibility.cpp.o 2025-08-14T20:47:08.9386010Z [4515/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/compatibility/runtime_compatibility.cpp.o 2025-08-14T20:47:09.0567260Z [4516/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/module.cpp.o 2025-08-14T20:47:09.0668990Z [4517/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/observer.cpp.o 2025-08-14T20:47:09.0696660Z [4518/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/nnc/registry.cpp.o 2025-08-14T20:47:09.0850260Z [4519/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/interpreter.cpp.o 2025-08-14T20:47:09.1009050Z [4520/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/nnc/backend.cpp.o 2025-08-14T20:47:09.2917930Z [4521/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/flatbuffer_loader.cpp.o 2025-08-14T20:47:09.3441350Z [4522/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/parse_bytecode.cpp.o 2025-08-14T20:47:09.3651900Z [4523/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/nnc/context.cpp.o 2025-08-14T20:47:09.3755330Z [4524/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/parse_operators.cpp.o 2025-08-14T20:47:09.4386060Z [4525/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/nnc/aot_compiler.cpp.o 2025-08-14T20:47:09.4539510Z [4526/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/prim_ops_registery.cpp.o 2025-08-14T20:47:09.5574830Z [4527/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/quantization.cpp.o 2025-08-14T20:47:09.6031730Z [4528/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/operator_upgraders/utils.cpp.o 2025-08-14T20:47:09.6210940Z [4529/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/operator_upgraders/version_map.cpp.o 2025-08-14T20:47:09.6524880Z [4530/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/promoted_prim_ops.cpp.o 2025-08-14T20:47:09.6823270Z [4531/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/register_ops_common_utils.cpp.o 2025-08-14T20:47:09.7385270Z [4532/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/utils/check_alias_annotation.cpp.o 2025-08-14T20:47:09.7943150Z [4533/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/operator_upgraders/upgraders.cpp.o 2025-08-14T20:47:09.8188640Z [4534/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/operator_upgraders/upgraders_entry.cpp.o 2025-08-14T20:47:09.9212780Z [4535/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/add_if_then_else.cpp.o 2025-08-14T20:47:09.9702230Z [4536/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/annotate_warns.cpp.o 2025-08-14T20:47:10.0481070Z [4537/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/canonicalize.cpp.o 2025-08-14T20:47:10.1171410Z [4538/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/canonicalize_graph_fuser_ops.cpp.o 2025-08-14T20:47:10.1349450Z [4539/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/check_strict_fusion.cpp.o 2025-08-14T20:47:10.3378270Z [4540/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/batch_mm.cpp.o 2025-08-14T20:47:10.3480700Z [4541/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/constant_pooling.cpp.o 2025-08-14T20:47:10.4006820Z [4542/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/concat_opt.cpp.o 2025-08-14T20:47:10.4129440Z [4543/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/bailout_graph.cpp.o 2025-08-14T20:47:10.4334450Z [4544/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/common_subexpression_elimination.cpp.o 2025-08-14T20:47:10.4575870Z [4545/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/clear_profiling.cpp.o 2025-08-14T20:47:10.4739500Z [4546/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/constant_propagation.cpp.o 2025-08-14T20:47:10.5783250Z [4547/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/clear_undefinedness.cpp.o 2025-08-14T20:47:10.7109600Z [4548/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/dead_code_elimination.cpp.o 2025-08-14T20:47:10.7219160Z [4549/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/create_autodiff_subgraphs.cpp.o 2025-08-14T20:47:10.7593820Z [4550/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/create_functional_graphs.cpp.o 2025-08-14T20:47:10.7738750Z [4551/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/decompose_ops.cpp.o 2025-08-14T20:47:10.9013500Z [4552/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/dbr_quantization/remove_redundant_aliases.cpp.o 2025-08-14T20:47:10.9150200Z [4553/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/eliminate_no_ops.cpp.o 2025-08-14T20:47:10.9251000Z [4554/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/device_type_analysis.cpp.o 2025-08-14T20:47:10.9318690Z [4555/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/dtype_analysis.cpp.o 2025-08-14T20:47:11.0560300Z [4556/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/fixup_trace_scope_blocks.cpp.o 2025-08-14T20:47:11.0693480Z [4557/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/erase_number_types.cpp.o 2025-08-14T20:47:11.1596280Z [4558/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/fold_linear_bn.cpp.o 2025-08-14T20:47:11.1630520Z [4559/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/fold_conv_bn.cpp.o 2025-08-14T20:47:11.2629570Z [4560/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_concat_linear.cpp.o 2025-08-14T20:47:11.3706820Z [4561/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_graph_optimizations.cpp.o 2025-08-14T20:47:11.3723050Z [4562/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_conv_add_relu_fusion.cpp.o 2025-08-14T20:47:11.3970070Z [4563/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_conv_folding.cpp.o 2025-08-14T20:47:11.4051580Z [4564/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_linear_transpose.cpp.o 2025-08-14T20:47:11.5679980Z [4565/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/fuse_linear.cpp.o 2025-08-14T20:47:11.5914170Z [4566/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_linear_folding.cpp.o 2025-08-14T20:47:11.6456670Z [4567/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/freeze_module.cpp.o 2025-08-14T20:47:11.6875150Z [4568/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/fuse_relu.cpp.o 2025-08-14T20:47:11.8492230Z [4569/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/graph_rewrite_helper.cpp.o 2025-08-14T20:47:11.8645760Z [4570/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_ops_to_mkldnn.cpp.o 2025-08-14T20:47:11.8891740Z [4571/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/hoist_conv_packed_params.cpp.o 2025-08-14T20:47:11.9436610Z [4572/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/inline_autodiff_subgraphs.cpp.o 2025-08-14T20:47:12.0041130Z [4573/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/inline_fork_wait.cpp.o 2025-08-14T20:47:12.0574800Z [4574/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/graph_fuser.cpp.o 2025-08-14T20:47:12.0636930Z [4575/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/inline_forked_closures.cpp.o 2025-08-14T20:47:12.0962510Z [4576/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/guard_elimination.cpp.o 2025-08-14T20:47:12.1923720Z [4577/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/inliner.cpp.o 2025-08-14T20:47:12.2310970Z [4578/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/inplace_check.cpp.o 2025-08-14T20:47:12.3441240Z [4579/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/integer_value_refinement.cpp.o 2025-08-14T20:47:12.3680690Z [4580/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/lift_closures.cpp.o 2025-08-14T20:47:12.4891760Z [4581/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/loop_unrolling.cpp.o 2025-08-14T20:47:12.5563220Z [4582/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/lower_tuples.cpp.o 2025-08-14T20:47:12.5664830Z [4583/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/lower_grad_of.cpp.o 2025-08-14T20:47:12.5852930Z [4584/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/insert_guards.cpp.o 2025-08-14T20:47:12.6919260Z [4585/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/normalize_ops.cpp.o 2025-08-14T20:47:12.7581780Z [4586/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/liveness.cpp.o 2025-08-14T20:47:12.8248200Z [4587/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/metal_rewrite.cpp.o 2025-08-14T20:47:12.8638540Z [4588/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/pass_manager.cpp.o 2025-08-14T20:47:12.8954290Z [4589/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/peephole.cpp.o 2025-08-14T20:47:12.9495230Z [4590/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/peephole_alias_sensitive.cpp.o 2025-08-14T20:47:13.0537890Z [4591/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/peephole_list_idioms.cpp.o 2025-08-14T20:47:13.0756450Z [4592/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/mkldnn_rewrite.cpp.o 2025-08-14T20:47:13.0820950Z [4593/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/peephole_dict_idioms.cpp.o 2025-08-14T20:47:13.1430760Z [4594/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/peephole_non_tensor.cpp.o 2025-08-14T20:47:13.1742760Z [4595/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/prepack_folding.cpp.o 2025-08-14T20:47:13.2172610Z [4596/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/fusion_passes.cpp.o 2025-08-14T20:47:13.2274810Z [4597/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/dedup_module_uses.cpp.o 2025-08-14T20:47:13.3618820Z [4598/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/quantization_type.cpp.o 2025-08-14T20:47:13.4725230Z [4599/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/insert_observers.cpp.o 2025-08-14T20:47:13.5168950Z [4600/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/helper.cpp.o 2025-08-14T20:47:13.5488720Z [4601/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/remove_exceptions.cpp.o 2025-08-14T20:47:13.5719670Z [4602/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/remove_dropout.cpp.o 2025-08-14T20:47:13.5820140Z [4603/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/refine_tuple_types.cpp.o 2025-08-14T20:47:13.6641750Z [4604/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/insert_quant_dequant.cpp.o 2025-08-14T20:47:13.7207850Z [4605/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/finalize.cpp.o 2025-08-14T20:47:13.8030310Z [4606/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/remove_expands.cpp.o 2025-08-14T20:47:13.8458430Z [4607/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/remove_mutation.cpp.o 2025-08-14T20:47:13.8950670Z [4608/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/remove_redundant_profiles.cpp.o 2025-08-14T20:47:13.9052670Z [4609/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/restore_mutation.cpp.o 2025-08-14T20:47:13.9905460Z [4610/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/replacement_of_old_operators.cpp.o 2025-08-14T20:47:14.0729790Z [4611/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/register_packed_params.cpp.o 2025-08-14T20:47:14.0845890Z [4612/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/requires_grad_analysis.cpp.o 2025-08-14T20:47:14.0861790Z [4613/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/shape_analysis.cpp.o 2025-08-14T20:47:14.2052280Z [4614/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/subgraph_rewrite.cpp.o 2025-08-14T20:47:14.3005610Z [4615/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/symbolic_shape_cache.cpp.o 2025-08-14T20:47:14.3204280Z [4616/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/symbolic_shape_analysis.cpp.o 2025-08-14T20:47:14.3606770Z [4617/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/utils/memory_dag.cpp.o 2025-08-14T20:47:14.4104430Z [4618/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/specialize_autogradzero.cpp.o 2025-08-14T20:47:14.5566020Z [4619/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/update_differentiable_graph_requires_grad.cpp.o 2025-08-14T20:47:14.5862470Z [4620/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/utils/op_registry.cpp.o 2025-08-14T20:47:14.6496590Z [4621/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/utils/optimization_utils.cpp.o 2025-08-14T20:47:14.6729260Z [4622/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/utils/subgraph_utils.cpp.o 2025-08-14T20:47:14.7171010Z [4623/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/symbolic_shape_runtime_fusion.cpp.o 2025-08-14T20:47:14.7312800Z [4624/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/tensorexpr_fuser.cpp.o 2025-08-14T20:47:14.7368660Z [4625/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/value_refinement_utils.cpp.o 2025-08-14T20:47:14.7377340Z [4626/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/variadic_ops.cpp.o 2025-08-14T20:47:14.7628990Z [4627/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/python/utf8_decoding_ignore.cpp.o 2025-08-14T20:47:14.8556030Z [4628/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/python/update_graph_executor_opt.cpp.o 2025-08-14T20:47:15.0215860Z [4629/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/instruction.cpp.o 2025-08-14T20:47:15.0468310Z [4630/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/argument_spec.cpp.o 2025-08-14T20:47:15.1691670Z [4631/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/xnnpack_rewrite.cpp.o 2025-08-14T20:47:15.1941720Z [4632/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/vulkan_rewrite.cpp.o 2025-08-14T20:47:15.2012300Z [4633/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/decomposition_registry_util.cpp.o 2025-08-14T20:47:15.2255370Z [4634/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/autodiff.cpp.o 2025-08-14T20:47:15.2559330Z [4635/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/decomposition_registry.cpp.o 2025-08-14T20:47:15.4167200Z [4636/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/jit_exception.cpp.o 2025-08-14T20:47:15.4397300Z [4637/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/interpreter/preprocess_graph.cpp.o 2025-08-14T20:47:15.5083080Z [4638/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/graph_executor.cpp.o 2025-08-14T20:47:15.5084610Z [4639/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/logging.cpp.o 2025-08-14T20:47:15.5506620Z [4640/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/print_handler.cpp.o 2025-08-14T20:47:15.6694370Z [4641/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/interpreter/frame.cpp.o 2025-08-14T20:47:15.7461370Z [4642/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/interpreter.cpp.o 2025-08-14T20:47:15.7667110Z [4643/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/jit_trace.cpp.o 2025-08-14T20:47:15.8545280Z [4644/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/slice_indices_adjust.cpp.o 2025-08-14T20:47:15.9540660Z [4645/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/fusion.cpp.o 2025-08-14T20:47:15.9988940Z [4646/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/operator.cpp.o 2025-08-14T20:47:16.0006830Z [4647/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/script_profile.cpp.o 2025-08-14T20:47:16.1289010Z [4648/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/profiling_graph_executor_impl.cpp.o 2025-08-14T20:47:16.1793150Z [4649/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/serialized_shape_function_registry.cpp.o 2025-08-14T20:47:16.2949200Z [4650/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/profiling_record.cpp.o 2025-08-14T20:47:16.3303500Z [4651/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/register_ops_utils.cpp.o 2025-08-14T20:47:16.3610170Z [4652/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/impl.cpp.o 2025-08-14T20:47:16.3946150Z [4653/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/memory_planner.cpp.o 2025-08-14T20:47:16.4732170Z [4654/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/simple_graph_executor_impl.cpp.o 2025-08-14T20:47:16.6245160Z [4655/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/passes.cpp.o 2025-08-14T20:47:16.7768760Z [4656/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/symbolic_shape_registry.cpp.o 2025-08-14T20:47:16.7949330Z [4657/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/generated_ops.cpp.o 2025-08-14T20:47:16.7971460Z [4658/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/symbolic_shape_registry_util.cpp.o 2025-08-14T20:47:16.8022860Z [4659/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/symbolic_script.cpp.o 2025-08-14T20:47:16.8929750Z [4660/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/te_wrapper.cpp.o 2025-08-14T20:47:16.9101690Z [4661/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/native_ops.cpp.o 2025-08-14T20:47:16.9463880Z [4662/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/ops.cpp.o 2025-08-14T20:47:17.0739560Z [4663/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/import_export_helpers.cpp.o 2025-08-14T20:47:17.2541700Z [4664/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/import_read.cpp.o 2025-08-14T20:47:17.2850310Z [4665/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/pickle.cpp.o 2025-08-14T20:47:17.2995200Z [4666/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/vararg_functions.cpp.o 2025-08-14T20:47:17.3120860Z [4667/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/callstack_debug_info_serialization.cpp.o 2025-08-14T20:47:17.3297040Z [4668/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/import_source.cpp.o 2025-08-14T20:47:17.3446800Z [4669/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/import.cpp.o 2025-08-14T20:47:17.5314900Z [4670/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/pickler.cpp.o 2025-08-14T20:47:17.6399040Z [4671/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/python_print.cpp.o 2025-08-14T20:47:17.7004210Z [4672/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/pickler_helper.cpp.o 2025-08-14T20:47:17.7021470Z [4673/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/type_name_uniquer.cpp.o 2025-08-14T20:47:17.8199680Z [4674/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/source_range_serialization.cpp.o 2025-08-14T20:47:17.9561440Z [4675/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/unpickler.cpp.o 2025-08-14T20:47:17.9906200Z [4676/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/block_codegen.cpp.o 2025-08-14T20:47:18.0918200Z [4677/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/bounds_inference.cpp.o 2025-08-14T20:47:18.1086290Z [4678/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/bounds_overlap.cpp.o 2025-08-14T20:47:18.1343680Z [4679/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/codegen.cpp.o 2025-08-14T20:47:18.3127040Z [4680/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/cpp_codegen.cpp.o 2025-08-14T20:47:18.4099240Z [4681/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/intrinsic_symbols.cpp.o 2025-08-14T20:47:18.4428590Z [4682/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/external_functions_registry.cpp.o 2025-08-14T20:47:18.4587560Z [4683/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/eval.cpp.o 2025-08-14T20:47:18.4707170Z [4684/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/expr.cpp.o 2025-08-14T20:47:18.5083470Z [4685/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/external_functions.cpp.o 2025-08-14T20:47:18.5260090Z [4686/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/external_functions_codegen.cpp.o 2025-08-14T20:47:18.6587460Z [4687/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/hash_provider.cpp.o 2025-08-14T20:47:18.6870840Z [4688/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/external_functions_core.cpp.o 2025-08-14T20:47:18.7632140Z [4689/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir.cpp.o 2025-08-14T20:47:18.8298060Z [4690/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/graph_opt.cpp.o 2025-08-14T20:47:18.8400230Z [4691/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/llvm_codegen.cpp.o 2025-08-14T20:47:19.0859980Z [4692/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/llvm_jit.cpp.o 2025-08-14T20:47:19.1269040Z [4693/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir_printer.cpp.o 2025-08-14T20:47:19.1546080Z [4694/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir_mutator.cpp.o 2025-08-14T20:47:19.1809900Z [4695/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir_visitor.cpp.o 2025-08-14T20:47:19.1932480Z [4696/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir_verifier.cpp.o 2025-08-14T20:47:19.2106510Z [4697/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir_simplifier.cpp.o 2025-08-14T20:47:19.2450530Z [4698/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir_cloner.cpp.o 2025-08-14T20:47:19.5149200Z [4699/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/kernel.cpp.o 2025-08-14T20:47:19.6796410Z [4700/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/loopnest.cpp.o 2025-08-14T20:47:19.8050080Z [4701/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/mem_dependency_checker.cpp.o 2025-08-14T20:47:19.8192540Z [4702/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/misc.cpp.o 2025-08-14T20:47:19.8355240Z [4703/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/loopnest_randomization.cpp.o 2025-08-14T20:47:19.8556950Z [4704/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/matmul.cpp.o 2025-08-14T20:47:19.8677020Z [4705/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/conv2d.cpp.o 2025-08-14T20:47:19.8976990Z [4706/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/lowerings.cpp.o 2025-08-14T20:47:20.0035810Z [4707/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/norm.cpp.o 2025-08-14T20:47:20.1555070Z [4708/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/types.cpp.o 2025-08-14T20:47:20.2479880Z [4709/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/reduction.cpp.o 2025-08-14T20:47:20.2582630Z [4710/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/tensor.cpp.o 2025-08-14T20:47:20.3270920Z [4711/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/pointwise.cpp.o 2025-08-14T20:47:20.3937710Z [4712/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/quantization.cpp.o 2025-08-14T20:47:20.5096290Z [4713/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/softmax.cpp.o 2025-08-14T20:47:20.5166790Z [4714/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/unique_name_manager.cpp.o 2025-08-14T20:47:20.5448010Z [4715/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/registerizer.cpp.o 2025-08-14T20:47:20.6125630Z [4716/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/testing/hooks_for_testing.cpp.o 2025-08-14T20:47:20.6264020Z [4717/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/testing/file_check.cpp.o 2025-08-14T20:47:20.6403800Z [4718/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/config.cpp.o 2025-08-14T20:47:20.6717490Z [4719/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/reduction.cpp.o 2025-08-14T20:47:20.7554930Z [4720/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/backend/backend_device.cpp.o 2025-08-14T20:47:20.7594610Z [4721/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/backend/backend_interface.cpp.o 2025-08-14T20:47:20.7988920Z [4722/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/backend/lowering_context.cpp.o 2025-08-14T20:47:20.9485470Z [4723/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/hash.cpp.o 2025-08-14T20:47:21.0104670Z [4724/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/ir.cpp.o 2025-08-14T20:47:21.0205680Z [4725/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/debug_util.cpp.o 2025-08-14T20:47:21.0434900Z [4726/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/helpers.cpp.o 2025-08-14T20:47:21.0712360Z [4727/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/ir_dump_util.cpp.o 2025-08-14T20:47:21.0929410Z [4728/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/ir_metadata.cpp.o 2025-08-14T20:47:21.1539570Z [4729/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/ir_util.cpp.o 2025-08-14T20:47:21.1599130Z [4730/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/multi_wait.cpp.o 2025-08-14T20:47:21.2274490Z [4731/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/lazy_graph_executor.cpp.o 2025-08-14T20:47:21.3074070Z [4732/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/permutation_util.cpp.o 2025-08-14T20:47:21.3093000Z [4733/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/metrics.cpp.o 2025-08-14T20:47:21.4427850Z [4734/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/ops/arithmetic_ir_ops.cpp.o 2025-08-14T20:47:21.4642710Z [4735/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/ops/utils.cpp.o 2025-08-14T20:47:21.4884920Z [4736/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/thread_pool.cpp.o 2025-08-14T20:47:21.5206620Z [4737/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/tensor.cpp.o 2025-08-14T20:47:21.6052760Z [4738/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/shape.cpp.o 2025-08-14T20:47:21.6411550Z [4739/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/monitor/counters.cpp.o 2025-08-14T20:47:21.6847310Z [4740/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/monitor/events.cpp.o 2025-08-14T20:47:21.7151240Z [4741/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/tensor_util.cpp.o 2025-08-14T20:47:21.7279080Z [4742/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/tensor_impl.cpp.o 2025-08-14T20:47:21.7947300Z [4743/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/trie.cpp.o 2025-08-14T20:47:21.9211940Z [4744/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/mtia/profiler/MTIAMemoryProfiler.cpp.o 2025-08-14T20:47:21.9456590Z [4745/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/combined_traceback.cpp.o 2025-08-14T20:47:21.9551290Z [4746/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/collection.cpp.o 2025-08-14T20:47:21.9682860Z [4747/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/data_flow.cpp.o 2025-08-14T20:47:22.0103840Z [4748/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/shape_inference.cpp.o 2025-08-14T20:47:22.0514990Z [4749/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/kineto_client_interface.cpp.o 2025-08-14T20:47:22.0847000Z [4750/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/kineto_shim.cpp.o 2025-08-14T20:47:22.1142510Z [4751/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/perf.cpp.o 2025-08-14T20:47:22.1522150Z [4752/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/orchestration/python_tracer.cpp.o 2025-08-14T20:47:22.2238900Z [4753/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/orchestration/observer.cpp.o 2025-08-14T20:47:22.2665580Z [4754/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/unwind/unwind_fb.cpp.o 2025-08-14T20:47:22.3577970Z [4755/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/stubs/base.cpp.o 2025-08-14T20:47:22.3681340Z [4756/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/standalone/nvtx_observer.cpp.o 2025-08-14T20:47:22.3805330Z [4757/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/orchestration/vulkan.cpp.o 2025-08-14T20:47:22.3810770Z [4758/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/standalone/privateuse1_observer.cpp.o 2025-08-14T20:47:22.3989760Z [4759/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/standalone/itt_observer.cpp.o 2025-08-14T20:47:22.3996770Z [4760/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/unwind/unwind.cpp.o 2025-08-14T20:47:22.5486240Z [4761/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/utils/cpp_stacktraces.cpp.o 2025-08-14T20:47:22.5686870Z [4762/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/standalone/execution_trace_observer.cpp.o 2025-08-14T20:47:22.7390380Z [4763/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/utils/schema_info.cpp.o 2025-08-14T20:47:22.7667980Z [4764/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/util.cpp.o 2025-08-14T20:47:22.7749000Z [4765/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/utils/variadic.cpp.o 2025-08-14T20:47:22.8414100Z [4766/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/lower_graph.cpp.o 2025-08-14T20:47:22.8695510Z [4767/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/remove_inplace_ops.cpp.o 2025-08-14T20:47:23.0682490Z [4768/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/utils/tensor_flatten.cpp.o 2025-08-14T20:47:23.0695850Z [4769/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/register_c10_ops.cpp.o 2025-08-14T20:47:23.1302420Z [4770/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/cuda/interface.cpp.o 2025-08-14T20:47:23.1791710Z [4771/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/autocast.cpp.o 2025-08-14T20:47:23.2583170Z [4772/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/ModelRunner.cpp.o 2025-08-14T20:47:23.4383980Z [4773/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/graph/GraphSignature.cpp.o 2025-08-14T20:47:23.4520580Z [4774/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/register_prim_ops.cpp.o 2025-08-14T20:47:23.4563700Z [4775/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/graph/Graph.cpp.o 2025-08-14T20:47:23.4763910Z [4776/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/register_prim_ops_fulljit.cpp.o 2025-08-14T20:47:23.4910050Z [4777/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/register_special_ops.cpp.o 2025-08-14T20:47:23.4978920Z [4778/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/graph/TensorMeta.cpp.o 2025-08-14T20:47:23.5121260Z [4779/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/graph/GraphPasses.cpp.o 2025-08-14T20:47:23.6753170Z [4780/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/graph/Serialization.cpp.o 2025-08-14T20:47:23.7114100Z [4781/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/Placement.cpp.o 2025-08-14T20:47:23.8631780Z [4782/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/graph/GraphUtils.cpp.o 2025-08-14T20:47:23.8721600Z [4783/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/DelegateExecutor.cpp.o 2025-08-14T20:47:23.8763580Z [4784/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/ExecutionPlanner.cpp.o 2025-08-14T20:47:23.8795710Z [4785/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/ExecutionFrame.cpp.o 2025-08-14T20:47:23.9062400Z [4786/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/Executor.cpp.o 2025-08-14T20:47:23.9420230Z [4787/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/ConstantFolder.cpp.o 2025-08-14T20:47:23.9882730Z [4788/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/GraphExecutorBase.cpp.o 2025-08-14T20:47:24.0760760Z [4789/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/OpKernel.cpp.o 2025-08-14T20:47:24.1199750Z [4790/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/common/FileUtil.cpp.o 2025-08-14T20:47:24.1339910Z [4791/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/PlacementUtils.cpp.o 2025-08-14T20:47:24.2551580Z [4792/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/memory/FunctionSchema.cpp.o 2025-08-14T20:47:24.2826700Z [4793/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/SerialGraphExecutor.cpp.o 2025-08-14T20:47:24.3054320Z [4794/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/memory/GreedyBySize.cpp.o 2025-08-14T20:47:24.3853700Z [4795/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/Weights.cpp.o 2025-08-14T20:47:24.4182250Z [4796/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/memory/Bump.cpp.o 2025-08-14T20:47:24.4894220Z [4797/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/detail/ITree.cpp.o 2025-08-14T20:47:24.5022000Z [4798/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/kernels/AutoFunctionalizeKernel.cpp.o 2025-08-14T20:47:24.5043600Z [4799/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/kernels/C10Kernel.cpp.o 2025-08-14T20:47:24.5215150Z [4800/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/kernels/HigherOrderKernel.cpp.o 2025-08-14T20:47:24.6402720Z [4801/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/ParallelGraphExecutor.cpp.o 2025-08-14T20:47:24.6870800Z [4802/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/memory/DisjointStorageGroups.cpp.o 2025-08-14T20:47:24.8033730Z [4803/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/kernels/CallTorchBindKernel.cpp.o 2025-08-14T20:47:24.8777710Z [4804/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/memory/LayoutPlanner.cpp.o 2025-08-14T20:47:24.9222170Z [4805/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/memory/AliasAnalyzer.cpp.o 2025-08-14T20:47:24.9983200Z [4806/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/memory/LayoutManager.cpp.o 2025-08-14T20:47:25.0805860Z [4807/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/dynamic_ir.cpp.o 2025-08-14T20:47:25.1308580Z [4808/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/kernels/KernelFactory.cpp.o 2025-08-14T20:47:25.1476180Z [4809/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/kernels/PrimKernelRegistry.cpp.o 2025-08-14T20:47:25.1495690Z [4810/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/config.cpp.o 2025-08-14T20:47:25.3221640Z [4811/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/debug_info.cpp.o 2025-08-14T20:47:25.3759080Z [4812/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/kernels/NativeKernels.cpp.o 2025-08-14T20:47:25.4016580Z [4813/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ops/device_data.cpp.o 2025-08-14T20:47:25.4950580Z [4814/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ops/generic.cpp.o 2025-08-14T20:47:25.5932420Z [4815/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/tensor_aten_ops.cpp.o 2025-08-14T20:47:25.7142320Z [4816/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp.o 2025-08-14T20:47:25.7555080Z [4817/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_autograd_functions.cpp.o 2025-08-14T20:47:25.7802410Z [4818/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/kernels/GeneratedNativeStaticDispatchKernels.cpp.o 2025-08-14T20:47:25.8565080Z [4819/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_eager_fallback.cpp.o 2025-08-14T20:47:25.9073670Z [4820/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_lowering_context.cpp.o 2025-08-14T20:47:25.9946220Z [4821/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_node.cpp.o 2025-08-14T20:47:26.1017480Z [4822/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_backend_impl.cpp.o 2025-08-14T20:47:26.1567530Z [4823/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/kernels/KernelRegistry.cpp.o 2025-08-14T20:47:26.1827070Z [4824/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_node_lowering.cpp.o 2025-08-14T20:47:26.2672640Z [4825/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_native_functions.cpp.o 2025-08-14T20:47:26.2775640Z [4826/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/train/export_data.cpp.o 2025-08-14T20:47:26.4259370Z [4827/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/import_data.cpp.o 2025-08-14T20:47:26.4788940Z [4828/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/utils/out_types.cpp.o 2025-08-14T20:47:26.5138050Z [4829/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/train/optim/sgd.cpp.o 2025-08-14T20:47:26.5269800Z [4830/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/train/random.cpp.o 2025-08-14T20:47:26.6591310Z [4831/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/train/sequential.cpp.o 2025-08-14T20:47:26.6693660Z [4832/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/TraceTypeManual.cpp.o 2025-08-14T20:47:26.7002450Z [4833/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/jit.cpp.o 2025-08-14T20:47:26.8060130Z [4834/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/compatibility/backport.cpp.o 2025-08-14T20:47:26.8264590Z [4835/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/flatbuffer_serializer.cpp.o 2025-08-14T20:47:26.9343890Z [4836/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/compatibility/backport_manager.cpp.o 2025-08-14T20:47:27.0227350Z [4837/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/onnx.cpp.o 2025-08-14T20:47:27.0673610Z [4838/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/FunctionsManual.cpp.o 2025-08-14T20:47:27.1040520Z [4839/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/VariableTypeManual.cpp.o 2025-08-14T20:47:27.1328000Z [4840/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/utils/byte_order.cpp.o 2025-08-14T20:47:27.1949860Z [4841/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/export_bytecode.cpp.o 2025-08-14T20:47:27.3202100Z [4842/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/cuda.cpp.o 2025-08-14T20:47:27.3233560Z [4843/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/api/module_save.cpp.o 2025-08-14T20:47:27.4008930Z [4844/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/export.cpp.o 2025-08-14T20:47:27.5295600Z [4845/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/export_module.cpp.o 2025-08-14T20:47:27.5368740Z [4846/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/enum.cpp.o 2025-08-14T20:47:27.7028030Z [4847/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/cpu/fused_kernel.cpp.o 2025-08-14T20:47:27.7671670Z [4848/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/data/datasets/mnist.cpp.o 2025-08-14T20:47:27.7989560Z [4849/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/imethod.cpp.o 2025-08-14T20:47:27.8392730Z [4850/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/data/samplers/random.cpp.o 2025-08-14T20:47:27.8517710Z [4851/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/data/samplers/distributed.cpp.o 2025-08-14T20:47:27.8546430Z [4852/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/mps.cpp.o 2025-08-14T20:47:27.8842130Z [4853/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/data/samplers/sequential.cpp.o 2025-08-14T20:47:27.9073740Z [4854/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/data/samplers/stream.cpp.o 2025-08-14T20:47:28.1907870Z [4855/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/serialize.cpp.o 2025-08-14T20:47:28.2960740Z [4856/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/init.cpp.o 2025-08-14T20:47:28.4435750Z [4857/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/module.cpp.o 2025-08-14T20:47:28.5409630Z [4858/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/adaptive.cpp.o 2025-08-14T20:47:28.5738580Z [4859/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/activation.cpp.o 2025-08-14T20:47:28.5947170Z [4860/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/_functions.cpp.o 2025-08-14T20:47:28.6268670Z [4861/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/batchnorm.cpp.o 2025-08-14T20:47:28.6724500Z [4862/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/normalization.cpp.o 2025-08-14T20:47:28.7143340Z [4863/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/instancenorm.cpp.o 2025-08-14T20:47:28.9921470Z [4864/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/conv.cpp.o 2025-08-14T20:47:29.1219850Z [4865/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/distance.cpp.o 2025-08-14T20:47:29.1420490Z [4866/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/dropout.cpp.o 2025-08-14T20:47:29.1784930Z [4867/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/embedding.cpp.o 2025-08-14T20:47:29.3069360Z [4868/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/fold.cpp.o 2025-08-14T20:47:29.3376120Z [4869/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/padding.cpp.o 2025-08-14T20:47:29.3523440Z [4870/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/linear.cpp.o 2025-08-14T20:47:29.3699800Z [4871/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/loss.cpp.o 2025-08-14T20:47:29.5377250Z [4872/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/pixelshuffle.cpp.o 2025-08-14T20:47:29.7829640Z [4873/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/pooling.cpp.o 2025-08-14T20:47:29.8364190Z [4874/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/rnn.cpp.o 2025-08-14T20:47:29.9054050Z [4875/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/upsampling.cpp.o 2025-08-14T20:47:29.9264500Z [4876/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/container/functional.cpp.o 2025-08-14T20:47:29.9806630Z [4877/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/transformer.cpp.o 2025-08-14T20:47:30.0280440Z [4878/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/adaptive.cpp.o 2025-08-14T20:47:30.0517560Z [4879/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/activation.cpp.o 2025-08-14T20:47:30.0680680Z [4880/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/batchnorm.cpp.o 2025-08-14T20:47:30.3529510Z [4881/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/instancenorm.cpp.o 2025-08-14T20:47:30.5203690Z [4882/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/dropout.cpp.o 2025-08-14T20:47:30.5407140Z [4883/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/conv.cpp.o 2025-08-14T20:47:30.5574900Z [4884/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/embedding.cpp.o 2025-08-14T20:47:30.5725390Z [4885/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/normalization.cpp.o 2025-08-14T20:47:30.6057210Z [4886/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/linear.cpp.o 2025-08-14T20:47:30.6531090Z [4887/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/padding.cpp.o 2025-08-14T20:47:30.6780970Z [4888/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/pooling.cpp.o 2025-08-14T20:47:30.8882390Z [4889/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/rnn.cpp.o 2025-08-14T20:47:30.9453540Z [4890/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/vision.cpp.o 2025-08-14T20:47:31.1948070Z [4891/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/transformer.cpp.o 2025-08-14T20:47:31.2720080Z [4892/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/adam.cpp.o 2025-08-14T20:47:31.2884910Z [4893/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/adamw.cpp.o 2025-08-14T20:47:31.3112640Z [4894/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/lbfgs.cpp.o 2025-08-14T20:47:31.3204080Z [4895/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/optimizer.cpp.o 2025-08-14T20:47:31.3406410Z [4896/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/adagrad.cpp.o 2025-08-14T20:47:31.4668100Z [4897/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/serialize.cpp.o 2025-08-14T20:47:31.4977300Z [4898/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/rmsprop.cpp.o 2025-08-14T20:47:31.5867770Z [4899/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/schedulers/step_lr.cpp.o 2025-08-14T20:47:31.6255080Z [4900/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/schedulers/lr_scheduler.cpp.o 2025-08-14T20:47:31.7200530Z [4901/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/xpu.cpp.o 2025-08-14T20:47:31.7795120Z [4902/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/schedulers/reduce_on_plateau_scheduler.cpp.o 2025-08-14T20:47:31.8105340Z [4903/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/sgd.cpp.o 2025-08-14T20:47:32.0428130Z [4904/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSGeneratorImpl.mm.o 2025-08-14T20:47:32.0953770Z [4905/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSDevice.mm.o 2025-08-14T20:47:32.1536120Z [4906/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/EmptyTensor.cpp.o 2025-08-14T20:47:32.2009800Z [4907/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/serialize/output-archive.cpp.o 2025-08-14T20:47:32.2154490Z [4908/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/serialize/input-archive.cpp.o 2025-08-14T20:47:32.2207290Z [4909/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSEvent.mm.o 2025-08-14T20:47:32.3242590Z [4910/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSAllocator.mm.o 2025-08-14T20:47:32.3418480Z [4911/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSFallback.mm.o 2025-08-14T20:47:32.6281520Z [4912/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Equal.cpp.o 2025-08-14T20:47:32.7000270Z [4913/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSHooks.mm.o 2025-08-14T20:47:32.7524110Z [4914/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSGuardImpl.mm.o 2025-08-14T20:47:32.7749180Z [4915/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSStream.mm.o 2025-08-14T20:47:32.7784390Z [4916/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSProfiler.mm.o 2025-08-14T20:47:32.8617810Z [4917/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/TensorFactory.cpp.o 2025-08-14T20:47:33.0288150Z [4918/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Activation.mm.o 2025-08-14T20:47:33.0626650Z [4919/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/OperationUtils.mm.o 2025-08-14T20:47:33.3202220Z [4920/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/ActivationKernel.mm.o 2025-08-14T20:47:33.3895670Z [4921/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Attention.mm.o 2025-08-14T20:47:33.4232120Z [4922/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/AdaptivePooling.mm.o 2025-08-14T20:47:33.4541030Z [4923/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/BinaryKernel.mm.o 2025-08-14T20:47:33.4852150Z [4924/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Amp.mm.o 2025-08-14T20:47:33.5220040Z [4925/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/BinaryOps.mm.o 2025-08-14T20:47:33.6160280Z [4926/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/BitwiseOps.mm.o 2025-08-14T20:47:33.6360700Z [4927/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Blas.mm.o 2025-08-14T20:47:33.9985280Z [4928/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Bucketization.mm.o 2025-08-14T20:47:34.0232890Z [4929/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/ConstantOps.mm.o 2025-08-14T20:47:34.0798690Z [4930/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Col2Im.mm.o 2025-08-14T20:47:34.2179100Z [4931/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/CrossKernel.mm.o 2025-08-14T20:47:34.2487250Z [4932/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Copy.mm.o 2025-08-14T20:47:34.2548040Z [4933/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Distributions.mm.o 2025-08-14T20:47:34.2812870Z [4934/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Eye.mm.o 2025-08-14T20:47:34.2864840Z [4935/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/FusedAdamKernel.mm.o 2025-08-14T20:47:34.4816660Z [4936/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Convolution.mm.o 2025-08-14T20:47:34.5953920Z [4937/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/FusedAdamWKernel.mm.o 2025-08-14T20:47:34.6293540Z [4938/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/FastFourierTransform.mm.o 2025-08-14T20:47:34.7578630Z [4939/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/FusedAdamAmsgradKernelImpl.mm.o 2025-08-14T20:47:34.7778420Z [4940/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/FusedAdamKernelImpl.mm.o 2025-08-14T20:47:34.8483580Z [4941/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/GridSampler.mm.o 2025-08-14T20:47:35.0331570Z [4942/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/FusedAdamWAmsgradKernelImpl.mm.o 2025-08-14T20:47:35.0679480Z [4943/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/FusedAdamWKernelImpl.mm.o 2025-08-14T20:47:35.1017310Z [4944/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Gamma.mm.o 2025-08-14T20:47:35.2789780Z [4945/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/FusedSgdKernel.mm.o 2025-08-14T20:47:35.2892050Z [4946/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/HistogramKernel.mm.o 2025-08-14T20:47:35.4487700Z [4947/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Im2Col.mm.o 2025-08-14T20:47:35.4869260Z [4948/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Indexing.mm.o 2025-08-14T20:47:35.4900740Z [4949/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Lerp.mm.o 2025-08-14T20:47:35.7861220Z [4950/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Linear.mm.o 2025-08-14T20:47:35.7874580Z /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-08-14T20:47:35.7875700Z [kernel encodeToCommandEncoder:computeEncoder 2025-08-14T20:47:35.7875950Z ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-14T20:47:35.7876920Z /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-08-14T20:47:35.7877850Z @interface MPSNDArrayMatrixMultiplication : MPSNDArrayMultiaryKernel 2025-08-14T20:47:35.7878120Z ^ 2025-08-14T20:47:35.7878850Z /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-08-14T20:47:35.7879660Z [kernel encodeToCommandEncoder:computeEncoder 2025-08-14T20:47:35.7879870Z ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-14T20:47:35.7880670Z /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-08-14T20:47:35.7881720Z @interface MPSNDArrayMatrixMultiplication : MPSNDArrayMultiaryKernel 2025-08-14T20:47:35.7881980Z ^ 2025-08-14T20:47:35.7882100Z 2 warnings generated. 2025-08-14T20:47:35.7912670Z [4951/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/LinearAlgebra.mm.o 2025-08-14T20:47:35.7913810Z /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-08-14T20:47:35.7914670Z [matmul encodeToCommandEncoder:computeEncoder 2025-08-14T20:47:35.7914900Z ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-14T20:47:35.7915700Z /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-08-14T20:47:35.7916600Z @interface MPSNDArrayMatrixMultiplication : MPSNDArrayMultiaryKernel 2025-08-14T20:47:35.7916860Z ^ 2025-08-14T20:47:35.7916980Z 1 warning generated. 2025-08-14T20:47:35.8519790Z [4952/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/PixelShuffle.mm.o 2025-08-14T20:47:35.8594260Z [4953/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Normalization.mm.o 2025-08-14T20:47:35.9900150Z [4954/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/LossOps.mm.o 2025-08-14T20:47:36.1006670Z [4955/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Pad.mm.o 2025-08-14T20:47:36.1335070Z [4956/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Quantized.mm.o 2025-08-14T20:47:36.1585320Z [4957/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/PointwiseOps.mm.o 2025-08-14T20:47:36.4707770Z [4958/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Pooling.mm.o 2025-08-14T20:47:36.4820760Z [4959/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/RMSNorm.mm.o 2025-08-14T20:47:36.5564330Z [4960/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/RangeFactories.mm.o 2025-08-14T20:47:36.5831830Z [4961/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/RenormKernel.mm.o 2025-08-14T20:47:36.6520620Z [4962/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/RnnOps.mm.o 2025-08-14T20:47:36.6891810Z [4963/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/ReduceOps.mm.o 2025-08-14T20:47:36.8099610Z [4964/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Scalar.mm.o 2025-08-14T20:47:36.8434550Z [4965/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Repeat.mm.o 2025-08-14T20:47:37.0996290Z [4966/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/ScatterGather.mm.o 2025-08-14T20:47:37.1425470Z [4967/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/ScanKernel.mm.o 2025-08-14T20:47:37.2472070Z [4968/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Shape.mm.o 2025-08-14T20:47:37.2716560Z [4969/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/SoftMax.mm.o 2025-08-14T20:47:37.3108190Z [4970/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Sort.mm.o 2025-08-14T20:47:37.3593810Z [4971/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/SpecialOps.mm.o 2025-08-14T20:47:37.4093370Z [4972/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/SummaryOps.mm.o 2025-08-14T20:47:37.5848020Z [4973/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/TensorCompare.mm.o 2025-08-14T20:47:37.8268750Z [4974/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/UnaryOps.mm.o 2025-08-14T20:47:37.8344020Z [4975/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/TriangularOps.mm.o 2025-08-14T20:47:37.8724360Z [4976/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/UnfoldBackward.mm.o 2025-08-14T20:47:37.9726830Z [4977/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Unique.mm.o 2025-08-14T20:47:38.0021520Z [4978/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/UnaryKernel.mm.o 2025-08-14T20:47:38.0044640Z [4979/5156] Building CXX object caffe2/CMakeFiles/torch.dir/__/empty.cpp.o 2025-08-14T20:47:38.0073700Z [4980/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/View.mm.o 2025-08-14T20:47:38.0127400Z [4981/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/UpSample.mm.o 2025-08-14T20:47:38.1125140Z [4982/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/shim_mps.cpp.o 2025-08-14T20:47:38.2786680Z [4983/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_runner/model_container_runner_mps.cpp.o 2025-08-14T20:47:38.3094110Z [4984/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/WeightNorm.mm.o 2025-08-14T20:47:38.3234750Z [4985/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ReducedPrecisionFloatGemvFastPathKernel.cpp.DEFAULT.cpp.o 2025-08-14T20:47:38.3499970Z [4986/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/RangeFactoriesKernel.cpp.DEFAULT.cpp.o 2025-08-14T20:47:38.3721640Z [4987/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ReduceAllOpsKernel.cpp.DEFAULT.cpp.o 2025-08-14T20:47:38.4770010Z [4988/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ReduceOpsKernel.cpp.DEFAULT.cpp.o 2025-08-14T20:47:38.4976170Z [4989/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/mps/SparseMPSTensor.mm.o 2025-08-14T20:47:38.5879030Z [4990/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/shim_mps.mm.o 2025-08-14T20:47:38.5890870Z [4991/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/PowKernel.cpp.DEFAULT.cpp.o 2025-08-14T20:47:38.5961930Z [4992/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/PointwiseOpsKernel.cpp.DEFAULT.cpp.o 2025-08-14T20:47:38.6844720Z [4993/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/PixelShuffleKernel.cpp.DEFAULT.cpp.o 2025-08-14T20:47:38.6918750Z [4994/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/NativeMultiheadAttnKernel.cpp.DEFAULT.cpp.o 2025-08-14T20:47:38.7828540Z [4995/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/PaddingKernel.cpp.DEFAULT.cpp.o 2025-08-14T20:47:38.7930540Z [4996/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/MaxUnpoolKernel.cpp.DEFAULT.cpp.o 2025-08-14T20:47:38.8571140Z [4997/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/MultinomialKernel.cpp.DEFAULT.cpp.o 2025-08-14T20:47:38.9021240Z [4998/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/MaxPooling.cpp.DEFAULT.cpp.o 2025-08-14T20:47:39.0252540Z [4999/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/LerpKernel.cpp.DEFAULT.cpp.o 2025-08-14T20:47:39.0381890Z [5000/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/LinearAlgebraKernel.cpp.DEFAULT.cpp.o 2025-08-14T20:47:39.0599950Z [5001/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/MaxPoolKernel.cpp.DEFAULT.cpp.o 2025-08-14T20:47:39.0710160Z [5002/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/IndexKernel.cpp.DEFAULT.cpp.o 2025-08-14T20:47:39.1378140Z [5003/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/FusedSGDKernel.cpp.DEFAULT.cpp.o 2025-08-14T20:47:39.1495080Z [5004/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/HistogramKernel.cpp.DEFAULT.cpp.o 2025-08-14T20:47:39.1773490Z [5005/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/FusedAdamKernel.cpp.DEFAULT.cpp.o 2025-08-14T20:47:39.1905130Z [5006/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/FillKernel.cpp.DEFAULT.cpp.o 2025-08-14T20:47:39.2757880Z [5007/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/GridSamplerKernel.cpp.DEFAULT.cpp.o 2025-08-14T20:47:39.3560970Z [5008/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/FusedAdagradKernel.cpp.DEFAULT.cpp.o 2025-08-14T20:47:39.3608480Z [5009/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/FunctionOfAMatrixUtilsKernel.cpp.DEFAULT.cpp.o 2025-08-14T20:47:39.5195900Z [5010/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/DistributionKernels.cpp.DEFAULT.cpp.o 2025-08-14T20:47:39.5426740Z [5011/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp.DEFAULT.cpp.o 2025-08-14T20:47:39.5458040Z [5012/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/CrossKernel.cpp.DEFAULT.cpp.o 2025-08-14T20:47:39.5931910Z [5013/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ComplexKernel.cpp.DEFAULT.cpp.o 2025-08-14T20:47:39.6508680Z [5014/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/FlashAttentionKernel.cpp.DEFAULT.cpp.o 2025-08-14T20:47:39.6697240Z [5015/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/DepthwiseConvKernel.cpp.DEFAULT.cpp.o 2025-08-14T20:47:39.6698470Z [5016/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/CatKernel.cpp.DEFAULT.cpp.o 2025-08-14T20:47:39.7895500Z [5017/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ChannelShuffleKernel.cpp.DEFAULT.cpp.o 2025-08-14T20:47:39.8095680Z [5018/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/BlasKernel.cpp.DEFAULT.cpp.o 2025-08-14T20:47:39.9382760Z [5019/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/CopyKernel.cpp.DEFAULT.cpp.o 2025-08-14T20:47:39.9629510Z [5020/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/kleidiai/kai_ukernel_interface.cpp.o 2025-08-14T20:47:39.9811970Z [5021/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp.DEFAULT.cpp.o 2025-08-14T20:47:39.9948660Z [5022/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/AvgPoolKernel.cpp.DEFAULT.cpp.o 2025-08-14T20:47:40.0103430Z [5023/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/Activation.cpp.DEFAULT.cpp.o 2025-08-14T20:47:40.0212630Z [5024/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/AmpGradScalerKernels.cpp.DEFAULT.cpp.o 2025-08-14T20:47:40.0923660Z [5025/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/AdaptiveMaxPoolKernel.cpp.DEFAULT.cpp.o 2025-08-14T20:47:40.2049300Z [5026/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/metal/Context.cpp.o 2025-08-14T20:47:40.2089140Z [5027/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/AdaptiveAvgPoolKernel.cpp.DEFAULT.cpp.o 2025-08-14T20:47:40.2758220Z [5028/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/MetalConvParams.mm.o 2025-08-14T20:47:40.2871430Z [5029/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/MetalGuardImpl.cpp.o 2025-08-14T20:47:40.3303510Z [5030/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/kleidiai/kai_kernels.cpp.o 2025-08-14T20:47:40.4044650Z [5031/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/vulkan/Context.cpp.o 2025-08-14T20:47:40.6357040Z [5032/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/MetalCommandBuffer.mm.o 2025-08-14T20:47:40.6808720Z [5033/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/MetalContext.mm.o 2025-08-14T20:47:40.8692200Z [5034/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/MetalPrepackOpRegister.cpp.o 2025-08-14T20:47:40.8796740Z [5035/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/MetalTensorImplStorage.mm.o 2025-08-14T20:47:40.8988840Z [5036/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/mpscnn/MPSCNNClampOp.mm.o 2025-08-14T20:47:40.9147060Z [5037/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/MetalTensorUtils.mm.o 2025-08-14T20:47:41.1021650Z [5038/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/mpscnn/MPSCNNUtils.mm.o 2025-08-14T20:47:41.1363870Z [5039/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/MetalAten.mm.o 2025-08-14T20:47:41.1550550Z [5040/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/mpscnn/MPSImage+Tensor.mm.o 2025-08-14T20:47:41.2911180Z [5041/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/mpscnn/MPSCNNNeuronOp.mm.o 2025-08-14T20:47:41.3460160Z [5042/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/mpscnn/MPSCNNConvOp.mm.o 2025-08-14T20:47:41.6500750Z [5043/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalBinaryElementwise.mm.o 2025-08-14T20:47:41.6755170Z [5044/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/mpscnn/MPSImageWrapper.mm.o 2025-08-14T20:47:41.7661500Z [5045/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalClamp.mm.o 2025-08-14T20:47:41.8056570Z [5046/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/mpscnn/MPSCNNFullyConnectedOp.mm.o 2025-08-14T20:47:41.8951010Z [5047/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/mpscnn/MPSImageUtils.mm.o 2025-08-14T20:47:41.9717080Z [5048/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalChunk.mm.o 2025-08-14T20:47:42.0317960Z [5049/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalConcat.mm.o 2025-08-14T20:47:42.0728470Z [5050/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalAddmm.mm.o 2025-08-14T20:47:42.3366830Z [5051/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalCopy.mm.o 2025-08-14T20:47:42.3772880Z [5052/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalHardshrink.mm.o 2025-08-14T20:47:42.4466020Z [5053/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalHardswish.mm.o 2025-08-14T20:47:42.5003920Z [5054/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalLeakyReLU.mm.o 2025-08-14T20:47:42.5354120Z [5055/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalNeurons.mm.o 2025-08-14T20:47:42.6520420Z [5056/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalPadding.mm.o 2025-08-14T20:47:42.6620600Z [5057/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/transformers/sdp_utils_cpp.cpp.o 2025-08-14T20:47:42.6858450Z [5058/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/transformers/transformer.cpp.o 2025-08-14T20:47:42.7027880Z [5059/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalConvolution.mm.o 2025-08-14T20:47:42.7042830Z [5060/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/Activation.cpp.o 2025-08-14T20:47:42.7320530Z [5061/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/utils/Factory.cpp.o 2025-08-14T20:47:42.7862350Z [5062/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalPooling.mm.o 2025-08-14T20:47:42.8016490Z [5063/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/AveragePooling.cpp.o 2025-08-14T20:47:42.9321380Z [5064/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/ChannelShuffle.cpp.o 2025-08-14T20:47:42.9587570Z [5065/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/Shim.cpp.o 2025-08-14T20:47:42.9860330Z [5066/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/Init.cpp.o 2025-08-14T20:47:43.0136050Z [5067/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/Convolution.cpp.o 2025-08-14T20:47:43.0785020Z [5068/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/Linear.cpp.o 2025-08-14T20:47:43.0970200Z [5069/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/MaxPooling.cpp.o 2025-08-14T20:47:43.1169470Z [5070/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/RegisterOpContextClass.cpp.o 2025-08-14T20:47:43.1541250Z [5071/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/OpContext.cpp.o 2025-08-14T20:47:43.3706200Z [5072/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/CompositeViewCopyKernels.cpp.o 2025-08-14T20:47:43.4375740Z [5073/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Functions.cpp.o 2025-08-14T20:47:43.5116120Z [5074/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Operators_3.cpp.o 2025-08-14T20:47:43.5326960Z [5075/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Operators_0.cpp.o 2025-08-14T20:47:43.5368110Z [5076/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterBackendSelect.cpp.o 2025-08-14T20:47:43.5569940Z [5077/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Operators_4.cpp.o 2025-08-14T20:47:43.6243560Z [5078/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Operators_1.cpp.o 2025-08-14T20:47:43.6978420Z [5079/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Operators_2.cpp.o 2025-08-14T20:47:43.7741800Z [5080/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCPU_0.cpp.o 2025-08-14T20:47:43.9018500Z [5081/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCPU_2.cpp.o 2025-08-14T20:47:44.0104810Z [5082/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCompositeImplicitAutogradNestedTensor_0.cpp.o 2025-08-14T20:47:44.0204720Z [5083/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCPU_3.cpp.o 2025-08-14T20:47:44.1169460Z [5084/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCompositeImplicitAutograd_0.cpp.o 2025-08-14T20:47:44.1498590Z [5085/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCPU_1.cpp.o 2025-08-14T20:47:44.1534450Z [5086/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCompositeExplicitAutograd_0.cpp.o 2025-08-14T20:47:44.1584980Z [5087/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCompositeExplicitAutogradNonFunctional_0.cpp.o 2025-08-14T20:47:44.1980650Z [5088/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterFunctionalization_0.cpp.o 2025-08-14T20:47:44.2197980Z [5089/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterMeta_0.cpp.o 2025-08-14T20:47:44.2715920Z [5090/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterFunctionalization_1.cpp.o 2025-08-14T20:47:44.4762540Z [5091/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterFunctionalization_2.cpp.o 2025-08-14T20:47:44.5523550Z [5092/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterNestedTensorMeta_0.cpp.o 2025-08-14T20:47:44.5847510Z [5093/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterFunctionalization_3.cpp.o 2025-08-14T20:47:44.6096250Z [5094/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterNestedTensorXPU_0.cpp.o 2025-08-14T20:47:44.6138320Z [5095/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterMkldnnCPU_0.cpp.o 2025-08-14T20:47:44.6144270Z [5096/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterNestedTensorCPU_0.cpp.o 2025-08-14T20:47:44.6385360Z [5097/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterNestedTensorHPU_0.cpp.o 2025-08-14T20:47:44.6775850Z [5098/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterMPS_0.cpp.o 2025-08-14T20:47:44.8323030Z [5099/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterQuantizedCPU_0.cpp.o 2025-08-14T20:47:44.8385050Z [5100/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterQuantizedMeta_0.cpp.o 2025-08-14T20:47:44.9578270Z [5101/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSchema.cpp.o 2025-08-14T20:47:45.0582780Z [5102/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSparseCsrXPU_0.cpp.o 2025-08-14T20:47:45.0621140Z [5103/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSparseCPU_0.cpp.o 2025-08-14T20:47:45.0791900Z [5104/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSparseCsrMPS_0.cpp.o 2025-08-14T20:47:45.0901590Z [5105/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSparseCsrCPU_0.cpp.o 2025-08-14T20:47:45.1097220Z [5106/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSparseMPS_0.cpp.o 2025-08-14T20:47:45.1560800Z [5107/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSparseMeta_0.cpp.o 2025-08-14T20:47:45.2169190Z [5108/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSparseCsrMeta_0.cpp.o 2025-08-14T20:47:45.3164780Z [5109/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/UfuncCPU_add.cpp.o 2025-08-14T20:47:45.3370260Z [5110/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSparseXPU_0.cpp.o 2025-08-14T20:47:45.3497070Z [5111/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterZeroTensor_0.cpp.o 2025-08-14T20:47:45.3535490Z [5112/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/ATenOpList.cpp.o 2025-08-14T20:47:45.4403580Z [5113/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/quantized/QTensorImpl.cpp.o 2025-08-14T20:47:45.4425510Z [5114/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/TensorMethods.cpp.o 2025-08-14T20:47:45.4652540Z [5115/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/nnapi/nnapi_model_loader.cpp.o 2025-08-14T20:47:45.6679120Z [5116/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/nnapi/nnapi_wrapper.cpp.o 2025-08-14T20:47:45.7254460Z [5117/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/spherical_bessel_j0.cpp.DEFAULT.cpp.o 2025-08-14T20:47:45.7465110Z [5118/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/quantized/Quantizer.cpp.o 2025-08-14T20:47:45.7669800Z [5119/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/nnapi/nnapi_bind.cpp.o 2025-08-14T20:47:45.8207340Z [5120/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/UfuncCPUKernel_add.cpp.DEFAULT.cpp.o 2025-08-14T20:47:45.8315720Z [5121/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/scaled_modified_bessel_k0.cpp.DEFAULT.cpp.o 2025-08-14T20:47:45.8723340Z [5122/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/kernels/QuantizedOpKernels.cpp.DEFAULT.cpp.o 2025-08-14T20:47:45.9629000Z [5123/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/int8mm_kernel.cpp.DEFAULT.cpp.o 2025-08-14T20:47:46.0136340Z [5124/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/nnapi/nnapi_register.cpp.o 2025-08-14T20:47:46.0258260Z [5125/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/scaled_modified_bessel_k1.cpp.DEFAULT.cpp.o 2025-08-14T20:47:46.1192960Z [5126/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/airy_ai.cpp.DEFAULT.cpp.o 2025-08-14T20:47:46.1467000Z [5127/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/int4mm_kernel.cpp.DEFAULT.cpp.o 2025-08-14T20:47:46.1717950Z [5128/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/layer_norm_kernel.cpp.DEFAULT.cpp.o 2025-08-14T20:47:46.1742730Z [5129/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/WeightNormKernel.cpp.DEFAULT.cpp.o 2025-08-14T20:47:46.2149030Z [5130/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/Unfold2d.cpp.DEFAULT.cpp.o 2025-08-14T20:47:46.2749390Z [5131/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/group_norm_kernel.cpp.DEFAULT.cpp.o 2025-08-14T20:47:46.3413610Z [5132/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/batch_norm_kernel.cpp.DEFAULT.cpp.o 2025-08-14T20:47:46.4963140Z [5133/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/StackKernel.cpp.DEFAULT.cpp.o 2025-08-14T20:47:46.5016330Z [5134/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/UpSampleKernel.cpp.DEFAULT.cpp.o 2025-08-14T20:47:46.5208500Z [5135/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/UnfoldBackwardKernel.cpp.DEFAULT.cpp.o 2025-08-14T20:47:46.5226970Z [5136/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/UpSampleMoreKernel.cpp.DEFAULT.cpp.o 2025-08-14T20:47:46.5512480Z [5137/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SparseFactories.cpp.DEFAULT.cpp.o 2025-08-14T20:47:46.5530040Z [5138/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SumKernel.cpp.DEFAULT.cpp.o 2025-08-14T20:47:46.5916880Z [5139/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/UnaryOpsKernel.cpp.DEFAULT.cpp.o 2025-08-14T20:47:46.6334450Z [5140/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/TensorCompareKernel.cpp.DEFAULT.cpp.o 2025-08-14T20:47:46.8415860Z [5141/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SpmmReduceKernel.cpp.DEFAULT.cpp.o 2025-08-14T20:47:46.8451550Z [5142/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SoftMaxKernel.cpp.DEFAULT.cpp.o 2025-08-14T20:47:46.8480170Z [5143/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SortingKernel.cpp.DEFAULT.cpp.o 2025-08-14T20:47:46.8619250Z [5144/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/RenormKernel.cpp.DEFAULT.cpp.o 2025-08-14T20:47:46.9540600Z [5145/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ScatterGatherKernel.cpp.DEFAULT.cpp.o 2025-08-14T20:47:47.0684440Z [5146/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalReshape.mm.o 2025-08-14T20:47:47.1384980Z [5147/5156] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SampledAddmmKernel.cpp.DEFAULT.cpp.o 2025-08-14T20:47:47.2468230Z [5148/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalReduce.mm.o 2025-08-14T20:47:47.3407010Z [5149/5156] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalSoftmax.mm.o 2025-08-14T20:47:48.1167610Z [5150/5156] Linking CXX shared library lib/libtorch_cpu.dylib 2025-08-14T20:47:48.1168100Z ld: warning: ignoring duplicate libraries: 'lib/libcpuinfo.a', 'lib/libnnpack.a', 'lib/libpthreadpool.a' 2025-08-14T20:47:48.2407860Z [5151/5156] Linking CXX shared library lib/libtorch.dylib 2025-08-14T20:47:48.2431220Z [5152/5156] Linking CXX shared library lib/libshm.dylib 2025-08-14T20:47:48.3150410Z [5153/5156] Linking CXX executable bin/torch_shm_manager 2025-08-14T20:47:48.4362630Z [5154/5156] Linking CXX shared library lib/libtorch_python.dylib 2025-08-14T20:47:48.5381540Z [5155/5156] Linking CXX shared module functorch/functorch.so 2025-08-14T20:47:48.5381830Z [5155/5156] Install the project... 2025-08-14T20:47:48.5443420Z -- Install configuration: "Release" 2025-08-14T20:47:53.8636340Z running bdist_wheel 2025-08-14T20:47:56.6138670Z running build 2025-08-14T20:47:56.6138830Z running build_py 2025-08-14T20:47:56.6169340Z creating build/lib.macosx-14.0-arm64-cpython-312 2025-08-14T20:47:56.6169870Z creating build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-14T20:47:56.6170650Z copying torch/_storage_docs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-14T20:47:56.6179070Z copying torch/_meta_registrations.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-14T20:47:56.6181680Z copying torch/version.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-14T20:47:56.6182560Z copying torch/library.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-14T20:47:56.6204510Z copying torch/_jit_internal.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-14T20:47:56.6226060Z copying torch/_thread_safe_fork.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-14T20:47:56.6226700Z copying torch/_custom_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-14T20:47:56.6234580Z copying torch/return_types.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-14T20:47:56.6241960Z copying torch/_size_docs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-14T20:47:56.6249290Z copying torch/_torch_docs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-14T20:47:56.6252970Z copying torch/_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-14T20:47:56.6275280Z copying torch/_utils_internal.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-14T20:47:56.6276180Z copying torch/quasirandom.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-14T20:47:56.6283270Z copying torch/torch_version.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-14T20:47:56.6290360Z copying torch/_VF.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-14T20:47:56.6297210Z copying torch/_streambase.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-14T20:47:56.6304050Z copying torch/_tensor_docs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-14T20:47:56.6305760Z copying torch/_weights_only_unpickler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-14T20:47:56.6321420Z copying torch/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-14T20:47:56.6351210Z copying torch/overrides.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-14T20:47:56.6382980Z copying torch/_namedtensor_internals.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-14T20:47:56.6391030Z copying torch/types.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-14T20:47:56.6397950Z copying torch/_linalg_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-14T20:47:56.6404890Z copying torch/__config__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-14T20:47:56.6411510Z copying torch/_tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-14T20:47:56.6433950Z copying torch/random.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-14T20:47:56.6441420Z copying torch/hub.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-14T20:47:56.6442560Z copying torch/_tensor_str.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-14T20:47:56.6456450Z copying torch/_sources.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-14T20:47:56.6463610Z copying torch/_vmap_internals.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-14T20:47:56.6471070Z copying torch/functional.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-14T20:47:56.6498800Z copying torch/_lowrank.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-14T20:47:56.6506850Z copying torch/_appdirs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-14T20:47:56.6521260Z copying torch/_environment.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-14T20:47:56.6528670Z copying torch/storage.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-14T20:47:56.6548610Z copying torch/_compile.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-14T20:47:56.6555750Z copying torch/_lobpcg.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-14T20:47:56.6571290Z copying torch/__future__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-14T20:47:56.6579210Z copying torch/_guards.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-14T20:47:56.6595220Z copying torch/_python_dispatcher.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-14T20:47:56.6602980Z copying torch/_classes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-14T20:47:56.6609800Z copying torch/serialization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-14T20:47:56.6638400Z copying torch/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-14T20:47:56.6655160Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-08-14T20:47:56.6655600Z copying torchgen/native_function_generation.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-08-14T20:47:56.6656880Z copying torchgen/gen_vmap_plumbing.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-08-14T20:47:56.6657960Z copying torchgen/gen.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-08-14T20:47:56.6659650Z copying torchgen/local.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-08-14T20:47:56.6660740Z copying torchgen/gen_functionalization_type.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-08-14T20:47:56.6662110Z copying torchgen/code_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-08-14T20:47:56.6663140Z copying torchgen/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-08-14T20:47:56.6664240Z copying torchgen/yaml_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-08-14T20:47:56.6665370Z copying torchgen/gen_aoti_c_shim.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-08-14T20:47:56.6666590Z copying torchgen/model.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-08-14T20:47:56.6668330Z copying torchgen/gen_schema_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-08-14T20:47:56.6675440Z copying torchgen/context.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-08-14T20:47:56.6676210Z copying torchgen/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-08-14T20:47:56.6677430Z copying torchgen/gen_backend_stubs.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-08-14T20:47:56.6678720Z copying torchgen/gen_lazy_tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-08-14T20:47:56.6680980Z creating build/lib.macosx-14.0-arm64-cpython-312/functorch 2025-08-14T20:47:56.6681320Z copying functorch/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch 2025-08-14T20:47:56.6691880Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-08-14T20:47:56.6692330Z copying torch/_higher_order_ops/flat_apply.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-08-14T20:47:56.6699430Z copying torch/_higher_order_ops/foreach_map.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-08-14T20:47:56.6706890Z copying torch/_higher_order_ops/effects.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-08-14T20:47:56.6714090Z copying torch/_higher_order_ops/_invoke_quant.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-08-14T20:47:56.6721440Z copying torch/_higher_order_ops/invoke_subgraph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-08-14T20:47:56.6735150Z copying torch/_higher_order_ops/aoti_call_delegate.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-08-14T20:47:56.6743070Z copying torch/_higher_order_ops/while_loop.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-08-14T20:47:56.6757710Z copying torch/_higher_order_ops/base_hop.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-08-14T20:47:56.6764790Z copying torch/_higher_order_ops/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-08-14T20:47:56.6772210Z copying torch/_higher_order_ops/strict_mode.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-08-14T20:47:56.6778570Z copying torch/_higher_order_ops/torchbind.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-08-14T20:47:56.6786180Z copying torch/_higher_order_ops/cond.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-08-14T20:47:56.6800980Z copying torch/_higher_order_ops/map.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-08-14T20:47:56.6808190Z copying torch/_higher_order_ops/hints_wrap.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-08-14T20:47:56.6815430Z copying torch/_higher_order_ops/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-08-14T20:47:56.6829920Z copying torch/_higher_order_ops/out_dtype.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-08-14T20:47:56.6838190Z copying torch/_higher_order_ops/executorch_call_delegate.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-08-14T20:47:56.6844830Z copying torch/_higher_order_ops/scan.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-08-14T20:47:56.6858360Z copying torch/_higher_order_ops/run_const_graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-08-14T20:47:56.6866320Z copying torch/_higher_order_ops/associative_scan.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-08-14T20:47:56.6880810Z copying torch/_higher_order_ops/auto_functionalize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-08-14T20:47:56.6894450Z copying torch/_higher_order_ops/triton_kernel_wrap.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-08-14T20:47:56.6924050Z copying torch/_higher_order_ops/flex_attention.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-08-14T20:47:56.6939660Z copying torch/_higher_order_ops/wrap.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-08-14T20:47:56.6947120Z copying torch/_higher_order_ops/schema.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-08-14T20:47:56.6955790Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_prims 2025-08-14T20:47:56.6956180Z copying torch/_prims/debug_prims.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_prims 2025-08-14T20:47:56.6963900Z copying torch/_prims/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_prims 2025-08-14T20:47:56.6986580Z copying torch/_prims/context.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_prims 2025-08-14T20:47:56.6994200Z copying torch/_prims/rng_prims.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_prims 2025-08-14T20:47:56.7001510Z copying torch/_prims/executor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_prims 2025-08-14T20:47:56.7010870Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_logging 2025-08-14T20:47:56.7011260Z copying torch/_logging/_internal.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_logging 2025-08-14T20:47:56.7032800Z copying torch/_logging/scribe.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_logging 2025-08-14T20:47:56.7040000Z copying torch/_logging/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_logging 2025-08-14T20:47:56.7047650Z copying torch/_logging/_registrations.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_logging 2025-08-14T20:47:56.7054690Z copying torch/_logging/structured.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_logging 2025-08-14T20:47:56.7063610Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-08-14T20:47:56.7064030Z copying torch/_functorch/partitioners.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-08-14T20:47:56.7094250Z copying torch/_functorch/compile_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-08-14T20:47:56.7101750Z copying torch/_functorch/config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-08-14T20:47:56.7109910Z copying torch/_functorch/autograd_function.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-08-14T20:47:56.7124210Z copying torch/_functorch/python_key.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-08-14T20:47:56.7132250Z copying torch/_functorch/pytree_hacks.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-08-14T20:47:56.7138940Z copying torch/_functorch/pyfunctorch.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-08-14T20:47:56.7146410Z copying torch/_functorch/deprecated.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-08-14T20:47:56.7153620Z copying torch/_functorch/top_operators_github_usage.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-08-14T20:47:56.7167590Z copying torch/_functorch/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-08-14T20:47:56.7174110Z copying torch/_functorch/batch_norm_replacement.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-08-14T20:47:56.7181040Z copying torch/_functorch/fx_minifier.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-08-14T20:47:56.7194870Z copying torch/_functorch/apis.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-08-14T20:47:56.7208250Z copying torch/_functorch/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-08-14T20:47:56.7215580Z copying torch/_functorch/aot_autograd.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-08-14T20:47:56.7237780Z copying torch/_functorch/compilers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-08-14T20:47:56.7246410Z copying torch/_functorch/eager_transforms.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-08-14T20:47:56.7269060Z copying torch/_functorch/vmap.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-08-14T20:47:56.7284230Z copying torch/_functorch/benchmark_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-08-14T20:47:56.7291400Z copying torch/_functorch/make_functional.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-08-14T20:47:56.7305900Z copying torch/_functorch/functional_call.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-08-14T20:47:56.7315790Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-08-14T20:47:56.7316290Z copying torch/_numpy/_reductions_impl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-08-14T20:47:56.7324860Z copying torch/_numpy/_getlimits.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-08-14T20:47:56.7332090Z copying torch/_numpy/_unary_ufuncs_impl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-08-14T20:47:56.7338810Z copying torch/_numpy/_casting_dicts.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-08-14T20:47:56.7353780Z copying torch/_numpy/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-08-14T20:47:56.7361880Z copying torch/_numpy/_binary_ufuncs_impl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-08-14T20:47:56.7368670Z copying torch/_numpy/random.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-08-14T20:47:56.7375170Z copying torch/_numpy/_dtypes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-08-14T20:47:56.7382550Z copying torch/_numpy/linalg.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-08-14T20:47:56.7389800Z copying torch/_numpy/_ndarray.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-08-14T20:47:56.7403990Z copying torch/_numpy/_ufuncs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-08-14T20:47:56.7411780Z copying torch/_numpy/_util.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-08-14T20:47:56.7418820Z copying torch/_numpy/_normalizations.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-08-14T20:47:56.7426050Z copying torch/_numpy/_dtypes_impl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-08-14T20:47:56.7433650Z copying torch/_numpy/fft.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-08-14T20:47:56.7440550Z copying torch/_numpy/_funcs_impl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-08-14T20:47:56.7462820Z copying torch/_numpy/_funcs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-08-14T20:47:56.7471840Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_export 2025-08-14T20:47:56.7472210Z copying torch/_export/error.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export 2025-08-14T20:47:56.7479080Z copying torch/_export/tools.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export 2025-08-14T20:47:56.7486150Z copying torch/_export/converter.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export 2025-08-14T20:47:56.7508120Z copying torch/_export/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export 2025-08-14T20:47:56.7516090Z copying torch/_export/pass_base.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export 2025-08-14T20:47:56.7530600Z copying torch/_export/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export 2025-08-14T20:47:56.7552870Z copying torch/_export/wrappers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export 2025-08-14T20:47:56.7560240Z copying torch/_export/non_strict_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export 2025-08-14T20:47:56.7574180Z copying torch/_export/verifier.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export 2025-08-14T20:47:56.7589290Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/monitor 2025-08-14T20:47:56.7589660Z copying torch/monitor/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/monitor 2025-08-14T20:47:56.7597670Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_dispatch 2025-08-14T20:47:56.7598060Z copying torch/_dispatch/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dispatch 2025-08-14T20:47:56.7598750Z copying torch/_dispatch/python.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dispatch 2025-08-14T20:47:56.7607510Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses 2025-08-14T20:47:56.7607950Z copying torch/_subclasses/functional_tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses 2025-08-14T20:47:56.7622400Z copying torch/_subclasses/meta_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses 2025-08-14T20:47:56.7651770Z copying torch/_subclasses/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses 2025-08-14T20:47:56.7659450Z copying torch/_subclasses/_fake_tensor_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses 2025-08-14T20:47:56.7666660Z copying torch/_subclasses/fake_impls.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses 2025-08-14T20:47:56.7681970Z copying torch/_subclasses/fake_tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses 2025-08-14T20:47:56.7713990Z copying torch/_subclasses/schema_check_mode.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses 2025-08-14T20:47:56.7722340Z copying torch/_subclasses/fake_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses 2025-08-14T20:47:56.7730230Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/futures 2025-08-14T20:47:56.7730610Z copying torch/futures/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/futures 2025-08-14T20:47:56.7738980Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/linalg 2025-08-14T20:47:56.7739340Z copying torch/linalg/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/linalg 2025-08-14T20:47:56.7770670Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_custom_op 2025-08-14T20:47:56.7771060Z copying torch/_custom_op/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_custom_op 2025-08-14T20:47:56.7771850Z copying torch/_custom_op/autograd.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_custom_op 2025-08-14T20:47:56.7780870Z copying torch/_custom_op/impl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_custom_op 2025-08-14T20:47:56.7795950Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-08-14T20:47:56.7796340Z copying torch/nn/common_types.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-08-14T20:47:56.7803570Z copying torch/nn/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-08-14T20:47:56.7810530Z copying torch/nn/_reduction.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-08-14T20:47:56.7817460Z copying torch/nn/cpp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-08-14T20:47:56.7825010Z copying torch/nn/functional.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-08-14T20:47:56.7866480Z copying torch/nn/init.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-08-14T20:47:56.7882110Z copying torch/nn/grad.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-08-14T20:47:56.7889590Z copying torch/nn/parameter.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-08-14T20:47:56.7897970Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/mps 2025-08-14T20:47:56.7898330Z copying torch/mps/event.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/mps 2025-08-14T20:47:56.7906140Z copying torch/mps/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/mps 2025-08-14T20:47:56.7913410Z copying torch/mps/profiler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/mps 2025-08-14T20:47:56.7923680Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-08-14T20:47:56.7924040Z copying torch/onnx/_type_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-08-14T20:47:56.7930980Z copying torch/onnx/_constants.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-08-14T20:47:56.7938330Z copying torch/onnx/symbolic_opset15.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-08-14T20:47:56.7945160Z copying torch/onnx/_onnx_supported_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-08-14T20:47:56.7952270Z copying torch/onnx/symbolic_opset7.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-08-14T20:47:56.7959360Z copying torch/onnx/symbolic_opset11.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-08-14T20:47:56.7981070Z copying torch/onnx/verification.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-08-14T20:47:56.8004380Z copying torch/onnx/_flags.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-08-14T20:47:56.8012010Z copying torch/onnx/symbolic_opset10.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-08-14T20:47:56.8026520Z copying torch/onnx/symbolic_opset20.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-08-14T20:47:56.8033880Z copying torch/onnx/symbolic_opset14.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-08-14T20:47:56.8041500Z copying torch/onnx/_globals.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-08-14T20:47:56.8048730Z copying torch/onnx/symbolic_helper.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-08-14T20:47:56.8078420Z copying torch/onnx/symbolic_opset9.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-08-14T20:47:56.8119320Z copying torch/onnx/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-08-14T20:47:56.8133910Z copying torch/onnx/symbolic_opset8.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-08-14T20:47:56.8140930Z copying torch/onnx/symbolic_opset19.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-08-14T20:47:56.8147690Z copying torch/onnx/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-08-14T20:47:56.8170190Z copying torch/onnx/_experimental.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-08-14T20:47:56.8177150Z copying torch/onnx/symbolic_opset18.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-08-14T20:47:56.8184730Z copying torch/onnx/errors.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-08-14T20:47:56.8192300Z copying torch/onnx/symbolic_opset13.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-08-14T20:47:56.8206050Z copying torch/onnx/operators.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-08-14T20:47:56.8213700Z copying torch/onnx/symbolic_opset17.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-08-14T20:47:56.8221180Z copying torch/onnx/symbolic_opset16.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-08-14T20:47:56.8228390Z copying torch/onnx/symbolic_opset12.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-08-14T20:47:56.8236160Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_vendor 2025-08-14T20:47:56.8236520Z copying torch/_vendor/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_vendor 2025-08-14T20:47:56.8237900Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/cpu 2025-08-14T20:47:56.8238370Z copying torch/cpu/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cpu 2025-08-14T20:47:56.8248120Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-08-14T20:47:56.8248560Z copying torch/distributed/_composable_state.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-08-14T20:47:56.8255960Z copying torch/distributed/logging_handlers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-08-14T20:47:56.8263340Z copying torch/distributed/rendezvous.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-08-14T20:47:56.8270730Z copying torch/distributed/run.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-08-14T20:47:56.8286200Z copying torch/distributed/_state_dict_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-08-14T20:47:56.8300790Z copying torch/distributed/_serialization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-08-14T20:47:56.8308470Z copying torch/distributed/distributed_c10d.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-08-14T20:47:56.8347870Z copying torch/distributed/argparse_util.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-08-14T20:47:56.8355470Z copying torch/distributed/_checkpointable.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-08-14T20:47:56.8362660Z copying torch/distributed/constants.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-08-14T20:47:56.8369520Z copying torch/distributed/c10d_logger.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-08-14T20:47:56.8376300Z copying torch/distributed/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-08-14T20:47:56.8383840Z copying torch/distributed/_dist2.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-08-14T20:47:56.8391050Z copying torch/distributed/collective_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-08-14T20:47:56.8398230Z copying torch/distributed/_functional_collectives.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-08-14T20:47:56.8412670Z copying torch/distributed/launch.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-08-14T20:47:56.8419870Z copying torch/distributed/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-08-14T20:47:56.8427280Z copying torch/distributed/remote_device.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-08-14T20:47:56.8434960Z copying torch/distributed/device_mesh.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-08-14T20:47:56.8455610Z copying torch/distributed/_functional_collectives_impl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-08-14T20:47:56.8463690Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-08-14T20:47:56.8464110Z copying torch/autograd/anomaly_mode.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-08-14T20:47:56.8472100Z copying torch/autograd/graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-08-14T20:47:56.8487190Z copying torch/autograd/forward_ad.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-08-14T20:47:56.8494590Z copying torch/autograd/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-08-14T20:47:56.8508500Z copying torch/autograd/variable.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-08-14T20:47:56.8515920Z copying torch/autograd/functional.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-08-14T20:47:56.8537990Z copying torch/autograd/grad_mode.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-08-14T20:47:56.8546050Z copying torch/autograd/profiler_util.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-08-14T20:47:56.8561100Z copying torch/autograd/profiler_legacy.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-08-14T20:47:56.8569420Z copying torch/autograd/gradcheck.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-08-14T20:47:56.8604290Z copying torch/autograd/profiler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-08-14T20:47:56.8626230Z copying torch/autograd/function.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-08-14T20:47:56.8642690Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-08-14T20:47:56.8643130Z copying torch/fx/_pytree.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-08-14T20:47:56.8651180Z copying torch/fx/graph_module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-08-14T20:47:56.8665690Z copying torch/fx/operator_schemas.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-08-14T20:47:56.8679610Z copying torch/fx/config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-08-14T20:47:56.8686810Z copying torch/fx/proxy.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-08-14T20:47:56.8702140Z copying torch/fx/_lazy_graph_module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-08-14T20:47:56.8709830Z copying torch/fx/traceback.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-08-14T20:47:56.8717300Z copying torch/fx/graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-08-14T20:47:56.8739890Z copying torch/fx/tensor_type.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-08-14T20:47:56.8747110Z copying torch/fx/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-08-14T20:47:56.8754150Z copying torch/fx/immutable_collections.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-08-14T20:47:56.8761950Z copying torch/fx/annotate.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-08-14T20:47:56.8768300Z copying torch/fx/subgraph_rewriter.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-08-14T20:47:56.8776200Z copying torch/fx/interpreter.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-08-14T20:47:56.8790680Z copying torch/fx/_symbolic_trace.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-08-14T20:47:56.8812810Z copying torch/fx/node.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-08-14T20:47:56.8826350Z copying torch/fx/_compatibility.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-08-14T20:47:56.8833380Z copying torch/fx/_graph_pickler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-08-14T20:47:56.8849890Z copying torch/fx/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-08-14T20:47:56.8858230Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_prims_common 2025-08-14T20:47:56.8858650Z copying torch/_prims_common/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_prims_common 2025-08-14T20:47:56.8881300Z copying torch/_prims_common/wrappers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_prims_common 2025-08-14T20:47:56.8896790Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing 2025-08-14T20:47:56.8897230Z copying torch/multiprocessing/queue.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing 2025-08-14T20:47:56.8903650Z copying torch/multiprocessing/_atfork.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing 2025-08-14T20:47:56.8910830Z copying torch/multiprocessing/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing 2025-08-14T20:47:56.8917860Z copying torch/multiprocessing/spawn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing 2025-08-14T20:47:56.8925620Z copying torch/multiprocessing/reductions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing 2025-08-14T20:47:56.8940000Z copying torch/multiprocessing/pool.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing 2025-08-14T20:47:56.8949490Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-08-14T20:47:56.8949900Z copying torch/cuda/_pin_memory_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-08-14T20:47:56.8957280Z copying torch/cuda/gds.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-08-14T20:47:56.8964550Z copying torch/cuda/streams.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-08-14T20:47:56.8972050Z copying torch/cuda/error.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-08-14T20:47:56.8972770Z copying torch/cuda/comm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-08-14T20:47:56.8980150Z copying torch/cuda/memory.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-08-14T20:47:56.8994960Z copying torch/cuda/jiterator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-08-14T20:47:56.9002580Z copying torch/cuda/nccl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-08-14T20:47:56.9010000Z copying torch/cuda/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-08-14T20:47:56.9031400Z copying torch/cuda/_gpu_trace.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-08-14T20:47:56.9039700Z copying torch/cuda/_sanitizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-08-14T20:47:56.9053370Z copying torch/cuda/random.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-08-14T20:47:56.9060020Z copying torch/cuda/_memory_viz.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-08-14T20:47:56.9074380Z copying torch/cuda/tunable.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-08-14T20:47:56.9087990Z copying torch/cuda/sparse.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-08-14T20:47:56.9095920Z copying torch/cuda/nvtx.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-08-14T20:47:56.9104280Z copying torch/cuda/graphs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-08-14T20:47:56.9119230Z copying torch/cuda/profiler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-08-14T20:47:56.9126140Z copying torch/cuda/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-08-14T20:47:56.9135180Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends 2025-08-14T20:47:56.9135560Z copying torch/backends/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends 2025-08-14T20:47:56.9143890Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_decomp 2025-08-14T20:47:56.9144300Z copying torch/_decomp/decompositions_for_jvp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_decomp 2025-08-14T20:47:56.9152810Z copying torch/_decomp/decompositions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_decomp 2025-08-14T20:47:56.9192840Z copying torch/_decomp/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_decomp 2025-08-14T20:47:56.9207750Z copying torch/_decomp/decompositions_for_rng.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_decomp 2025-08-14T20:47:56.9216020Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/xpu 2025-08-14T20:47:56.9216530Z copying torch/xpu/streams.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/xpu 2025-08-14T20:47:56.9224570Z copying torch/xpu/memory.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/xpu 2025-08-14T20:47:56.9231970Z copying torch/xpu/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/xpu 2025-08-14T20:47:56.9246710Z copying torch/xpu/_gpu_trace.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/xpu 2025-08-14T20:47:56.9253800Z copying torch/xpu/random.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/xpu 2025-08-14T20:47:56.9260770Z copying torch/xpu/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/xpu 2025-08-14T20:47:56.9268810Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/masked 2025-08-14T20:47:56.9269160Z copying torch/masked/_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/masked 2025-08-14T20:47:56.9290870Z copying torch/masked/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/masked 2025-08-14T20:47:56.9297960Z copying torch/masked/_docs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/masked 2025-08-14T20:47:56.9321720Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-08-14T20:47:56.9328220Z copying torch/optim/lr_scheduler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-08-14T20:47:56.9356750Z copying torch/optim/rmsprop.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-08-14T20:47:56.9371190Z copying torch/optim/_adafactor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-08-14T20:47:56.9384960Z copying torch/optim/sparse_adam.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-08-14T20:47:56.9392930Z copying torch/optim/rprop.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-08-14T20:47:56.9407040Z copying torch/optim/sgd.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-08-14T20:47:56.9420860Z copying torch/optim/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-08-14T20:47:56.9427650Z copying torch/optim/adamax.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-08-14T20:47:56.9441790Z copying torch/optim/adagrad.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-08-14T20:47:56.9455330Z copying torch/optim/adamw.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-08-14T20:47:56.9463110Z copying torch/optim/swa_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-08-14T20:47:56.9478160Z copying torch/optim/lbfgs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-08-14T20:47:56.9491890Z copying torch/optim/radam.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-08-14T20:47:56.9505800Z copying torch/optim/adam.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-08-14T20:47:56.9520470Z copying torch/optim/optimizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-08-14T20:47:56.9541770Z copying torch/optim/nadam.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-08-14T20:47:56.9555850Z copying torch/optim/asgd.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-08-14T20:47:56.9563340Z copying torch/optim/_functional.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-08-14T20:47:56.9570640Z copying torch/optim/adadelta.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-08-14T20:47:56.9591770Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:56.9592210Z copying torch/_inductor/dtype_propagation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:56.9600400Z copying torch/_inductor/cudagraph_trees.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:56.9631430Z copying torch/_inductor/select_algorithm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:56.9663320Z copying torch/_inductor/ops_handler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:56.9678140Z copying torch/_inductor/metrics.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:56.9686020Z copying torch/_inductor/codecache.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:56.9687710Z copying torch/_inductor/mock_cache.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:56.9696060Z copying torch/_inductor/optimize_indexing.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:56.9703840Z copying torch/_inductor/freezing_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:56.9711000Z copying torch/_inductor/hooks.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:56.9718630Z copying torch/_inductor/cpp_builder.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:56.9742140Z copying torch/_inductor/cpu_vec_isa.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:56.9743010Z copying torch/_inductor/config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:56.9765600Z copying torch/_inductor/compile_fx_ext.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:56.9779790Z copying torch/_inductor/comms.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:56.9801000Z copying torch/_inductor/memory.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:56.9815680Z copying torch/_inductor/mkldnn_lowerings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:56.9838130Z copying torch/_inductor/async_compile.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:56.9852100Z copying torch/_inductor/pattern_matcher.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:56.9874390Z copying torch/_inductor/quantized_lowerings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:56.9881930Z copying torch/_inductor/triton_bundler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:56.9889480Z copying torch/_inductor/aoti_eager.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:56.9897180Z copying torch/_inductor/graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:56.9928270Z copying torch/_inductor/lowering.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:56.9930640Z copying torch/_inductor/jagged_lowerings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:56.9938350Z copying torch/_inductor/test_operators.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:56.9945810Z copying torch/_inductor/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:56.9953810Z copying torch/_inductor/compile_fx.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:56.9983780Z copying torch/_inductor/cudagraph_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:56.9992290Z copying torch/_inductor/sizevars.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:57.0007030Z copying torch/_inductor/ir.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:57.0009860Z copying torch/_inductor/analyze_preserves_zero_mask.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:57.0017720Z copying torch/_inductor/compile_fx_async.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:57.0025170Z copying torch/_inductor/index_propagation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:57.0033230Z copying torch/_inductor/constant_folding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:57.0040400Z copying torch/_inductor/inductor_prims.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:57.0047980Z copying torch/_inductor/virtualized.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:57.0055320Z copying torch/_inductor/test_case.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:57.0062860Z copying torch/_inductor/autotune_process.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:57.0063870Z copying torch/_inductor/standalone_compile.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:57.0071690Z copying torch/_inductor/await_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:57.0079090Z copying torch/_inductor/exc.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:57.0086530Z copying torch/_inductor/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:57.0088220Z copying torch/_inductor/debug.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:57.0102790Z copying torch/_inductor/kernel_inputs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:57.0110420Z copying torch/_inductor/__autotune_main__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:57.0117850Z copying torch/_inductor/fuzzer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:57.0133040Z copying torch/_inductor/comm_lowering.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:57.0141310Z copying torch/_inductor/decomposition.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:57.0155350Z copying torch/_inductor/fx_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:57.0162930Z copying torch/_inductor/compile_fx_subproc.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:57.0170180Z copying torch/_inductor/scheduler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:57.0172180Z copying torch/_inductor/remote_gemm_autotune_cache.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:57.0179500Z copying torch/_inductor/mkldnn_ir.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:57.0193320Z copying torch/_inductor/wrapper_benchmark.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:57.0201610Z copying torch/_inductor/choices.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:57.0215470Z copying torch/_inductor/remote_cache.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:57.0222410Z copying torch/_inductor/comm_analysis.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:57.0229860Z copying torch/_inductor/compiler_bisector.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:57.0245450Z copying torch/_inductor/extern_node_serializer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:57.0252230Z copying torch/_inductor/bounds.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:57.0259540Z copying torch/_inductor/template_registry.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:57.0266970Z copying torch/_inductor/output_code.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:57.0281550Z copying torch/_inductor/custom_graph_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:57.0289080Z copying torch/_inductor/freezing.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:57.0296580Z copying torch/_inductor/dependencies.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:57.0310970Z copying torch/_inductor/tiling_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:57.0325960Z copying torch/_inductor/loop_body.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:57.0339850Z copying torch/_inductor/subgraph_lowering.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:57.0347060Z copying torch/_inductor/template_heuristics.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:47:57.0374640Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-14T20:47:57.0375010Z copying torch/utils/_pytree.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-14T20:47:57.0397870Z copying torch/utils/_appending_byte_serializer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-14T20:47:57.0404960Z copying torch/utils/_foreach_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-14T20:47:57.0412200Z copying torch/utils/hooks.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-14T20:47:57.0419680Z copying torch/utils/_traceback.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-14T20:47:57.0427660Z copying torch/utils/_cpp_extension_versioner.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-14T20:47:57.0435550Z copying torch/utils/_mode_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-14T20:47:57.0442160Z copying torch/utils/checkpoint.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-14T20:47:57.0464290Z copying torch/utils/show_pickle.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-14T20:47:57.0471890Z copying torch/utils/deterministic.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-14T20:47:57.0479510Z copying torch/utils/file_baton.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-14T20:47:57.0486030Z copying torch/utils/backend_registration.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-14T20:47:57.0499670Z copying torch/utils/module_tracker.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-14T20:47:57.0506040Z copying torch/utils/model_zoo.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-14T20:47:57.0512780Z copying torch/utils/_zip.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-14T20:47:57.0519030Z copying torch/utils/collect_env.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-14T20:47:57.0534390Z copying torch/utils/throughput_benchmark.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-14T20:47:57.0541440Z copying torch/utils/dlpack.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-14T20:47:57.0548940Z copying torch/utils/_cxx_pytree.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-14T20:47:57.0565920Z copying torch/utils/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-14T20:47:57.0575630Z copying torch/utils/_functools.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-14T20:47:57.0582450Z copying torch/utils/_import_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-14T20:47:57.0589100Z copying torch/utils/_cpp_embed_headers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-14T20:47:57.0590020Z copying torch/utils/_dtype_abbrs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-14T20:47:57.0597790Z copying torch/utils/bundled_inputs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-14T20:47:57.0612130Z copying torch/utils/_helion.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-14T20:47:57.0619450Z copying torch/utils/mkldnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-14T20:47:57.0625770Z copying torch/utils/cpp_backtrace.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-14T20:47:57.0632670Z copying torch/utils/_contextlib.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-14T20:47:57.0639580Z copying torch/utils/_python_dispatch.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-14T20:47:57.0654470Z copying torch/utils/_exposed_in.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-14T20:47:57.0661550Z copying torch/utils/_filelock.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-14T20:47:57.0668340Z copying torch/utils/_thunk.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-14T20:47:57.0675270Z copying torch/utils/_config_module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-14T20:47:57.0690000Z copying torch/utils/_device.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-14T20:47:57.0697340Z copying torch/utils/flop_counter.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-14T20:47:57.0711130Z copying torch/utils/_typing_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-14T20:47:57.0718460Z copying torch/utils/_stats.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-14T20:47:57.0725130Z copying torch/utils/cpp_extension.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-14T20:47:57.0755920Z copying torch/utils/_backport_slots.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-14T20:47:57.0763230Z copying torch/utils/_get_clean_triton.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-14T20:47:57.0770200Z copying torch/utils/_triton.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-14T20:47:57.0777090Z copying torch/utils/_content_store.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-14T20:47:57.0784240Z copying torch/utils/_ordered_set.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-14T20:47:57.0791420Z copying torch/utils/weak.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-14T20:47:57.0798320Z copying torch/utils/mobile_optimizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-14T20:47:57.0806610Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/contrib 2025-08-14T20:47:57.0806980Z copying torch/contrib/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/contrib 2025-08-14T20:47:57.0807850Z copying torch/contrib/_tensorboard_vis.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/contrib 2025-08-14T20:47:57.0817530Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-08-14T20:47:57.0823960Z copying torch/quantization/observer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-08-14T20:47:57.0831260Z copying torch/quantization/fuse_modules.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-08-14T20:47:57.0838190Z copying torch/quantization/quantization_mappings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-08-14T20:47:57.0845210Z copying torch/quantization/quantize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-08-14T20:47:57.0852620Z copying torch/quantization/_numeric_suite.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-08-14T20:47:57.0859680Z copying torch/quantization/fake_quantize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-08-14T20:47:57.0866470Z copying torch/quantization/qconfig.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-08-14T20:47:57.0873540Z copying torch/quantization/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-08-14T20:47:57.0880710Z copying torch/quantization/_quantized_conversions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-08-14T20:47:57.0888240Z copying torch/quantization/stubs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-08-14T20:47:57.0895540Z copying torch/quantization/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-08-14T20:47:57.0902000Z copying torch/quantization/fuser_method_mappings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-08-14T20:47:57.0908820Z copying torch/quantization/quantize_jit.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-08-14T20:47:57.0915720Z copying torch/quantization/quant_type.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-08-14T20:47:57.0922660Z copying torch/quantization/quantize_fx.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-08-14T20:47:57.0929220Z copying torch/quantization/_numeric_suite_fx.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-08-14T20:47:57.0936900Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/special 2025-08-14T20:47:57.0937260Z copying torch/special/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/special 2025-08-14T20:47:57.0953530Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing 2025-08-14T20:47:57.0953900Z copying torch/testing/_creation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing 2025-08-14T20:47:57.0961800Z copying torch/testing/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing 2025-08-14T20:47:57.0969620Z copying torch/testing/_comparison.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing 2025-08-14T20:47:57.0991850Z copying torch/testing/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing 2025-08-14T20:47:57.1001510Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-08-14T20:47:57.1001900Z copying torch/_library/triton.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-08-14T20:47:57.1010160Z copying torch/_library/fake_profile.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-08-14T20:47:57.1017750Z copying torch/_library/infer_schema.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-08-14T20:47:57.1025330Z copying torch/_library/simple_registry.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-08-14T20:47:57.1033220Z copying torch/_library/custom_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-08-14T20:47:57.1047590Z copying torch/_library/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-08-14T20:47:57.1055530Z copying torch/_library/fake_impl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-08-14T20:47:57.1063360Z copying torch/_library/autograd.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-08-14T20:47:57.1071330Z copying torch/_library/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-08-14T20:47:57.1086060Z copying torch/_library/fake_class_registry.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-08-14T20:47:57.1094390Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/accelerator 2025-08-14T20:47:57.1094800Z copying torch/accelerator/memory.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/accelerator 2025-08-14T20:47:57.1101980Z copying torch/accelerator/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/accelerator 2025-08-14T20:47:57.1110260Z copying torch/accelerator/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/accelerator 2025-08-14T20:47:57.1118440Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/amp 2025-08-14T20:47:57.1118800Z copying torch/amp/autocast_mode.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/amp 2025-08-14T20:47:57.1133840Z copying torch/amp/grad_scaler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/amp 2025-08-14T20:47:57.1148500Z copying torch/amp/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/amp 2025-08-14T20:47:57.1159210Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-08-14T20:47:57.1159550Z copying torch/jit/_ir_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-08-14T20:47:57.1167640Z copying torch/jit/_monkeytype_config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-08-14T20:47:57.1175540Z copying torch/jit/_decompositions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-08-14T20:47:57.1183380Z copying torch/jit/_recursive.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-08-14T20:47:57.1198270Z copying torch/jit/_logging.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-08-14T20:47:57.1205110Z copying torch/jit/_serialization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-08-14T20:47:57.1212710Z copying torch/jit/quantized.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-08-14T20:47:57.1219970Z copying torch/jit/_script.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-08-14T20:47:57.1241310Z copying torch/jit/_shape_functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-08-14T20:47:57.1256290Z copying torch/jit/_decomposition_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-08-14T20:47:57.1264030Z copying torch/jit/_freeze.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-08-14T20:47:57.1271560Z copying torch/jit/_pickle.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-08-14T20:47:57.1278620Z copying torch/jit/_check.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-08-14T20:47:57.1285890Z copying torch/jit/unsupported_tensor_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-08-14T20:47:57.1293550Z copying torch/jit/frontend.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-08-14T20:47:57.1308570Z copying torch/jit/supported_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-08-14T20:47:57.1316690Z copying torch/jit/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-08-14T20:47:57.1324100Z copying torch/jit/_fuser.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-08-14T20:47:57.1331610Z copying torch/jit/_builtins.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-08-14T20:47:57.1339180Z copying torch/jit/_dataclass_impls.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-08-14T20:47:57.1345910Z copying torch/jit/_trace.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-08-14T20:47:57.1367080Z copying torch/jit/generate_bytecode.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-08-14T20:47:57.1375000Z copying torch/jit/_state.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-08-14T20:47:57.1382360Z copying torch/jit/_async.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-08-14T20:47:57.1389570Z copying torch/jit/annotations.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-08-14T20:47:57.1403140Z copying torch/jit/_await.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-08-14T20:47:57.1415050Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-14T20:47:57.1415420Z copying torch/_dynamo/package.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-14T20:47:57.1430460Z copying torch/_dynamo/cache_size.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-14T20:47:57.1438290Z copying torch/_dynamo/callback.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-14T20:47:57.1445720Z copying torch/_dynamo/comptime.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-14T20:47:57.1453280Z copying torch/_dynamo/logging.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-14T20:47:57.1460340Z copying torch/_dynamo/_trace_wrapped_higher_order_op.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-14T20:47:57.1467970Z copying torch/_dynamo/hooks.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-14T20:47:57.1475390Z copying torch/_dynamo/precompile_context.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-14T20:47:57.1482900Z copying torch/_dynamo/graph_break_hints.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-14T20:47:57.1496210Z copying torch/_dynamo/config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-14T20:47:57.1505260Z copying torch/_dynamo/guards.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-14T20:47:57.1507620Z copying torch/_dynamo/test_minifier_common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-14T20:47:57.1515860Z copying torch/_dynamo/create_parameter_op.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-14T20:47:57.1523150Z copying torch/_dynamo/graph_region_tracker.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-14T20:47:57.1524350Z copying torch/_dynamo/device_interface.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-14T20:47:57.1537880Z copying torch/_dynamo/graph_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-14T20:47:57.1545370Z copying torch/_dynamo/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-14T20:47:57.1552730Z copying torch/_dynamo/mutation_guard.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-14T20:47:57.1559350Z copying torch/_dynamo/types.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-14T20:47:57.1566870Z copying torch/_dynamo/metrics_context.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-14T20:47:57.1574930Z copying torch/_dynamo/bytecode_analysis.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-14T20:47:57.1582810Z copying torch/_dynamo/tensor_version_op.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-14T20:47:57.1590060Z copying torch/_dynamo/external_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-14T20:47:57.1597610Z copying torch/_dynamo/test_case.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-14T20:47:57.1604490Z copying torch/_dynamo/distributed.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-14T20:47:57.1612220Z copying torch/_dynamo/resume_execution.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-14T20:47:57.1627110Z copying torch/_dynamo/output_graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-14T20:47:57.1628740Z copying torch/_dynamo/compiled_autograd.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-14T20:47:57.1651040Z copying torch/_dynamo/exc.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-14T20:47:57.1665940Z copying torch/_dynamo/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-14T20:47:57.1668200Z copying torch/_dynamo/test_dont_skip_tracing_functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-14T20:47:57.1675350Z copying torch/_dynamo/replay_record.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-14T20:47:57.1682160Z copying torch/_dynamo/side_effects.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-14T20:47:57.1703740Z copying torch/_dynamo/trace_rules.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-14T20:47:57.1741400Z copying torch/_dynamo/bytecode_transformation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-14T20:47:57.1764150Z copying torch/_dynamo/convert_frame.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-14T20:47:57.1765270Z copying torch/_dynamo/funcname_cache.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-14T20:47:57.1772540Z copying torch/_dynamo/testing.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-14T20:47:57.1786160Z copying torch/_dynamo/pgo.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-14T20:47:57.1800840Z copying torch/_dynamo/profiler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-14T20:47:57.1808390Z copying torch/_dynamo/symbolic_convert.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-14T20:47:57.1846350Z copying torch/_dynamo/codegen.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-14T20:47:57.1860990Z copying torch/_dynamo/source.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-14T20:47:57.1862220Z copying torch/_dynamo/eval_frame.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-14T20:47:57.1892350Z copying torch/_dynamo/code_context.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-14T20:47:57.1900210Z copying torch/_dynamo/graph_deduplication.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-14T20:47:57.1913390Z copying torch/_dynamo/current_scope_id.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-14T20:47:57.1920330Z copying torch/_dynamo/debug_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-14T20:47:57.1934980Z copying torch/_dynamo/decorators.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-14T20:47:57.1951550Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-08-14T20:47:57.1951900Z copying torch/_lazy/metrics.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-08-14T20:47:57.1959230Z copying torch/_lazy/config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-08-14T20:47:57.1966010Z copying torch/_lazy/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-08-14T20:47:57.1973330Z copying torch/_lazy/tensor_factory_functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-08-14T20:47:57.1980430Z copying torch/_lazy/debug.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-08-14T20:47:57.1986610Z copying torch/_lazy/extract_compiled_graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-08-14T20:47:57.1993980Z copying torch/_lazy/ir_cache.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-08-14T20:47:57.2000810Z copying torch/_lazy/ts_backend.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-08-14T20:47:57.2007700Z copying torch/_lazy/computation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-08-14T20:47:57.2014760Z copying torch/_lazy/closure.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-08-14T20:47:57.2021930Z copying torch/_lazy/device_context.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-08-14T20:47:57.2029660Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao 2025-08-14T20:47:57.2030070Z copying torch/ao/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao 2025-08-14T20:47:57.2037410Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/mtia 2025-08-14T20:47:57.2037760Z copying torch/mtia/memory.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/mtia 2025-08-14T20:47:57.2045190Z copying torch/mtia/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/mtia 2025-08-14T20:47:57.2052770Z copying torch/mtia/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/mtia 2025-08-14T20:47:57.2061280Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_refs 2025-08-14T20:47:57.2061650Z copying torch/_refs/_conversions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_refs 2025-08-14T20:47:57.2068890Z copying torch/_refs/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_refs 2025-08-14T20:47:57.2108910Z copying torch/_refs/fft.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_refs 2025-08-14T20:47:57.2124610Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fft 2025-08-14T20:47:57.2124950Z copying torch/fft/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fft 2025-08-14T20:47:57.2146680Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/profiler 2025-08-14T20:47:57.2147100Z copying torch/profiler/_memory_profiler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/profiler 2025-08-14T20:47:57.2162190Z copying torch/profiler/itt.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/profiler 2025-08-14T20:47:57.2170950Z copying torch/profiler/_pattern_matcher.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/profiler 2025-08-14T20:47:57.2185870Z copying torch/profiler/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/profiler 2025-08-14T20:47:57.2193380Z copying torch/profiler/profiler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/profiler 2025-08-14T20:47:57.2208140Z copying torch/profiler/python_tracer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/profiler 2025-08-14T20:47:57.2216260Z copying torch/profiler/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/profiler 2025-08-14T20:47:57.2225090Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/sparse 2025-08-14T20:47:57.2225490Z copying torch/sparse/_semi_structured_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/sparse 2025-08-14T20:47:57.2232660Z copying torch/sparse/_semi_structured_conversions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/sparse 2025-08-14T20:47:57.2240410Z copying torch/sparse/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/sparse 2025-08-14T20:47:57.2255580Z copying torch/sparse/semi_structured.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/sparse 2025-08-14T20:47:57.2270060Z copying torch/sparse/_triton_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/sparse 2025-08-14T20:47:57.2312030Z copying torch/sparse/_triton_ops_meta.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/sparse 2025-08-14T20:47:57.2370390Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_awaits 2025-08-14T20:47:57.2370830Z copying torch/_awaits/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_awaits 2025-08-14T20:47:57.2381630Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-08-14T20:47:57.2382000Z copying torch/export/_safeguard.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-08-14T20:47:57.2389470Z copying torch/export/exported_program.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-08-14T20:47:57.2410540Z copying torch/export/unflatten.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-08-14T20:47:57.2433890Z copying torch/export/custom_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-08-14T20:47:57.2441720Z copying torch/export/custom_obj.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-08-14T20:47:57.2448740Z copying torch/export/_remove_effect_tokens_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-08-14T20:47:57.2455490Z copying torch/export/_remove_auto_functionalized_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-08-14T20:47:57.2462730Z copying torch/export/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-08-14T20:47:57.2476840Z copying torch/export/_unlift.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-08-14T20:47:57.2490500Z copying torch/export/_trace.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-08-14T20:47:57.2492090Z copying torch/export/graph_signature.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-08-14T20:47:57.2506580Z copying torch/export/_wrapper_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-08-14T20:47:57.2513650Z copying torch/export/decomp_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-08-14T20:47:57.2520840Z copying torch/export/_swap.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-08-14T20:47:57.2534940Z copying torch/export/_draft_export.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-08-14T20:47:57.2547940Z copying torch/export/dynamic_shapes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-08-14T20:47:57.2569200Z copying torch/export/_tree_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-08-14T20:47:57.2577240Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nested 2025-08-14T20:47:57.2577640Z copying torch/nested/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nested 2025-08-14T20:47:57.2591970Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_strobelight 2025-08-14T20:47:57.2592420Z copying torch/_strobelight/cli_function_profiler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_strobelight 2025-08-14T20:47:57.2600060Z copying torch/_strobelight/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_strobelight 2025-08-14T20:47:57.2600710Z copying torch/_strobelight/compile_time_profiler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_strobelight 2025-08-14T20:47:57.2608700Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/numa 2025-08-14T20:47:57.2609050Z copying torch/numa/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/numa 2025-08-14T20:47:57.2609890Z copying torch/numa/binding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/numa 2025-08-14T20:47:57.2624650Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/compiler 2025-08-14T20:47:57.2625030Z copying torch/compiler/_cache.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/compiler 2025-08-14T20:47:57.2632850Z copying torch/compiler/config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/compiler 2025-08-14T20:47:57.2639760Z copying torch/compiler/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/compiler 2025-08-14T20:47:57.2655130Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/signal 2025-08-14T20:47:57.2655660Z copying torch/signal/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/signal 2025-08-14T20:47:57.2667960Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-14T20:47:57.2680680Z copying torch/distributions/inverse_gamma.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-14T20:47:57.2688160Z copying torch/distributions/laplace.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-14T20:47:57.2695120Z copying torch/distributions/relaxed_bernoulli.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-14T20:47:57.2702600Z copying torch/distributions/categorical.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-14T20:47:57.2709580Z copying torch/distributions/transforms.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-14T20:47:57.2725510Z copying torch/distributions/dirichlet.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-14T20:47:57.2733120Z copying torch/distributions/log_normal.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-14T20:47:57.2740540Z copying torch/distributions/transformed_distribution.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-14T20:47:57.2748190Z copying torch/distributions/geometric.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-14T20:47:57.2755840Z copying torch/distributions/generalized_pareto.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-14T20:47:57.2762950Z copying torch/distributions/weibull.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-14T20:47:57.2770260Z copying torch/distributions/studentT.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-14T20:47:57.2777420Z copying torch/distributions/multivariate_normal.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-14T20:47:57.2784930Z copying torch/distributions/normal.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-14T20:47:57.2791980Z copying torch/distributions/poisson.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-14T20:47:57.2799200Z copying torch/distributions/beta.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-14T20:47:57.2806060Z copying torch/distributions/kumaraswamy.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-14T20:47:57.2813430Z copying torch/distributions/half_normal.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-14T20:47:57.2820240Z copying torch/distributions/relaxed_categorical.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-14T20:47:57.2828210Z copying torch/distributions/lowrank_multivariate_normal.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-14T20:47:57.2835520Z copying torch/distributions/half_cauchy.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-14T20:47:57.2843060Z copying torch/distributions/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-14T20:47:57.2850540Z copying torch/distributions/lkj_cholesky.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-14T20:47:57.2858030Z copying torch/distributions/independent.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-14T20:47:57.2865760Z copying torch/distributions/multinomial.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-14T20:47:57.2873160Z copying torch/distributions/exponential.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-14T20:47:57.2879960Z copying torch/distributions/pareto.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-14T20:47:57.2888170Z copying torch/distributions/negative_binomial.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-14T20:47:57.2895490Z copying torch/distributions/cauchy.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-14T20:47:57.2902420Z copying torch/distributions/von_mises.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-14T20:47:57.2909360Z copying torch/distributions/distribution.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-14T20:47:57.2917220Z copying torch/distributions/gumbel.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-14T20:47:57.2925120Z copying torch/distributions/constraint_registry.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-14T20:47:57.2932230Z copying torch/distributions/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-14T20:47:57.2939480Z copying torch/distributions/kl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-14T20:47:57.2954450Z copying torch/distributions/mixture_same_family.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-14T20:47:57.2962940Z copying torch/distributions/continuous_bernoulli.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-14T20:47:57.2970680Z copying torch/distributions/fishersnedecor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-14T20:47:57.2978510Z copying torch/distributions/constraints.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-14T20:47:57.2994270Z copying torch/distributions/uniform.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-14T20:47:57.3001700Z copying torch/distributions/bernoulli.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-14T20:47:57.3009260Z copying torch/distributions/exp_family.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-14T20:47:57.3015980Z copying torch/distributions/logistic_normal.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-14T20:47:57.3023420Z copying torch/distributions/one_hot_categorical.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-14T20:47:57.3029980Z copying torch/distributions/wishart.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-14T20:47:57.3037300Z copying torch/distributions/gamma.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-14T20:47:57.3044830Z copying torch/distributions/chi2.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-14T20:47:57.3051800Z copying torch/distributions/binomial.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-14T20:47:57.3061370Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-08-14T20:47:57.3061820Z copying torch/package/package_exporter.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-08-14T20:47:57.3083880Z copying torch/package/file_structure_representation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-08-14T20:47:57.3091290Z copying torch/package/_mock.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-08-14T20:47:57.3098280Z copying torch/package/importer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-08-14T20:47:57.3105510Z copying torch/package/_stdlib.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-08-14T20:47:57.3112560Z copying torch/package/_mangling.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-08-14T20:47:57.3119320Z copying torch/package/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-08-14T20:47:57.3126000Z copying torch/package/package_importer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-08-14T20:47:57.3140860Z copying torch/package/_package_unpickler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-08-14T20:47:57.3148420Z copying torch/package/glob_group.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-08-14T20:47:57.3155200Z copying torch/package/find_file_dependencies.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-08-14T20:47:57.3161710Z copying torch/package/_package_pickler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-08-14T20:47:57.3168810Z copying torch/package/_importlib.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-08-14T20:47:57.3176310Z copying torch/package/_directory_reader.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-08-14T20:47:57.3184510Z copying torch/package/_digraph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-08-14T20:47:57.3192420Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/func 2025-08-14T20:47:57.3192770Z copying torch/func/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/func 2025-08-14T20:47:57.3201010Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_activation_checkpointing 2025-08-14T20:47:57.3201640Z copying torch/_functorch/_activation_checkpointing/graph_info_provider.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_activation_checkpointing 2025-08-14T20:47:57.3209460Z copying torch/_functorch/_activation_checkpointing/knapsack.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_activation_checkpointing 2025-08-14T20:47:57.3217310Z copying torch/_functorch/_activation_checkpointing/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_activation_checkpointing 2025-08-14T20:47:57.3224730Z copying torch/_functorch/_activation_checkpointing/ac_logging_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_activation_checkpointing 2025-08-14T20:47:57.3232750Z copying torch/_functorch/_activation_checkpointing/knapsack_evaluator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_activation_checkpointing 2025-08-14T20:47:57.3242260Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-08-14T20:47:57.3242830Z copying torch/_functorch/_aot_autograd/input_output_analysis.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-08-14T20:47:57.3257090Z copying torch/_functorch/_aot_autograd/runtime_wrappers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-08-14T20:47:57.3287420Z copying torch/_functorch/_aot_autograd/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-08-14T20:47:57.3295100Z copying torch/_functorch/_aot_autograd/functional_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-08-14T20:47:57.3310350Z copying torch/_functorch/_aot_autograd/autograd_cache.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-08-14T20:47:57.3331750Z copying torch/_functorch/_aot_autograd/descriptors.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-08-14T20:47:57.3347260Z copying torch/_functorch/_aot_autograd/graph_capture_wrappers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-08-14T20:47:57.3369020Z copying torch/_functorch/_aot_autograd/schemas.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-08-14T20:47:57.3390790Z copying torch/_functorch/_aot_autograd/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-08-14T20:47:57.3405140Z copying torch/_functorch/_aot_autograd/fx_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-08-14T20:47:57.3412880Z copying torch/_functorch/_aot_autograd/collect_metadata_analysis.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-08-14T20:47:57.3427440Z copying torch/_functorch/_aot_autograd/frontend_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-08-14T20:47:57.3435250Z copying torch/_functorch/_aot_autograd/graph_capture.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-08-14T20:47:57.3449030Z copying torch/_functorch/_aot_autograd/graph_compile.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-08-14T20:47:57.3472160Z copying torch/_functorch/_aot_autograd/subclass_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-08-14T20:47:57.3487880Z copying torch/_functorch/_aot_autograd/logging_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-08-14T20:47:57.3495010Z copying torch/_functorch/_aot_autograd/subclass_parametrization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-08-14T20:47:57.3502990Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/testing 2025-08-14T20:47:57.3503410Z copying torch/_numpy/testing/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/testing 2025-08-14T20:47:57.3510790Z copying torch/_numpy/testing/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/testing 2025-08-14T20:47:57.3533850Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_export/pass_infra 2025-08-14T20:47:57.3534300Z copying torch/_export/pass_infra/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/pass_infra 2025-08-14T20:47:57.3535140Z copying torch/_export/pass_infra/proxy_value.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/pass_infra 2025-08-14T20:47:57.3543210Z copying torch/_export/pass_infra/node_metadata.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/pass_infra 2025-08-14T20:47:57.3552320Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-08-14T20:47:57.3552790Z copying torch/_export/passes/insert_custom_op_guards.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-08-14T20:47:57.3559840Z copying torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-08-14T20:47:57.3574130Z 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-08-14T20:47:57.3581640Z copying torch/_export/passes/collect_tracepoints_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-08-14T20:47:57.3589030Z copying torch/_export/passes/replace_with_hop_pass_util.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-08-14T20:47:57.3596180Z copying torch/_export/passes/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-08-14T20:47:57.3602860Z copying torch/_export/passes/_node_metadata_hook.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-08-14T20:47:57.3609540Z copying torch/_export/passes/lift_constants_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-08-14T20:47:57.3623620Z copying torch/_export/passes/constant_folding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-08-14T20:47:57.3630750Z copying torch/_export/passes/add_runtime_assertions_for_constraints_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-08-14T20:47:57.3638420Z copying torch/_export/passes/replace_autocast_with_hop_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-08-14T20:47:57.3645460Z copying torch/_export/passes/functionalize_side_effectful_ops_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-08-14T20:47:57.3652310Z copying torch/_export/passes/replace_set_grad_with_hop_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-08-14T20:47:57.3659210Z copying torch/_export/passes/remove_runtime_assertions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-08-14T20:47:57.3667180Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db 2025-08-14T20:47:57.3667580Z copying torch/_export/db/logging.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db 2025-08-14T20:47:57.3674890Z copying torch/_export/db/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db 2025-08-14T20:47:57.3682330Z copying torch/_export/db/gen_example.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db 2025-08-14T20:47:57.3689660Z copying torch/_export/db/case.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db 2025-08-14T20:47:57.3698830Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde 2025-08-14T20:47:57.3699330Z copying torch/_export/serde/serialize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde 2025-08-14T20:47:57.3700870Z copying torch/_export/serde/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde 2025-08-14T20:47:57.3701730Z copying torch/_export/serde/schema_check.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde 2025-08-14T20:47:57.3717510Z copying torch/_export/serde/dynamic_shapes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde 2025-08-14T20:47:57.3724640Z copying torch/_export/serde/union.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde 2025-08-14T20:47:57.3732410Z copying torch/_export/serde/schema.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde 2025-08-14T20:47:57.3743870Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-14T20:47:57.3744350Z copying torch/_export/db/examples/list_unpack.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-14T20:47:57.3759010Z copying torch/_export/db/examples/specialized_attribute.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-14T20:47:57.3766440Z copying torch/_export/db/examples/static_for_loop.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-14T20:47:57.3773450Z copying torch/_export/db/examples/cond_closed_over_variable.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-14T20:47:57.3780370Z copying torch/_export/db/examples/fn_with_kwargs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-14T20:47:57.3787360Z copying torch/_export/db/examples/constrain_as_value_example.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-14T20:47:57.3794570Z copying torch/_export/db/examples/dynamic_shape_slicing.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-14T20:47:57.3801260Z copying torch/_export/db/examples/cond_branch_nonlocal_variables.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-14T20:47:57.3808750Z copying torch/_export/db/examples/autograd_function.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-14T20:47:57.3815590Z copying torch/_export/db/examples/type_reflection_method.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-14T20:47:57.3822300Z copying torch/_export/db/examples/cond_operands.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-14T20:47:57.3829480Z copying torch/_export/db/examples/decorator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-14T20:47:57.3843030Z copying torch/_export/db/examples/dynamic_shape_view.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-14T20:47:57.3850860Z copying torch/_export/db/examples/dynamic_shape_map.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-14T20:47:57.3858680Z copying torch/_export/db/examples/nested_function.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-14T20:47:57.3866740Z copying torch/_export/db/examples/dynamic_shape_constructor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-14T20:47:57.3873690Z copying torch/_export/db/examples/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-14T20:47:57.3880530Z copying torch/_export/db/examples/dynamic_shape_if_guard.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-14T20:47:57.3887980Z copying torch/_export/db/examples/assume_constant_result.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-14T20:47:57.3894290Z copying torch/_export/db/examples/cond_branch_class_method.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-14T20:47:57.3901480Z copying torch/_export/db/examples/class_method.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-14T20:47:57.3908540Z copying torch/_export/db/examples/pytree_flatten.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-14T20:47:57.3915460Z copying torch/_export/db/examples/scalar_output.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-14T20:47:57.3923140Z copying torch/_export/db/examples/cond_predicate.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-14T20:47:57.3929480Z copying torch/_export/db/examples/dynamic_shape_assert.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-14T20:47:57.3937180Z copying torch/_export/db/examples/unsupported_operator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-14T20:47:57.3944430Z copying torch/_export/db/examples/tensor_setattr.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-14T20:47:57.3950890Z copying torch/_export/db/examples/optional_input.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-14T20:47:57.3958240Z copying torch/_export/db/examples/constrain_as_size_example.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-14T20:47:57.3965110Z copying torch/_export/db/examples/static_if.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-14T20:47:57.3972280Z copying torch/_export/db/examples/dictionary.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-14T20:47:57.3979690Z copying torch/_export/db/examples/list_contains.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-14T20:47:57.3986910Z copying torch/_export/db/examples/dynamic_shape_round.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-14T20:47:57.3994590Z copying torch/_export/db/examples/user_input_mutation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-14T20:47:57.4002250Z copying torch/_export/db/examples/null_context_manager.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-14T20:47:57.4008950Z copying torch/_export/db/examples/cond_branch_nested_function.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-14T20:47:57.4016100Z copying torch/_export/db/examples/model_attr_mutation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-14T20:47:57.4023830Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention 2025-08-14T20:47:57.4024240Z copying torch/nn/attention/bias.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention 2025-08-14T20:47:57.4032600Z copying torch/nn/attention/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention 2025-08-14T20:47:57.4033510Z copying torch/nn/attention/flex_attention.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention 2025-08-14T20:47:57.4064110Z copying torch/nn/attention/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention 2025-08-14T20:47:57.4072990Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel 2025-08-14T20:47:57.4073430Z copying torch/nn/parallel/parallel_apply.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel 2025-08-14T20:47:57.4081530Z copying torch/nn/parallel/comm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel 2025-08-14T20:47:57.4089620Z copying torch/nn/parallel/scatter_gather.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel 2025-08-14T20:47:57.4096880Z copying torch/nn/parallel/replicate.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel 2025-08-14T20:47:57.4104670Z copying torch/nn/parallel/_functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel 2025-08-14T20:47:57.4112210Z copying torch/nn/parallel/data_parallel.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel 2025-08-14T20:47:57.4119970Z copying torch/nn/parallel/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel 2025-08-14T20:47:57.4127450Z copying torch/nn/parallel/distributed.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel 2025-08-14T20:47:57.4157890Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat 2025-08-14T20:47:57.4158240Z copying torch/nn/qat/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat 2025-08-14T20:47:57.4166630Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized 2025-08-14T20:47:57.4167050Z copying torch/nn/quantized/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized 2025-08-14T20:47:57.4174450Z copying torch/nn/quantized/functional.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized 2025-08-14T20:47:57.4181760Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/backends 2025-08-14T20:47:57.4182150Z copying torch/nn/backends/thnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/backends 2025-08-14T20:47:57.4189710Z copying torch/nn/backends/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/backends 2025-08-14T20:47:57.4192660Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-08-14T20:47:57.4199400Z copying torch/nn/utils/_named_member_accessor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-08-14T20:47:57.4207010Z copying torch/nn/utils/spectral_norm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-08-14T20:47:57.4214420Z copying torch/nn/utils/convert_parameters.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-08-14T20:47:57.4221840Z copying torch/nn/utils/stateless.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-08-14T20:47:57.4229930Z copying torch/nn/utils/parametrize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-08-14T20:47:57.4244150Z copying torch/nn/utils/memory_format.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-08-14T20:47:57.4251940Z copying torch/nn/utils/_per_sample_grad.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-08-14T20:47:57.4259700Z copying torch/nn/utils/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-08-14T20:47:57.4266830Z copying torch/nn/utils/weight_norm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-08-14T20:47:57.4274280Z copying torch/nn/utils/fusion.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-08-14T20:47:57.4282310Z copying torch/nn/utils/prune.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-08-14T20:47:57.4303680Z copying torch/nn/utils/parametrizations.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-08-14T20:47:57.4318330Z copying torch/nn/utils/init.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-08-14T20:47:57.4325570Z copying torch/nn/utils/_deprecation_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-08-14T20:47:57.4332400Z copying torch/nn/utils/rnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-08-14T20:47:57.4346190Z copying torch/nn/utils/clip_grad.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-08-14T20:47:57.4354460Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantizable 2025-08-14T20:47:57.4354900Z copying torch/nn/quantizable/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantizable 2025-08-14T20:47:57.4362620Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic 2025-08-14T20:47:57.4363030Z copying torch/nn/intrinsic/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic 2025-08-14T20:47:57.4373310Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-08-14T20:47:57.4373760Z copying torch/nn/modules/upsampling.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-08-14T20:47:57.4387500Z copying torch/nn/modules/channelshuffle.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-08-14T20:47:57.4395510Z copying torch/nn/modules/instancenorm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-08-14T20:47:57.4410440Z copying torch/nn/modules/flatten.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-08-14T20:47:57.4418290Z copying torch/nn/modules/batchnorm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-08-14T20:47:57.4432750Z copying torch/nn/modules/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-08-14T20:47:57.4440400Z copying torch/nn/modules/_functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-08-14T20:47:57.4449170Z copying torch/nn/modules/pooling.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-08-14T20:47:57.4471620Z copying torch/nn/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-08-14T20:47:57.4478700Z copying torch/nn/modules/distance.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-08-14T20:47:57.4485350Z copying torch/nn/modules/container.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-08-14T20:47:57.4499120Z copying torch/nn/modules/pixelshuffle.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-08-14T20:47:57.4506650Z copying torch/nn/modules/adaptive.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-08-14T20:47:57.4514110Z copying torch/nn/modules/loss.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-08-14T20:47:57.4515320Z copying torch/nn/modules/activation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-08-14T20:47:57.4539020Z copying torch/nn/modules/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-08-14T20:47:57.4547090Z copying torch/nn/modules/transformer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-08-14T20:47:57.4568350Z copying torch/nn/modules/sparse.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-08-14T20:47:57.4582050Z copying torch/nn/modules/module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-08-14T20:47:57.4612870Z copying torch/nn/modules/dropout.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-08-14T20:47:57.4620260Z copying torch/nn/modules/conv.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-08-14T20:47:57.4642430Z copying torch/nn/modules/lazy.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-08-14T20:47:57.4650420Z copying torch/nn/modules/normalization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-08-14T20:47:57.4658060Z copying torch/nn/modules/rnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-08-14T20:47:57.4679630Z copying torch/nn/modules/padding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-08-14T20:47:57.4694410Z copying torch/nn/modules/fold.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-08-14T20:47:57.4703140Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention/experimental 2025-08-14T20:47:57.4703660Z copying torch/nn/attention/experimental/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention/experimental 2025-08-14T20:47:57.4710850Z copying torch/nn/attention/experimental/_paged_attention.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention/experimental 2025-08-14T20:47:57.4718330Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/dynamic 2025-08-14T20:47:57.4718750Z copying torch/nn/qat/dynamic/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/dynamic 2025-08-14T20:47:57.4726690Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/modules 2025-08-14T20:47:57.4727120Z copying torch/nn/qat/modules/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/modules 2025-08-14T20:47:57.4734780Z copying torch/nn/qat/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/modules 2025-08-14T20:47:57.4741380Z copying torch/nn/qat/modules/conv.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/modules 2025-08-14T20:47:57.4749150Z copying torch/nn/qat/modules/embedding_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/modules 2025-08-14T20:47:57.4758730Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/dynamic/modules 2025-08-14T20:47:57.4759230Z copying torch/nn/qat/dynamic/modules/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/dynamic/modules 2025-08-14T20:47:57.4765510Z copying torch/nn/qat/dynamic/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/dynamic/modules 2025-08-14T20:47:57.4773630Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference 2025-08-14T20:47:57.4774120Z copying torch/nn/quantized/_reference/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference 2025-08-14T20:47:57.4781220Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/dynamic 2025-08-14T20:47:57.4781690Z copying torch/nn/quantized/dynamic/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/dynamic 2025-08-14T20:47:57.4790370Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-08-14T20:47:57.4790850Z copying torch/nn/quantized/modules/batchnorm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-08-14T20:47:57.4798600Z copying torch/nn/quantized/modules/functional_modules.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-08-14T20:47:57.4805490Z copying torch/nn/quantized/modules/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-08-14T20:47:57.4813050Z copying torch/nn/quantized/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-08-14T20:47:57.4820110Z copying torch/nn/quantized/modules/activation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-08-14T20:47:57.4827060Z copying torch/nn/quantized/modules/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-08-14T20:47:57.4833580Z copying torch/nn/quantized/modules/dropout.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-08-14T20:47:57.4840530Z copying torch/nn/quantized/modules/conv.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-08-14T20:47:57.4848300Z copying torch/nn/quantized/modules/normalization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-08-14T20:47:57.4855470Z copying torch/nn/quantized/modules/rnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-08-14T20:47:57.4862620Z copying torch/nn/quantized/modules/embedding_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-08-14T20:47:57.4871100Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference/modules 2025-08-14T20:47:57.4871650Z copying torch/nn/quantized/_reference/modules/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference/modules 2025-08-14T20:47:57.4878710Z copying torch/nn/quantized/_reference/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference/modules 2025-08-14T20:47:57.4886370Z copying torch/nn/quantized/_reference/modules/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference/modules 2025-08-14T20:47:57.4893930Z copying torch/nn/quantized/_reference/modules/sparse.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference/modules 2025-08-14T20:47:57.4901330Z copying torch/nn/quantized/_reference/modules/conv.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference/modules 2025-08-14T20:47:57.4908690Z copying torch/nn/quantized/_reference/modules/rnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference/modules 2025-08-14T20:47:57.4916930Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/dynamic/modules 2025-08-14T20:47:57.4917550Z copying torch/nn/quantized/dynamic/modules/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/dynamic/modules 2025-08-14T20:47:57.4924410Z copying torch/nn/quantized/dynamic/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/dynamic/modules 2025-08-14T20:47:57.4931370Z copying torch/nn/quantized/dynamic/modules/conv.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/dynamic/modules 2025-08-14T20:47:57.4938320Z copying torch/nn/quantized/dynamic/modules/rnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/dynamic/modules 2025-08-14T20:47:57.4946510Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights 2025-08-14T20:47:57.4947070Z 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-08-14T20:47:57.4954230Z 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-08-14T20:47:57.4961120Z copying torch/nn/utils/_expanded_weights/conv_expanded_weights.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights 2025-08-14T20:47:57.4967990Z copying torch/nn/utils/_expanded_weights/expanded_weights_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights 2025-08-14T20:47:57.4975140Z copying torch/nn/utils/_expanded_weights/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights 2025-08-14T20:47:57.4981910Z copying torch/nn/utils/_expanded_weights/embedding_expanded_weights.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights 2025-08-14T20:47:57.4989660Z copying torch/nn/utils/_expanded_weights/conv_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights 2025-08-14T20:47:57.4997670Z 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-08-14T20:47:57.5004800Z copying torch/nn/utils/_expanded_weights/linear_expanded_weights.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights 2025-08-14T20:47:57.5011910Z copying torch/nn/utils/_expanded_weights/expanded_weights_impl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights 2025-08-14T20:47:57.5019490Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantizable/modules 2025-08-14T20:47:57.5019980Z copying torch/nn/quantizable/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantizable/modules 2025-08-14T20:47:57.5027490Z copying torch/nn/quantizable/modules/activation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantizable/modules 2025-08-14T20:47:57.5034400Z copying torch/nn/quantizable/modules/rnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantizable/modules 2025-08-14T20:47:57.5042040Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/qat 2025-08-14T20:47:57.5042490Z copying torch/nn/intrinsic/qat/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/qat 2025-08-14T20:47:57.5050670Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized 2025-08-14T20:47:57.5051160Z copying torch/nn/intrinsic/quantized/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized 2025-08-14T20:47:57.5058490Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/modules 2025-08-14T20:47:57.5058970Z copying torch/nn/intrinsic/modules/fused.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/modules 2025-08-14T20:47:57.5066230Z copying torch/nn/intrinsic/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/modules 2025-08-14T20:47:57.5073790Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/qat/modules 2025-08-14T20:47:57.5074300Z copying torch/nn/intrinsic/qat/modules/conv_fused.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/qat/modules 2025-08-14T20:47:57.5082650Z copying torch/nn/intrinsic/qat/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/qat/modules 2025-08-14T20:47:57.5090010Z copying torch/nn/intrinsic/qat/modules/linear_relu.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/qat/modules 2025-08-14T20:47:57.5096760Z copying torch/nn/intrinsic/qat/modules/linear_fused.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/qat/modules 2025-08-14T20:47:57.5104090Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/dynamic 2025-08-14T20:47:57.5104650Z copying torch/nn/intrinsic/quantized/dynamic/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/dynamic 2025-08-14T20:47:57.5112780Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/modules 2025-08-14T20:47:57.5113330Z copying torch/nn/intrinsic/quantized/modules/bn_relu.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/modules 2025-08-14T20:47:57.5121190Z copying torch/nn/intrinsic/quantized/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/modules 2025-08-14T20:47:57.5128590Z copying torch/nn/intrinsic/quantized/modules/conv_relu.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/modules 2025-08-14T20:47:57.5136080Z copying torch/nn/intrinsic/quantized/modules/linear_relu.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/modules 2025-08-14T20:47:57.5143430Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/dynamic/modules 2025-08-14T20:47:57.5144060Z copying torch/nn/intrinsic/quantized/dynamic/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/dynamic/modules 2025-08-14T20:47:57.5151200Z 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-08-14T20:47:57.5159530Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal 2025-08-14T20:47:57.5159980Z copying torch/onnx/_internal/registration.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal 2025-08-14T20:47:57.5167680Z copying torch/onnx/_internal/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal 2025-08-14T20:47:57.5168520Z copying torch/onnx/_internal/_lazy_import.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal 2025-08-14T20:47:57.5176860Z copying torch/onnx/_internal/_exporter_legacy.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal 2025-08-14T20:47:57.5184590Z copying torch/onnx/_internal/onnx_proto_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal 2025-08-14T20:47:57.5192350Z copying torch/onnx/_internal/jit_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal 2025-08-14T20:47:57.5201210Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/ops 2025-08-14T20:47:57.5201720Z copying torch/onnx/ops/_dtype_mappings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/ops 2025-08-14T20:47:57.5210180Z copying torch/onnx/ops/_symbolic_impl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/ops 2025-08-14T20:47:57.5218090Z copying torch/onnx/ops/_impl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/ops 2025-08-14T20:47:57.5226020Z copying torch/onnx/ops/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/ops 2025-08-14T20:47:57.5241930Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx 2025-08-14T20:47:57.5242380Z copying torch/onnx/_internal/fx/type_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx 2025-08-14T20:47:57.5250360Z copying torch/onnx/_internal/fx/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx 2025-08-14T20:47:57.5258060Z copying torch/onnx/_internal/fx/patcher.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx 2025-08-14T20:47:57.5265920Z copying torch/onnx/_internal/fx/_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx 2025-08-14T20:47:57.5273780Z copying torch/onnx/_internal/fx/serialization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx 2025-08-14T20:47:57.5284400Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-08-14T20:47:57.5284900Z copying torch/onnx/_internal/exporter/_constants.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-08-14T20:47:57.5292760Z copying torch/onnx/_internal/exporter/_analysis.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-08-14T20:47:57.5300990Z copying torch/onnx/_internal/exporter/_flags.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-08-14T20:47:57.5308160Z copying torch/onnx/_internal/exporter/_errors.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-08-14T20:47:57.5315600Z copying torch/onnx/_internal/exporter/_capture_strategies.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-08-14T20:47:57.5323210Z copying torch/onnx/_internal/exporter/_tensors.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-08-14T20:47:57.5330970Z copying torch/onnx/_internal/exporter/_dispatching.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-08-14T20:47:57.5339260Z copying torch/onnx/_internal/exporter/_isolated.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-08-14T20:47:57.5346460Z copying torch/onnx/_internal/exporter/_decomp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-08-14T20:47:57.5353900Z copying torch/onnx/_internal/exporter/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-08-14T20:47:57.5354640Z copying torch/onnx/_internal/exporter/_onnx_program.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-08-14T20:47:57.5368770Z copying torch/onnx/_internal/exporter/_building.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-08-14T20:47:57.5383630Z copying torch/onnx/_internal/exporter/_dynamic_shapes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-08-14T20:47:57.5391560Z copying torch/onnx/_internal/exporter/_schemas.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-08-14T20:47:57.5407210Z copying torch/onnx/_internal/exporter/_core.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-08-14T20:47:57.5429070Z copying torch/onnx/_internal/exporter/_verification.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-08-14T20:47:57.5437230Z copying torch/onnx/_internal/exporter/_reporting.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-08-14T20:47:57.5444740Z copying torch/onnx/_internal/exporter/_registration.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-08-14T20:47:57.5452690Z copying torch/onnx/_internal/exporter/_testing.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-08-14T20:47:57.5459770Z copying torch/onnx/_internal/exporter/_compat.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-08-14T20:47:57.5467420Z copying torch/onnx/_internal/exporter/_ir_passes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-08-14T20:47:57.5474260Z copying torch/onnx/_internal/exporter/_type_casting.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-08-14T20:47:57.5481380Z copying torch/onnx/_internal/exporter/_fx_passes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-08-14T20:47:57.5489520Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx/passes 2025-08-14T20:47:57.5490020Z copying torch/onnx/_internal/fx/passes/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx/passes 2025-08-14T20:47:57.5498060Z copying torch/onnx/_internal/fx/passes/type_promotion.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx/passes 2025-08-14T20:47:57.5519950Z copying torch/onnx/_internal/fx/passes/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx/passes 2025-08-14T20:47:57.5528200Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib 2025-08-14T20:47:57.5528780Z copying torch/onnx/_internal/exporter/_torchlib/_torchlib_registry.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib 2025-08-14T20:47:57.5536180Z copying torch/onnx/_internal/exporter/_torchlib/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib 2025-08-14T20:47:57.5536910Z copying torch/onnx/_internal/exporter/_torchlib/_tensor_typing.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib 2025-08-14T20:47:57.5545580Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/ops 2025-08-14T20:47:57.5546160Z copying torch/onnx/_internal/exporter/_torchlib/ops/nn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/ops 2025-08-14T20:47:57.5554280Z copying torch/onnx/_internal/exporter/_torchlib/ops/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/ops 2025-08-14T20:47:57.5560980Z copying torch/onnx/_internal/exporter/_torchlib/ops/core.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/ops 2025-08-14T20:47:57.5568110Z copying torch/onnx/_internal/exporter/_torchlib/ops/symops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/ops 2025-08-14T20:47:57.5575090Z copying torch/onnx/_internal/exporter/_torchlib/ops/symbolic.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/ops 2025-08-14T20:47:57.5582170Z copying torch/onnx/_internal/exporter/_torchlib/ops/hop.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/ops 2025-08-14T20:47:57.5590320Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_vendor/packaging 2025-08-14T20:47:57.5590770Z copying torch/_vendor/packaging/version.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_vendor/packaging 2025-08-14T20:47:57.5598980Z copying torch/_vendor/packaging/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_vendor/packaging 2025-08-14T20:47:57.5606510Z copying torch/_vendor/packaging/_structures.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_vendor/packaging 2025-08-14T20:47:57.5614780Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/cpu/amp 2025-08-14T20:47:57.5615170Z copying torch/cpu/amp/autocast_mode.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cpu/amp 2025-08-14T20:47:57.5621760Z copying torch/cpu/amp/grad_scaler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cpu/amp 2025-08-14T20:47:57.5629280Z copying torch/cpu/amp/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cpu/amp 2025-08-14T20:47:57.5636560Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tensor 2025-08-14T20:47:57.5637020Z copying torch/distributed/_tensor/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tensor 2025-08-14T20:47:57.5644250Z copying torch/distributed/_tensor/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tensor 2025-08-14T20:47:57.5651170Z copying torch/distributed/_tensor/placement_types.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tensor 2025-08-14T20:47:57.5658640Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_sharding_spec 2025-08-14T20:47:57.5659150Z copying torch/distributed/_sharding_spec/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_sharding_spec 2025-08-14T20:47:57.5666400Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/launcher 2025-08-14T20:47:57.5666940Z copying torch/distributed/launcher/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/launcher 2025-08-14T20:47:57.5674100Z copying torch/distributed/launcher/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/launcher 2025-08-14T20:47:57.5685650Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-14T20:47:57.5686180Z copying torch/distributed/checkpoint/_async_process_executor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-14T20:47:57.5694410Z copying torch/distributed/checkpoint/logging_handlers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-14T20:47:57.5702200Z copying torch/distributed/checkpoint/format_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-14T20:47:57.5710090Z copying torch/distributed/checkpoint/planner.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-14T20:47:57.5717700Z copying torch/distributed/checkpoint/_consolidate_hf_safetensors.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-14T20:47:57.5732440Z copying torch/distributed/checkpoint/_dedup_save_plans.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-14T20:47:57.5740420Z copying torch/distributed/checkpoint/state_dict.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-14T20:47:57.5762550Z copying torch/distributed/checkpoint/metadata.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-14T20:47:57.5769710Z copying torch/distributed/checkpoint/_storage_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-14T20:47:57.5776800Z copying torch/distributed/checkpoint/_version.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-14T20:47:57.5784080Z copying torch/distributed/checkpoint/_traverse.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-14T20:47:57.5791420Z copying torch/distributed/checkpoint/_sharded_tensor_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-14T20:47:57.5798710Z copying torch/distributed/checkpoint/_dedup_tensors.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-14T20:47:57.5806050Z copying torch/distributed/checkpoint/filesystem.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-14T20:47:57.5820500Z copying torch/distributed/checkpoint/state_dict_saver.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-14T20:47:57.5835120Z copying torch/distributed/checkpoint/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-14T20:47:57.5841670Z copying torch/distributed/checkpoint/_hf_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-14T20:47:57.5848510Z copying torch/distributed/checkpoint/logger.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-14T20:47:57.5856260Z copying torch/distributed/checkpoint/_pg_transport.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-14T20:47:57.5863350Z copying torch/distributed/checkpoint/resharding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-14T20:47:57.5870950Z copying torch/distributed/checkpoint/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-14T20:47:57.5877980Z copying torch/distributed/checkpoint/state_dict_loader.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-14T20:47:57.5885850Z copying torch/distributed/checkpoint/_async_executor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-14T20:47:57.5893290Z copying torch/distributed/checkpoint/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-14T20:47:57.5901450Z copying torch/distributed/checkpoint/default_planner.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-14T20:47:57.5916030Z copying torch/distributed/checkpoint/storage.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-14T20:47:57.5923010Z copying torch/distributed/checkpoint/_state_dict_stager.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-14T20:47:57.5931080Z copying torch/distributed/checkpoint/planner_helpers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-14T20:47:57.5944720Z copying torch/distributed/checkpoint/optimizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-14T20:47:57.5951730Z copying torch/distributed/checkpoint/_async_thread_executor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-14T20:47:57.5959580Z copying torch/distributed/checkpoint/staging.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-14T20:47:57.5973660Z copying torch/distributed/checkpoint/_checkpointer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-14T20:47:57.5980990Z copying torch/distributed/checkpoint/stateful.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-14T20:47:57.5988710Z copying torch/distributed/checkpoint/_fsspec_filesystem.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-14T20:47:57.5995810Z copying torch/distributed/checkpoint/_extension.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-14T20:47:57.6003080Z copying torch/distributed/checkpoint/_nested_dict.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-14T20:47:57.6009890Z copying torch/distributed/checkpoint/hf_storage.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-14T20:47:57.6017840Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_sharded_tensor 2025-08-14T20:47:57.6018360Z copying torch/distributed/_sharded_tensor/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_sharded_tensor 2025-08-14T20:47:57.6025770Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn 2025-08-14T20:47:57.6026190Z copying torch/distributed/nn/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn 2025-08-14T20:47:57.6033420Z copying torch/distributed/nn/functional.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn 2025-08-14T20:47:57.6042360Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic 2025-08-14T20:47:57.6042820Z copying torch/distributed/elastic/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic 2025-08-14T20:47:57.6050830Z copying torch/distributed/elastic/control_plane.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic 2025-08-14T20:47:57.6058730Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/autograd 2025-08-14T20:47:57.6059210Z copying torch/distributed/autograd/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/autograd 2025-08-14T20:47:57.6067850Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining 2025-08-14T20:47:57.6068330Z copying torch/distributed/pipelining/_IR.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining 2025-08-14T20:47:57.6090270Z copying torch/distributed/pipelining/_unflatten.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining 2025-08-14T20:47:57.6098080Z copying torch/distributed/pipelining/_schedule_visualizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining 2025-08-14T20:47:57.6105240Z copying torch/distributed/pipelining/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining 2025-08-14T20:47:57.6110990Z copying torch/distributed/pipelining/microbatch.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining 2025-08-14T20:47:57.6114430Z copying torch/distributed/pipelining/_backward.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining 2025-08-14T20:47:57.6122200Z copying torch/distributed/pipelining/_debug.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining 2025-08-14T20:47:57.6129530Z copying torch/distributed/pipelining/stage.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining 2025-08-14T20:47:57.6151780Z copying torch/distributed/pipelining/schedules.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining 2025-08-14T20:47:57.6153440Z copying torch/distributed/pipelining/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining 2025-08-14T20:47:57.6162550Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms 2025-08-14T20:47:57.6163030Z copying torch/distributed/algorithms/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms 2025-08-14T20:47:57.6170430Z copying torch/distributed/algorithms/join.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms 2025-08-14T20:47:57.6179950Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-08-14T20:47:57.6180430Z copying torch/distributed/optim/_deprecation_warning.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-08-14T20:47:57.6188110Z copying torch/distributed/optim/named_optimizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-08-14T20:47:57.6195040Z copying torch/distributed/optim/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-08-14T20:47:57.6203080Z copying torch/distributed/optim/functional_sgd.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-08-14T20:47:57.6209850Z copying torch/distributed/optim/functional_adagrad.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-08-14T20:47:57.6217440Z copying torch/distributed/optim/functional_adamw.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-08-14T20:47:57.6224660Z copying torch/distributed/optim/apply_optimizer_in_backward.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-08-14T20:47:57.6232820Z copying torch/distributed/optim/functional_adam.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-08-14T20:47:57.6240290Z copying torch/distributed/optim/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-08-14T20:47:57.6247400Z copying torch/distributed/optim/functional_rprop.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-08-14T20:47:57.6254670Z copying torch/distributed/optim/post_localSGD_optimizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-08-14T20:47:57.6262180Z copying torch/distributed/optim/optimizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-08-14T20:47:57.6270090Z copying torch/distributed/optim/functional_adadelta.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-08-14T20:47:57.6278290Z copying torch/distributed/optim/functional_rmsprop.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-08-14T20:47:57.6285480Z copying torch/distributed/optim/zero_redundancy_optimizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-08-14T20:47:57.6307690Z copying torch/distributed/optim/functional_adamax.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-08-14T20:47:57.6316250Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable 2025-08-14T20:47:57.6316780Z copying torch/distributed/_composable/replicate.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable 2025-08-14T20:47:57.6324010Z copying torch/distributed/_composable/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable 2025-08-14T20:47:57.6331020Z copying torch/distributed/_composable/replicate_with_fsdp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable 2025-08-14T20:47:57.6338390Z copying torch/distributed/_composable/contract.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable 2025-08-14T20:47:57.6345260Z copying torch/distributed/_composable/checkpoint_activation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable 2025-08-14T20:47:57.6354150Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-08-14T20:47:57.6354630Z copying torch/distributed/_tools/mem_tracker.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-08-14T20:47:57.6369490Z copying torch/distributed/_tools/ilp_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-08-14T20:47:57.6377110Z copying torch/distributed/_tools/runtime_estimator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-08-14T20:47:57.6390480Z copying torch/distributed/_tools/fsdp2_mem_tracker.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-08-14T20:47:57.6405200Z copying torch/distributed/_tools/sac_estimator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-08-14T20:47:57.6419340Z copying torch/distributed/_tools/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-08-14T20:47:57.6427360Z copying torch/distributed/_tools/memory_tracker.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-08-14T20:47:57.6435580Z copying torch/distributed/_tools/fake_collectives.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-08-14T20:47:57.6443420Z copying torch/distributed/_tools/common_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-08-14T20:47:57.6450560Z copying torch/distributed/_tools/sac_ilp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-08-14T20:47:57.6458020Z copying torch/distributed/_tools/mod_tracker.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-08-14T20:47:57.6468340Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-08-14T20:47:57.6468810Z copying torch/distributed/fsdp/_exec_order_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-08-14T20:47:57.6477270Z copying torch/distributed/fsdp/_traversal_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-08-14T20:47:57.6485030Z copying torch/distributed/fsdp/sharded_grad_scaler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-08-14T20:47:57.6492830Z copying torch/distributed/fsdp/_state_dict_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-08-14T20:47:57.6507730Z copying torch/distributed/fsdp/fully_sharded_data_parallel.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-08-14T20:47:57.6538610Z copying torch/distributed/fsdp/_wrap_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-08-14T20:47:57.6546070Z copying torch/distributed/fsdp/_optim_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-08-14T20:47:57.6575630Z copying torch/distributed/fsdp/_trace_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-08-14T20:47:57.6583260Z copying torch/distributed/fsdp/_common_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-08-14T20:47:57.6596990Z copying torch/distributed/fsdp/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-08-14T20:47:57.6603730Z copying torch/distributed/fsdp/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-08-14T20:47:57.6617050Z copying torch/distributed/fsdp/_limiter_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-08-14T20:47:57.6624120Z copying torch/distributed/fsdp/_dynamo_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-08-14T20:47:57.6631540Z copying torch/distributed/fsdp/_unshard_param_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-08-14T20:47:57.6638870Z copying torch/distributed/fsdp/_shard_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-08-14T20:47:57.6645570Z copying torch/distributed/fsdp/wrap.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-08-14T20:47:57.6660460Z copying torch/distributed/fsdp/_runtime_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-08-14T20:47:57.6682420Z copying torch/distributed/fsdp/_fsdp_extensions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-08-14T20:47:57.6690080Z copying torch/distributed/fsdp/_init_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-08-14T20:47:57.6704650Z copying torch/distributed/fsdp/_debug_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-08-14T20:47:57.6712590Z copying torch/distributed/fsdp/_flat_param.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-08-14T20:47:57.6744530Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard 2025-08-14T20:47:57.6745010Z copying torch/distributed/_shard/metadata.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard 2025-08-14T20:47:57.6753130Z copying torch/distributed/_shard/op_registry_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard 2025-08-14T20:47:57.6759930Z copying torch/distributed/_shard/sharder.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard 2025-08-14T20:47:57.6766890Z copying torch/distributed/_shard/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard 2025-08-14T20:47:57.6774370Z copying torch/distributed/_shard/common_op_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard 2025-08-14T20:47:57.6781470Z copying torch/distributed/_shard/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard 2025-08-14T20:47:57.6789520Z copying torch/distributed/_shard/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard 2025-08-14T20:47:57.6797530Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_symmetric_memory 2025-08-14T20:47:57.6798090Z copying torch/distributed/_symmetric_memory/_nvshmem_triton.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_symmetric_memory 2025-08-14T20:47:57.6813020Z copying torch/distributed/_symmetric_memory/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_symmetric_memory 2025-08-14T20:47:57.6836830Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-08-14T20:47:57.6837320Z copying torch/distributed/tensor/_shards_wrapper.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-08-14T20:47:57.6845530Z copying torch/distributed/tensor/_redistribute.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-08-14T20:47:57.6853420Z copying torch/distributed/tensor/_sharding_prop.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-08-14T20:47:57.6867330Z copying torch/distributed/tensor/_collective_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-08-14T20:47:57.6874830Z copying torch/distributed/tensor/_api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-08-14T20:47:57.6895700Z copying torch/distributed/tensor/_dtensor_spec.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-08-14T20:47:57.6903780Z copying torch/distributed/tensor/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-08-14T20:47:57.6910750Z copying torch/distributed/tensor/_dispatch.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-08-14T20:47:57.6912020Z copying torch/distributed/tensor/_random.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-08-14T20:47:57.6926090Z copying torch/distributed/tensor/_op_schema.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-08-14T20:47:57.6940800Z copying torch/distributed/tensor/placement_types.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-08-14T20:47:57.6955820Z copying torch/distributed/tensor/_tp_conv.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-08-14T20:47:57.6963650Z copying torch/distributed/tensor/device_mesh.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-08-14T20:47:57.6970670Z copying torch/distributed/tensor/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-08-14T20:47:57.6979910Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc 2025-08-14T20:47:57.6980370Z copying torch/distributed/rpc/functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc 2025-08-14T20:47:57.6987220Z copying torch/distributed/rpc/options.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc 2025-08-14T20:47:57.6994840Z copying torch/distributed/rpc/internal.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc 2025-08-14T20:47:57.7002680Z copying torch/distributed/rpc/constants.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc 2025-08-14T20:47:57.7009750Z copying torch/distributed/rpc/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc 2025-08-14T20:47:57.7016820Z copying torch/distributed/rpc/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc 2025-08-14T20:47:57.7031490Z copying torch/distributed/rpc/rref_proxy.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc 2025-08-14T20:47:57.7038610Z copying torch/distributed/rpc/server_process_global_profiler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc 2025-08-14T20:47:57.7046150Z copying torch/distributed/rpc/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc 2025-08-14T20:47:57.7053270Z copying torch/distributed/rpc/backend_registry.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc 2025-08-14T20:47:57.7062740Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-08-14T20:47:57.7063340Z copying torch/distributed/checkpoint/_experimental/config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-08-14T20:47:57.7071040Z copying torch/distributed/checkpoint/_experimental/barriers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-08-14T20:47:57.7079020Z copying torch/distributed/checkpoint/_experimental/checkpointer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-08-14T20:47:57.7086660Z copying torch/distributed/checkpoint/_experimental/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-08-14T20:47:57.7094750Z copying torch/distributed/checkpoint/_experimental/types.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-08-14T20:47:57.7101770Z copying torch/distributed/checkpoint/_experimental/builder.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-08-14T20:47:57.7109130Z copying torch/distributed/checkpoint/_experimental/checkpoint_reader.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-08-14T20:47:57.7117760Z copying torch/distributed/checkpoint/_experimental/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-08-14T20:47:57.7126290Z copying torch/distributed/checkpoint/_experimental/checkpoint_process.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-08-14T20:47:57.7133880Z copying torch/distributed/checkpoint/_experimental/checkpoint_writer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-08-14T20:47:57.7141340Z copying torch/distributed/checkpoint/_experimental/staging.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-08-14T20:47:57.7149560Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/jit 2025-08-14T20:47:57.7150080Z copying torch/distributed/nn/jit/instantiator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/jit 2025-08-14T20:47:57.7157800Z copying torch/distributed/nn/jit/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/jit 2025-08-14T20:47:57.7158890Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/api 2025-08-14T20:47:57.7159520Z copying torch/distributed/nn/api/remote_module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/api 2025-08-14T20:47:57.7174060Z copying torch/distributed/nn/api/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/api 2025-08-14T20:47:57.7175450Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/jit/templates 2025-08-14T20:47:57.7176050Z copying torch/distributed/nn/jit/templates/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/jit/templates 2025-08-14T20:47:57.7177000Z copying torch/distributed/nn/jit/templates/remote_module_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/jit/templates 2025-08-14T20:47:57.7184490Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/metrics 2025-08-14T20:47:57.7185020Z copying torch/distributed/elastic/metrics/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/metrics 2025-08-14T20:47:57.7191530Z copying torch/distributed/elastic/metrics/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/metrics 2025-08-14T20:47:57.7200400Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-08-14T20:47:57.7201080Z copying torch/distributed/elastic/rendezvous/etcd_store.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-08-14T20:47:57.7208520Z copying torch/distributed/elastic/rendezvous/registry.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-08-14T20:47:57.7216280Z copying torch/distributed/elastic/rendezvous/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-08-14T20:47:57.7223190Z copying torch/distributed/elastic/rendezvous/_etcd_stub.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-08-14T20:47:57.7230280Z copying torch/distributed/elastic/rendezvous/etcd_rendezvous.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-08-14T20:47:57.7245690Z copying torch/distributed/elastic/rendezvous/c10d_rendezvous_backend.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-08-14T20:47:57.7253330Z copying torch/distributed/elastic/rendezvous/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-08-14T20:47:57.7261730Z copying torch/distributed/elastic/rendezvous/etcd_rendezvous_backend.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-08-14T20:47:57.7269180Z copying torch/distributed/elastic/rendezvous/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-08-14T20:47:57.7276820Z copying torch/distributed/elastic/rendezvous/dynamic_rendezvous.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-08-14T20:47:57.7298570Z copying torch/distributed/elastic/rendezvous/etcd_server.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-08-14T20:47:57.7306190Z copying torch/distributed/elastic/rendezvous/static_tcp_rendezvous.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-08-14T20:47:57.7314670Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing 2025-08-14T20:47:57.7315290Z copying torch/distributed/elastic/multiprocessing/tail_log.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing 2025-08-14T20:47:57.7323320Z copying torch/distributed/elastic/multiprocessing/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing 2025-08-14T20:47:57.7324270Z copying torch/distributed/elastic/multiprocessing/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing 2025-08-14T20:47:57.7340100Z copying torch/distributed/elastic/multiprocessing/redirects.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing 2025-08-14T20:47:57.7347880Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/timer 2025-08-14T20:47:57.7348410Z copying torch/distributed/elastic/timer/local_timer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/timer 2025-08-14T20:47:57.7355830Z copying torch/distributed/elastic/timer/debug_info_logging.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/timer 2025-08-14T20:47:57.7362610Z copying torch/distributed/elastic/timer/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/timer 2025-08-14T20:47:57.7369370Z copying torch/distributed/elastic/timer/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/timer 2025-08-14T20:47:57.7377060Z copying torch/distributed/elastic/timer/file_based_local_timer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/timer 2025-08-14T20:47:57.7391530Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils 2025-08-14T20:47:57.7392030Z copying torch/distributed/elastic/utils/store.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils 2025-08-14T20:47:57.7399230Z copying torch/distributed/elastic/utils/logging.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils 2025-08-14T20:47:57.7406270Z copying torch/distributed/elastic/utils/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils 2025-08-14T20:47:57.7413270Z copying torch/distributed/elastic/utils/log_level.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils 2025-08-14T20:47:57.7420700Z copying torch/distributed/elastic/utils/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils 2025-08-14T20:47:57.7427540Z copying torch/distributed/elastic/utils/distributed.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils 2025-08-14T20:47:57.7435690Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/agent 2025-08-14T20:47:57.7436200Z copying torch/distributed/elastic/agent/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/agent 2025-08-14T20:47:57.7437470Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/events 2025-08-14T20:47:57.7438200Z copying torch/distributed/elastic/events/handlers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/events 2025-08-14T20:47:57.7445670Z copying torch/distributed/elastic/events/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/events 2025-08-14T20:47:57.7452990Z copying torch/distributed/elastic/events/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/events 2025-08-14T20:47:57.7461560Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/subprocess_handler 2025-08-14T20:47:57.7462460Z 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-08-14T20:47:57.7469760Z copying torch/distributed/elastic/multiprocessing/subprocess_handler/handlers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/subprocess_handler 2025-08-14T20:47:57.7476300Z copying torch/distributed/elastic/multiprocessing/subprocess_handler/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/subprocess_handler 2025-08-14T20:47:57.7483810Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/errors 2025-08-14T20:47:57.7484520Z copying torch/distributed/elastic/multiprocessing/errors/handlers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/errors 2025-08-14T20:47:57.7491480Z copying torch/distributed/elastic/multiprocessing/errors/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/errors 2025-08-14T20:47:57.7499810Z copying torch/distributed/elastic/multiprocessing/errors/error_handler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/errors 2025-08-14T20:47:57.7507790Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils/data 2025-08-14T20:47:57.7508400Z copying torch/distributed/elastic/utils/data/elastic_distributed_sampler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils/data 2025-08-14T20:47:57.7516020Z copying torch/distributed/elastic/utils/data/cycling_iterator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils/data 2025-08-14T20:47:57.7522660Z copying torch/distributed/elastic/utils/data/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils/data 2025-08-14T20:47:57.7530640Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/agent/server 2025-08-14T20:47:57.7531240Z copying torch/distributed/elastic/agent/server/health_check_server.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/agent/server 2025-08-14T20:47:57.7538290Z copying torch/distributed/elastic/agent/server/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/agent/server 2025-08-14T20:47:57.7545360Z copying torch/distributed/elastic/agent/server/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/agent/server 2025-08-14T20:47:57.7560570Z copying torch/distributed/elastic/agent/server/local_elastic_agent.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/agent/server 2025-08-14T20:47:57.7575030Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_comm_hooks 2025-08-14T20:47:57.7575600Z copying torch/distributed/algorithms/_comm_hooks/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_comm_hooks 2025-08-14T20:47:57.7582660Z copying torch/distributed/algorithms/_comm_hooks/default_hooks.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_comm_hooks 2025-08-14T20:47:57.7590560Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_checkpoint 2025-08-14T20:47:57.7591190Z copying torch/distributed/algorithms/_checkpoint/checkpoint_wrapper.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_checkpoint 2025-08-14T20:47:57.7598740Z copying torch/distributed/algorithms/_checkpoint/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_checkpoint 2025-08-14T20:47:57.7600400Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/model_averaging 2025-08-14T20:47:57.7601020Z copying torch/distributed/algorithms/model_averaging/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/model_averaging 2025-08-14T20:47:57.7602010Z copying torch/distributed/algorithms/model_averaging/averagers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/model_averaging 2025-08-14T20:47:57.7610000Z copying torch/distributed/algorithms/model_averaging/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/model_averaging 2025-08-14T20:47:57.7616850Z copying torch/distributed/algorithms/model_averaging/hierarchical_model_averager.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/model_averaging 2025-08-14T20:47:57.7624840Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/ddp_comm_hooks 2025-08-14T20:47:57.7625480Z 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-08-14T20:47:57.7634020Z 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-08-14T20:47:57.7641560Z 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-08-14T20:47:57.7649070Z copying torch/distributed/algorithms/ddp_comm_hooks/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/ddp_comm_hooks 2025-08-14T20:47:57.7656030Z 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-08-14T20:47:57.7663490Z 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-08-14T20:47:57.7678110Z 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-08-14T20:47:57.7685650Z 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-08-14T20:47:57.7692890Z 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-08-14T20:47:57.7707600Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_optimizer_overlap 2025-08-14T20:47:57.7708280Z copying torch/distributed/algorithms/_optimizer_overlap/optimizer_overlap.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_optimizer_overlap 2025-08-14T20:47:57.7716090Z copying torch/distributed/algorithms/_optimizer_overlap/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_optimizer_overlap 2025-08-14T20:47:57.7724260Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_quantization 2025-08-14T20:47:57.7724890Z copying torch/distributed/algorithms/_quantization/quantization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_quantization 2025-08-14T20:47:57.7732330Z copying torch/distributed/algorithms/_quantization/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_quantization 2025-08-14T20:47:57.7733420Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable/fsdp 2025-08-14T20:47:57.7734020Z copying torch/distributed/_composable/fsdp/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable/fsdp 2025-08-14T20:47:57.7741380Z copying torch/distributed/_composable/fsdp/fully_shard.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable/fsdp 2025-08-14T20:47:57.7750620Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard 2025-08-14T20:47:57.7751160Z copying torch/distributed/fsdp/_fully_shard/_fsdp_api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard 2025-08-14T20:47:57.7758260Z copying torch/distributed/fsdp/_fully_shard/_fsdp_common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard 2025-08-14T20:47:57.7766160Z copying torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard 2025-08-14T20:47:57.7781010Z copying torch/distributed/fsdp/_fully_shard/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard 2025-08-14T20:47:57.7789090Z copying torch/distributed/fsdp/_fully_shard/_fsdp_param.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard 2025-08-14T20:47:57.7803240Z copying torch/distributed/fsdp/_fully_shard/_fsdp_init.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard 2025-08-14T20:47:57.7811420Z copying torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard 2025-08-14T20:47:57.7825880Z copying torch/distributed/fsdp/_fully_shard/_fully_shard.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard 2025-08-14T20:47:57.7841130Z copying torch/distributed/fsdp/_fully_shard/_fsdp_state.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard 2025-08-14T20:47:57.7855550Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/checkpoint 2025-08-14T20:47:57.7856090Z copying torch/distributed/_shard/checkpoint/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/checkpoint 2025-08-14T20:47:57.7864210Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor 2025-08-14T20:47:57.7864790Z copying torch/distributed/_shard/sharded_tensor/logging_handlers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor 2025-08-14T20:47:57.7872170Z copying torch/distributed/_shard/sharded_tensor/metadata.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor 2025-08-14T20:47:57.7879520Z copying torch/distributed/_shard/sharded_tensor/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor 2025-08-14T20:47:57.7893170Z copying torch/distributed/_shard/sharded_tensor/logger.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor 2025-08-14T20:47:57.7900370Z copying torch/distributed/_shard/sharded_tensor/reshard.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor 2025-08-14T20:47:57.7907200Z copying torch/distributed/_shard/sharded_tensor/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor 2025-08-14T20:47:57.7929610Z copying torch/distributed/_shard/sharded_tensor/shard.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor 2025-08-14T20:47:57.7936910Z copying torch/distributed/_shard/sharded_tensor/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor 2025-08-14T20:47:57.7945580Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_plan 2025-08-14T20:47:57.7946140Z copying torch/distributed/_shard/sharding_plan/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_plan 2025-08-14T20:47:57.7953780Z copying torch/distributed/_shard/sharding_plan/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_plan 2025-08-14T20:47:57.7961260Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec 2025-08-14T20:47:57.7961820Z copying torch/distributed/_shard/sharding_spec/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec 2025-08-14T20:47:57.7968970Z copying torch/distributed/_shard/sharding_spec/_internals.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec 2025-08-14T20:47:57.7976880Z copying torch/distributed/_shard/sharding_spec/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec 2025-08-14T20:47:57.7984500Z copying torch/distributed/_shard/sharding_spec/chunk_sharding_spec.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec 2025-08-14T20:47:57.7992560Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_optim 2025-08-14T20:47:57.7993180Z copying torch/distributed/_shard/sharded_optim/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_optim 2025-08-14T20:47:57.8000680Z copying torch/distributed/_shard/sharded_optim/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_optim 2025-08-14T20:47:57.8008910Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/_ops 2025-08-14T20:47:57.8009570Z 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-08-14T20:47:57.8016480Z 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-08-14T20:47:57.8023690Z copying torch/distributed/_shard/sharded_tensor/_ops/_common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/_ops 2025-08-14T20:47:57.8030400Z copying torch/distributed/_shard/sharded_tensor/_ops/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/_ops 2025-08-14T20:47:57.8037500Z 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-08-14T20:47:57.8044120Z copying torch/distributed/_shard/sharded_tensor/_ops/init.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/_ops 2025-08-14T20:47:57.8052390Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops 2025-08-14T20:47:57.8053150Z 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-08-14T20:47:57.8060380Z 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-08-14T20:47:57.8068660Z 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-08-14T20:47:57.8069690Z 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-08-14T20:47:57.8085740Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/experimental 2025-08-14T20:47:57.8086320Z copying torch/distributed/tensor/experimental/_attention.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/experimental 2025-08-14T20:47:57.8108710Z copying torch/distributed/tensor/experimental/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/experimental 2025-08-14T20:47:57.8116290Z copying torch/distributed/tensor/experimental/_tp_transform.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/experimental 2025-08-14T20:47:57.8130640Z copying torch/distributed/tensor/experimental/_register_sharding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/experimental 2025-08-14T20:47:57.8138040Z copying torch/distributed/tensor/experimental/_func_map.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/experimental 2025-08-14T20:47:57.8146840Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel 2025-08-14T20:47:57.8147360Z copying torch/distributed/tensor/parallel/ddp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel 2025-08-14T20:47:57.8154860Z copying torch/distributed/tensor/parallel/fsdp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel 2025-08-14T20:47:57.8162600Z copying torch/distributed/tensor/parallel/style.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel 2025-08-14T20:47:57.8177540Z copying torch/distributed/tensor/parallel/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel 2025-08-14T20:47:57.8185730Z copying torch/distributed/tensor/parallel/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel 2025-08-14T20:47:57.8192420Z copying torch/distributed/tensor/parallel/loss.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel 2025-08-14T20:47:57.8206680Z copying torch/distributed/tensor/parallel/input_reshard.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel 2025-08-14T20:47:57.8213820Z copying torch/distributed/tensor/parallel/_data_parallel_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel 2025-08-14T20:47:57.8221810Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-08-14T20:47:57.8222320Z copying torch/distributed/tensor/_ops/_einsum_strategy.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-08-14T20:47:57.8229910Z copying torch/distributed/tensor/_ops/_embedding_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-08-14T20:47:57.8237980Z copying torch/distributed/tensor/_ops/_tensor_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-08-14T20:47:57.8252680Z copying torch/distributed/tensor/_ops/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-08-14T20:47:57.8260760Z copying torch/distributed/tensor/_ops/_conv_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-08-14T20:47:57.8267340Z copying torch/distributed/tensor/_ops/_pointwise_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-08-14T20:47:57.8282630Z copying torch/distributed/tensor/_ops/_matrix_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-08-14T20:47:57.8296760Z copying torch/distributed/tensor/_ops/_math_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-08-14T20:47:57.8312380Z copying torch/distributed/tensor/_ops/_common_rules.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-08-14T20:47:57.8320430Z copying torch/distributed/tensor/_ops/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-08-14T20:47:57.8332500Z copying torch/distributed/tensor/_ops/_random_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-08-14T20:47:57.8335630Z copying torch/distributed/tensor/_ops/_view_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-08-14T20:47:57.8337570Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/debug 2025-08-14T20:47:57.8338160Z copying torch/distributed/tensor/debug/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/debug 2025-08-14T20:47:57.8345800Z copying torch/distributed/tensor/debug/_op_coverage.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/debug 2025-08-14T20:47:57.8353380Z copying torch/distributed/tensor/debug/_visualize_sharding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/debug 2025-08-14T20:47:57.8360810Z copying torch/distributed/tensor/debug/_comm_mode.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/debug 2025-08-14T20:47:57.8375570Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc/_testing 2025-08-14T20:47:57.8376070Z copying torch/distributed/rpc/_testing/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc/_testing 2025-08-14T20:47:57.8383730Z copying torch/distributed/rpc/_testing/faulty_agent_backend_registry.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc/_testing 2025-08-14T20:47:57.8391780Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/_functions 2025-08-14T20:47:57.8392340Z copying torch/autograd/_functions/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/_functions 2025-08-14T20:47:57.8398740Z copying torch/autograd/_functions/tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/_functions 2025-08-14T20:47:57.8406140Z copying torch/autograd/_functions/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/_functions 2025-08-14T20:47:57.8415610Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-08-14T20:47:57.8416120Z copying torch/fx/experimental/validator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-08-14T20:47:57.8430770Z copying torch/fx/experimental/meta_tracer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-08-14T20:47:57.8438840Z copying torch/fx/experimental/_dynamism.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-08-14T20:47:57.8447210Z copying torch/fx/experimental/partitioner_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-08-14T20:47:57.8454370Z copying torch/fx/experimental/recording.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-08-14T20:47:57.8469110Z copying torch/fx/experimental/rewriter.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-08-14T20:47:57.8475800Z copying torch/fx/experimental/const_fold.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-08-14T20:47:57.8484470Z copying torch/fx/experimental/accelerator_partitioner.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-08-14T20:47:57.8500070Z copying torch/fx/experimental/normalize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-08-14T20:47:57.8508760Z copying torch/fx/experimental/_constant_symnode.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-08-14T20:47:57.8516180Z copying torch/fx/experimental/optimization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-08-14T20:47:57.8530410Z copying torch/fx/experimental/refinement_types.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-08-14T20:47:57.8537560Z copying torch/fx/experimental/graph_gradual_typechecker.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-08-14T20:47:57.8552170Z copying torch/fx/experimental/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-08-14T20:47:57.8552790Z copying torch/fx/experimental/sym_node.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-08-14T20:47:57.8575360Z copying torch/fx/experimental/unify_refinements.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-08-14T20:47:57.8582780Z copying torch/fx/experimental/merge_matmul.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-08-14T20:47:57.8589440Z copying torch/fx/experimental/debug.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-08-14T20:47:57.8596890Z copying torch/fx/experimental/schema_type_annotation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-08-14T20:47:57.8604070Z copying torch/fx/experimental/symbolic_shapes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-08-14T20:47:57.8656230Z copying torch/fx/experimental/_config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-08-14T20:47:57.8664670Z copying torch/fx/experimental/_backward_state.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-08-14T20:47:57.8672020Z copying torch/fx/experimental/proxy_tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-08-14T20:47:57.8702390Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-08-14T20:47:57.8702790Z copying torch/fx/passes/net_min_base.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-08-14T20:47:57.8716790Z copying torch/fx/passes/param_fetch.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-08-14T20:47:57.8724390Z copying torch/fx/passes/tools_common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-08-14T20:47:57.8731390Z copying torch/fx/passes/split_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-08-14T20:47:57.8739200Z copying torch/fx/passes/shape_prop.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-08-14T20:47:57.8746590Z copying torch/fx/passes/split_module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-08-14T20:47:57.8760610Z copying torch/fx/passes/runtime_assert.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-08-14T20:47:57.8775000Z copying torch/fx/passes/reinplace.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-08-14T20:47:57.8788440Z copying torch/fx/passes/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-08-14T20:47:57.8795950Z copying torch/fx/passes/pass_manager.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-08-14T20:47:57.8802740Z copying torch/fx/passes/_tensorify_python_scalars.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-08-14T20:47:57.8810440Z copying torch/fx/passes/fake_tensor_prop.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-08-14T20:47:57.8817610Z copying torch/fx/passes/operator_support.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-08-14T20:47:57.8824650Z copying torch/fx/passes/annotate_getitem_nodes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-08-14T20:47:57.8832070Z copying torch/fx/passes/graph_manipulation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-08-14T20:47:57.8839280Z copying torch/fx/passes/graph_drawer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-08-14T20:47:57.8853580Z copying torch/fx/passes/splitter_base.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-08-14T20:47:57.8868460Z copying torch/fx/passes/graph_transform_observer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-08-14T20:47:57.8877030Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification 2025-08-14T20:47:57.8877580Z copying torch/fx/experimental/unification/dispatch.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification 2025-08-14T20:47:57.8885100Z copying torch/fx/experimental/unification/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification 2025-08-14T20:47:57.8892510Z copying torch/fx/experimental/unification/core.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification 2025-08-14T20:47:57.8899410Z copying torch/fx/experimental/unification/unification_tools.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification 2025-08-14T20:47:57.8907060Z copying torch/fx/experimental/unification/variable.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification 2025-08-14T20:47:57.8914810Z copying torch/fx/experimental/unification/more.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification 2025-08-14T20:47:57.8921210Z copying torch/fx/experimental/unification/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification 2025-08-14T20:47:57.8928000Z copying torch/fx/experimental/unification/match.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification 2025-08-14T20:47:57.8936320Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/migrate_gradual_types 2025-08-14T20:47:57.8936940Z copying torch/fx/experimental/migrate_gradual_types/constraint.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/migrate_gradual_types 2025-08-14T20:47:57.8951500Z 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-08-14T20:47:57.8966370Z copying torch/fx/experimental/migrate_gradual_types/util.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/migrate_gradual_types 2025-08-14T20:47:57.8974480Z copying torch/fx/experimental/migrate_gradual_types/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/migrate_gradual_types 2025-08-14T20:47:57.8975230Z copying torch/fx/experimental/migrate_gradual_types/operation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/migrate_gradual_types 2025-08-14T20:47:57.8982500Z 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-08-14T20:47:57.8989950Z 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-08-14T20:47:57.8997190Z 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-08-14T20:47:57.9019690Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/multipledispatch 2025-08-14T20:47:57.9020400Z copying torch/fx/experimental/unification/multipledispatch/dispatcher.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/multipledispatch 2025-08-14T20:47:57.9027860Z copying torch/fx/experimental/unification/multipledispatch/variadic.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/multipledispatch 2025-08-14T20:47:57.9035200Z copying torch/fx/experimental/unification/multipledispatch/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/multipledispatch 2025-08-14T20:47:57.9042150Z copying torch/fx/experimental/unification/multipledispatch/core.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/multipledispatch 2025-08-14T20:47:57.9049460Z copying torch/fx/experimental/unification/multipledispatch/conflict.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/multipledispatch 2025-08-14T20:47:57.9056260Z copying torch/fx/experimental/unification/multipledispatch/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/multipledispatch 2025-08-14T20:47:57.9064290Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/infra 2025-08-14T20:47:57.9064790Z copying torch/fx/passes/infra/partitioner.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/infra 2025-08-14T20:47:57.9079220Z copying torch/fx/passes/infra/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/infra 2025-08-14T20:47:57.9087150Z copying torch/fx/passes/infra/pass_base.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/infra 2025-08-14T20:47:57.9094710Z copying torch/fx/passes/infra/pass_manager.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/infra 2025-08-14T20:47:57.9102660Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/backends 2025-08-14T20:47:57.9103120Z copying torch/fx/passes/backends/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/backends 2025-08-14T20:47:57.9104030Z copying torch/fx/passes/backends/cudagraphs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/backends 2025-08-14T20:47:57.9112050Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/tests 2025-08-14T20:47:57.9112480Z copying torch/fx/passes/tests/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/tests 2025-08-14T20:47:57.9113260Z copying torch/fx/passes/tests/test_pass_manager.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/tests 2025-08-14T20:47:57.9122020Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/utils 2025-08-14T20:47:57.9122500Z copying torch/fx/passes/utils/source_matcher_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/utils 2025-08-14T20:47:57.9130220Z 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-08-14T20:47:57.9136950Z copying torch/fx/passes/utils/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/utils 2025-08-14T20:47:57.9144380Z copying torch/fx/passes/utils/common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/utils 2025-08-14T20:47:57.9151390Z copying torch/fx/passes/utils/matcher_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/utils 2025-08-14T20:47:57.9166330Z copying torch/fx/passes/utils/fuser_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/utils 2025-08-14T20:47:57.9173870Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/dialect 2025-08-14T20:47:57.9174310Z copying torch/fx/passes/dialect/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/dialect 2025-08-14T20:47:57.9175860Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/dialect/common 2025-08-14T20:47:57.9176370Z copying torch/fx/passes/dialect/common/cse_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/dialect/common 2025-08-14T20:47:57.9184200Z copying torch/fx/passes/dialect/common/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/dialect/common 2025-08-14T20:47:57.9185660Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/amp 2025-08-14T20:47:57.9186280Z copying torch/cuda/amp/autocast_mode.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/amp 2025-08-14T20:47:57.9194460Z copying torch/cuda/amp/grad_scaler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/amp 2025-08-14T20:47:57.9201690Z copying torch/cuda/amp/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/amp 2025-08-14T20:47:57.9209360Z copying torch/cuda/amp/common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/amp 2025-08-14T20:47:57.9217890Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/opt_einsum 2025-08-14T20:47:57.9218360Z copying torch/backends/opt_einsum/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/opt_einsum 2025-08-14T20:47:57.9226150Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/mha 2025-08-14T20:47:57.9226560Z copying torch/backends/mha/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/mha 2025-08-14T20:47:57.9234670Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/nnpack 2025-08-14T20:47:57.9235100Z copying torch/backends/nnpack/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/nnpack 2025-08-14T20:47:57.9243180Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/mps 2025-08-14T20:47:57.9243590Z copying torch/backends/mps/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/mps 2025-08-14T20:47:57.9251590Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cpu 2025-08-14T20:47:57.9252040Z copying torch/backends/cpu/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cpu 2025-08-14T20:47:57.9259410Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/_coreml 2025-08-14T20:47:57.9259880Z copying torch/backends/_coreml/preprocess.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/_coreml 2025-08-14T20:47:57.9267970Z copying torch/backends/_coreml/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/_coreml 2025-08-14T20:47:57.9268910Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cuda 2025-08-14T20:47:57.9269450Z copying torch/backends/cuda/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cuda 2025-08-14T20:47:57.9285450Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/quantized 2025-08-14T20:47:57.9285910Z copying torch/backends/quantized/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/quantized 2025-08-14T20:47:57.9294050Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/miopen 2025-08-14T20:47:57.9294500Z copying torch/backends/miopen/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/miopen 2025-08-14T20:47:57.9302870Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/mkl 2025-08-14T20:47:57.9303280Z copying torch/backends/mkl/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/mkl 2025-08-14T20:47:57.9310840Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/xnnpack 2025-08-14T20:47:57.9311280Z copying torch/backends/xnnpack/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/xnnpack 2025-08-14T20:47:57.9319190Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/kleidiai 2025-08-14T20:47:57.9319630Z copying torch/backends/kleidiai/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/kleidiai 2025-08-14T20:47:57.9327120Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cusparselt 2025-08-14T20:47:57.9327590Z copying torch/backends/cusparselt/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cusparselt 2025-08-14T20:47:57.9334800Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/mkldnn 2025-08-14T20:47:57.9335300Z copying torch/backends/mkldnn/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/mkldnn 2025-08-14T20:47:57.9342890Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/xeon 2025-08-14T20:47:57.9343310Z copying torch/backends/xeon/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/xeon 2025-08-14T20:47:57.9344040Z copying torch/backends/xeon/run_cpu.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/xeon 2025-08-14T20:47:57.9359600Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/_nnapi 2025-08-14T20:47:57.9360030Z copying torch/backends/_nnapi/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/_nnapi 2025-08-14T20:47:57.9360800Z copying torch/backends/_nnapi/serializer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/_nnapi 2025-08-14T20:47:57.9390670Z copying torch/backends/_nnapi/prepare.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/_nnapi 2025-08-14T20:47:57.9398660Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/openmp 2025-08-14T20:47:57.9399100Z copying torch/backends/openmp/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/openmp 2025-08-14T20:47:57.9406610Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cudnn 2025-08-14T20:47:57.9407030Z copying torch/backends/cudnn/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cudnn 2025-08-14T20:47:57.9414260Z copying torch/backends/cudnn/rnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cudnn 2025-08-14T20:47:57.9422790Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor 2025-08-14T20:47:57.9423260Z copying torch/masked/maskedtensor/binary.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor 2025-08-14T20:47:57.9430700Z copying torch/masked/maskedtensor/creation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor 2025-08-14T20:47:57.9437430Z copying torch/masked/maskedtensor/_ops_refs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor 2025-08-14T20:47:57.9452200Z copying torch/masked/maskedtensor/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor 2025-08-14T20:47:57.9459140Z copying torch/masked/maskedtensor/core.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor 2025-08-14T20:47:57.9466660Z copying torch/masked/maskedtensor/unary.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor 2025-08-14T20:47:57.9474150Z copying torch/masked/maskedtensor/reductions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor 2025-08-14T20:47:57.9481290Z copying torch/masked/maskedtensor/passthrough.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor 2025-08-14T20:47:57.9489510Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/optim/_multi_tensor 2025-08-14T20:47:57.9490020Z copying torch/optim/_multi_tensor/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim/_multi_tensor 2025-08-14T20:47:57.9498170Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/analysis 2025-08-14T20:47:57.9498630Z copying torch/_inductor/analysis/device_info.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/analysis 2025-08-14T20:47:57.9505890Z copying torch/_inductor/analysis/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/analysis 2025-08-14T20:47:57.9506790Z copying torch/_inductor/analysis/profile_analysis.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/analysis 2025-08-14T20:47:57.9524080Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-08-14T20:47:57.9524550Z copying torch/_inductor/runtime/cache_dir_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-08-14T20:47:57.9531970Z copying torch/_inductor/runtime/triton_heuristics.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-08-14T20:47:57.9563100Z copying torch/_inductor/runtime/runtime_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-08-14T20:47:57.9572670Z copying torch/_inductor/runtime/halide_helpers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-08-14T20:47:57.9579570Z copying torch/_inductor/runtime/coordinate_descent_tuner.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-08-14T20:47:57.9586400Z copying torch/_inductor/runtime/triton_compat.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-08-14T20:47:57.9593020Z copying torch/_inductor/runtime/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-08-14T20:47:57.9593830Z copying torch/_inductor/runtime/compile_tasks.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-08-14T20:47:57.9601950Z copying torch/_inductor/runtime/triton_helpers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-08-14T20:47:57.9616060Z copying torch/_inductor/runtime/autotune_cache.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-08-14T20:47:57.9630200Z copying torch/_inductor/runtime/hints.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-08-14T20:47:57.9637310Z copying torch/_inductor/runtime/static_cuda_launcher.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-08-14T20:47:57.9645140Z copying torch/_inductor/runtime/benchmarking.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-08-14T20:47:57.9653010Z copying torch/_inductor/runtime/debug_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-08-14T20:47:57.9663790Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-14T20:47:57.9664290Z copying torch/_inductor/codegen/cpp_grouped_gemm_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-14T20:47:57.9679250Z copying torch/_inductor/codegen/cpp_wrapper_gpu.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-14T20:47:57.9693280Z copying torch/_inductor/codegen/wrapper.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-14T20:47:57.9694840Z copying torch/_inductor/codegen/mps_device_op_overrides.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-14T20:47:57.9702160Z copying torch/_inductor/codegen/triton_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-14T20:47:57.9710190Z copying torch/_inductor/codegen/triton.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-14T20:47:57.9712010Z copying torch/_inductor/codegen/cpp_bmm_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-14T20:47:57.9720210Z copying torch/_inductor/codegen/mps.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-14T20:47:57.9734710Z copying torch/_inductor/codegen/aoti_hipify_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-14T20:47:57.9742390Z copying torch/_inductor/codegen/simd.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-14T20:47:57.9772980Z copying torch/_inductor/codegen/triton_combo_kernel.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-14T20:47:57.9789550Z copying torch/_inductor/codegen/memory_planning.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-14T20:47:57.9804980Z copying torch/_inductor/codegen/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-14T20:47:57.9805670Z copying torch/_inductor/codegen/cpp_flex_attention_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-14T20:47:57.9819740Z copying torch/_inductor/codegen/wrapper_fxir.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-14T20:47:57.9834370Z copying torch/_inductor/codegen/cpp_micro_gemm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-14T20:47:57.9855990Z copying torch/_inductor/codegen/cpp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-14T20:47:57.9896850Z copying torch/_inductor/codegen/cpp_wrapper_cpu.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-14T20:47:57.9898480Z copying torch/_inductor/codegen/block_analysis.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-14T20:47:57.9906790Z copying torch/_inductor/codegen/common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-14T20:47:57.9935410Z copying torch/_inductor/codegen/cpp_wrapper_mps.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-14T20:47:57.9943430Z copying torch/_inductor/codegen/cpp_template_kernel.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-14T20:47:57.9957460Z copying torch/_inductor/codegen/cpp_gemm_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-14T20:47:57.9979640Z copying torch/_inductor/codegen/cpu_device_op_overrides.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-14T20:47:57.9988070Z copying torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-14T20:47:58.0002890Z copying torch/_inductor/codegen/triton_split_scan.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-14T20:47:58.0010180Z copying torch/_inductor/codegen/halide.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-14T20:47:58.0032550Z copying torch/_inductor/codegen/cpp_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-14T20:47:58.0040080Z copying torch/_inductor/codegen/cuda_combined_scheduling.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-14T20:47:58.0046580Z copying torch/_inductor/codegen/multi_kernel.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-14T20:47:58.0061960Z copying torch/_inductor/codegen/subgraph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-14T20:47:58.0068690Z copying torch/_inductor/codegen/python_wrapper_mtia.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-14T20:47:58.0076050Z copying torch/_inductor/codegen/cpp_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-14T20:47:58.0089670Z copying torch/_inductor/codegen/debug_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-14T20:47:58.0097370Z copying torch/_inductor/codegen/simd_kernel_features.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-14T20:47:58.0112440Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_worker 2025-08-14T20:47:58.0112980Z copying torch/_inductor/compile_worker/tracked_process_pool.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_worker 2025-08-14T20:47:58.0120120Z copying torch/_inductor/compile_worker/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_worker 2025-08-14T20:47:58.0120710Z copying torch/_inductor/compile_worker/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_worker 2025-08-14T20:47:58.0127850Z copying torch/_inductor/compile_worker/subproc_pool.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_worker 2025-08-14T20:47:58.0128740Z copying torch/_inductor/compile_worker/__main__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_worker 2025-08-14T20:47:58.0136580Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic 2025-08-14T20:47:58.0137220Z copying torch/_inductor/autoheuristic/autoheuristic.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic 2025-08-14T20:47:58.0145150Z copying torch/_inductor/autoheuristic/autoheuristic_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic 2025-08-14T20:47:58.0153130Z copying torch/_inductor/autoheuristic/learned_heuristic_controller.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic 2025-08-14T20:47:58.0160500Z copying torch/_inductor/autoheuristic/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic 2025-08-14T20:47:58.0161220Z copying torch/_inductor/autoheuristic/learnedheuristic_interface.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic 2025-08-14T20:47:58.0171230Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-08-14T20:47:58.0171700Z copying torch/_inductor/fx_passes/post_grad.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-08-14T20:47:58.0173140Z copying torch/_inductor/fx_passes/fsdp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-08-14T20:47:58.0181610Z copying torch/_inductor/fx_passes/replace_random.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-08-14T20:47:58.0188690Z copying torch/_inductor/fx_passes/ddp_fusion.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-08-14T20:47:58.0202650Z copying torch/_inductor/fx_passes/numeric_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-08-14T20:47:58.0209740Z copying torch/_inductor/fx_passes/decompose_mem_bound_mm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-08-14T20:47:58.0217040Z copying torch/_inductor/fx_passes/reinplace.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-08-14T20:47:58.0231260Z copying torch/_inductor/fx_passes/quantization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-08-14T20:47:58.0262460Z copying torch/_inductor/fx_passes/split_cat.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-08-14T20:47:58.0263960Z copying torch/_inductor/fx_passes/dedupe_symint_uses.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-08-14T20:47:58.0273680Z copying torch/_inductor/fx_passes/efficient_conv_bn_eval.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-08-14T20:47:58.0280930Z copying torch/_inductor/fx_passes/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-08-14T20:47:58.0281500Z copying torch/_inductor/fx_passes/group_batch_fusion.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-08-14T20:47:58.0302490Z copying torch/_inductor/fx_passes/pre_grad.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-08-14T20:47:58.0316250Z copying torch/_inductor/fx_passes/binary_folding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-08-14T20:47:58.0330750Z copying torch/_inductor/fx_passes/fuse_attention.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-08-14T20:47:58.0344470Z copying torch/_inductor/fx_passes/micro_pipeline_tp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-08-14T20:47:58.0358300Z copying torch/_inductor/fx_passes/joint_graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-08-14T20:47:58.0373450Z copying torch/_inductor/fx_passes/bucketing.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-08-14T20:47:58.0388400Z copying torch/_inductor/fx_passes/b2b_gemm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-08-14T20:47:58.0402950Z copying torch/_inductor/fx_passes/mkldnn_fusion.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-08-14T20:47:58.0424900Z copying torch/_inductor/fx_passes/pad_mm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-08-14T20:47:58.0439920Z copying torch/_inductor/fx_passes/freezing_patterns.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-08-14T20:47:58.0447210Z copying torch/_inductor/fx_passes/misc_patterns.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-08-14T20:47:58.0455670Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel 2025-08-14T20:47:58.0456130Z copying torch/_inductor/kernel/mm_common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel 2025-08-14T20:47:58.0463710Z copying torch/_inductor/kernel/mm_grouped.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel 2025-08-14T20:47:58.0477850Z copying torch/_inductor/kernel/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel 2025-08-14T20:47:58.0484320Z copying torch/_inductor/kernel/mm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel 2025-08-14T20:47:58.0498590Z copying torch/_inductor/kernel/bmm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel 2025-08-14T20:47:58.0507260Z copying torch/_inductor/kernel/conv.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel 2025-08-14T20:47:58.0523310Z copying torch/_inductor/kernel/mm_plus_mm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel 2025-08-14T20:47:58.0531750Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/package 2025-08-14T20:47:58.0532240Z copying torch/_inductor/package/package.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/package 2025-08-14T20:47:58.0539920Z copying torch/_inductor/package/build_package.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/package 2025-08-14T20:47:58.0546940Z copying torch/_inductor/package/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/package 2025-08-14T20:47:58.0555910Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-08-14T20:47:58.0556420Z copying torch/_inductor/codegen/cuda/cutlass_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-08-14T20:47:58.0557980Z copying torch/_inductor/codegen/cuda/cuda_cpp_scheduling.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-08-14T20:47:58.0565360Z copying torch/_inductor/codegen/cuda/cuda_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-08-14T20:47:58.0572820Z copying torch/_inductor/codegen/cuda/gemm_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-08-14T20:47:58.0595510Z copying torch/_inductor/codegen/cuda/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-08-14T20:47:58.0596160Z copying torch/_inductor/codegen/cuda/cutlass_presets.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-08-14T20:47:58.0603580Z copying torch/_inductor/codegen/cuda/cutlass_python_evt.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-08-14T20:47:58.0611500Z copying torch/_inductor/codegen/cuda/device_op_overrides.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-08-14T20:47:58.0619060Z copying torch/_inductor/codegen/cuda/cuda_env.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-08-14T20:47:58.0626050Z copying torch/_inductor/codegen/cuda/serialization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-08-14T20:47:58.0640140Z copying torch/_inductor/codegen/cuda/cutlass_cache.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-08-14T20:47:58.0647180Z copying torch/_inductor/codegen/cuda/cuda_kernel.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-08-14T20:47:58.0661280Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/xpu 2025-08-14T20:47:58.0661780Z copying torch/_inductor/codegen/xpu/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/xpu 2025-08-14T20:47:58.0662570Z copying torch/_inductor/codegen/xpu/device_op_overrides.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/xpu 2025-08-14T20:47:58.0670720Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/mtia 2025-08-14T20:47:58.0671210Z copying torch/_inductor/codegen/mtia/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/mtia 2025-08-14T20:47:58.0671970Z copying torch/_inductor/codegen/mtia/device_op_overrides.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/mtia 2025-08-14T20:47:58.0680220Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-08-14T20:47:58.0680730Z copying torch/_inductor/codegen/rocm/ck_tile_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-08-14T20:47:58.0688150Z copying torch/_inductor/codegen/rocm/rocm_cpp_scheduling.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-08-14T20:47:58.0695140Z copying torch/_inductor/codegen/rocm/rocm_kernel.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-08-14T20:47:58.0703130Z copying torch/_inductor/codegen/rocm/rocm_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-08-14T20:47:58.0710420Z copying torch/_inductor/codegen/rocm/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-08-14T20:47:58.0711030Z copying torch/_inductor/codegen/rocm/compile_command.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-08-14T20:47:58.0718520Z copying torch/_inductor/codegen/rocm/rocm_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-08-14T20:47:58.0726110Z copying torch/_inductor/codegen/rocm/ck_conv_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-08-14T20:47:58.0740480Z copying torch/_inductor/codegen/rocm/rocm_template_buffer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-08-14T20:47:58.0747990Z copying torch/_inductor/codegen/rocm/ck_universal_gemm_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-08-14T20:47:58.0761930Z copying torch/_inductor/codegen/rocm/ck_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-08-14T20:47:58.0769610Z copying torch/_inductor/codegen/rocm/rocm_benchmark_request.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-08-14T20:47:58.0776500Z copying torch/_inductor/codegen/rocm/ck_tile_universal_gemm_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-08-14T20:47:58.0792200Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions 2025-08-14T20:47:58.0792920Z 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-08-14T20:47:58.0807090Z 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-08-14T20:47:58.0807930Z 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-08-14T20:47:58.0815970Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports 2025-08-14T20:47:58.0816800Z 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-08-14T20:47:58.0818180Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/cuda 2025-08-14T20:47:58.0819060Z 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-08-14T20:47:58.0827200Z 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-08-14T20:47:58.0834440Z 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-08-14T20:47:58.0841420Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/pydot 2025-08-14T20:47:58.0842300Z 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-08-14T20:47:58.0850030Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/scipy 2025-08-14T20:47:58.0850890Z 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-08-14T20:47:58.0857520Z 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-08-14T20:47:58.0864950Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/artifacts 2025-08-14T20:47:58.0865540Z copying torch/_inductor/autoheuristic/artifacts/_MixedMMH100.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/artifacts 2025-08-14T20:47:58.0873240Z copying torch/_inductor/autoheuristic/artifacts/_PadMMA100.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/artifacts 2025-08-14T20:47:58.0880760Z copying torch/_inductor/autoheuristic/artifacts/_MMRankingH100.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/artifacts 2025-08-14T20:47:58.0895510Z copying torch/_inductor/autoheuristic/artifacts/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/artifacts 2025-08-14T20:47:58.0896230Z copying torch/_inductor/autoheuristic/artifacts/_MMRankingA100.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/artifacts 2025-08-14T20:47:58.0911800Z copying torch/_inductor/autoheuristic/artifacts/_MixedMMA100.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/artifacts 2025-08-14T20:47:58.0921950Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-08-14T20:47:58.0922580Z 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-08-14T20:47:58.0930870Z 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-08-14T20:47:58.0944570Z 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-08-14T20:47:58.0952480Z 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-08-14T20:47:58.0967490Z 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-08-14T20:47:58.0975640Z 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-08-14T20:47:58.0983990Z 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-08-14T20:47:58.0998080Z copying torch/_inductor/fx_passes/serialized_patterns/addmm_gelu_pattern_2.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-08-14T20:47:58.0998930Z 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-08-14T20:47:58.1007150Z 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-08-14T20:47:58.1014790Z 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-08-14T20:47:58.1021880Z copying torch/_inductor/fx_passes/serialized_patterns/addmm_relu_pattern_2.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-08-14T20:47:58.1022760Z 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-08-14T20:47:58.1037060Z copying torch/_inductor/fx_passes/serialized_patterns/addmm_relu_pattern.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-08-14T20:47:58.1037880Z copying torch/_inductor/fx_passes/serialized_patterns/addmm_gelu_pattern.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-08-14T20:47:58.1039000Z copying torch/_inductor/fx_passes/serialized_patterns/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-08-14T20:47:58.1039910Z 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-08-14T20:47:58.1048260Z 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-08-14T20:47:58.1055660Z 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-08-14T20:47:58.1063330Z 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-08-14T20:47:58.1070540Z 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-08-14T20:47:58.1085060Z 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-08-14T20:47:58.1092750Z 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-08-14T20:47:58.1100530Z 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-08-14T20:47:58.1108350Z 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-08-14T20:47:58.1116080Z 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-08-14T20:47:58.1123250Z 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-08-14T20:47:58.1131630Z 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-08-14T20:47:58.1139730Z 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-08-14T20:47:58.1146930Z 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-08-14T20:47:58.1154670Z 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-08-14T20:47:58.1162720Z 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-08-14T20:47:58.1170390Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex 2025-08-14T20:47:58.1170890Z copying torch/_inductor/kernel/flex/flex_decoding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex 2025-08-14T20:47:58.1178510Z copying torch/_inductor/kernel/flex/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex 2025-08-14T20:47:58.1185940Z copying torch/_inductor/kernel/flex/flex_cpu.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex 2025-08-14T20:47:58.1193170Z copying torch/_inductor/kernel/flex/common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex 2025-08-14T20:47:58.1201130Z copying torch/_inductor/kernel/flex/flex_attention.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex 2025-08-14T20:47:58.1216710Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark 2025-08-14T20:47:58.1217150Z copying torch/utils/benchmark/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark 2025-08-14T20:47:58.1225680Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy 2025-08-14T20:47:58.1226100Z copying torch/utils/_sympy/functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy 2025-08-14T20:47:58.1248480Z copying torch/utils/_sympy/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy 2025-08-14T20:47:58.1249080Z copying torch/utils/_sympy/symbol.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy 2025-08-14T20:47:58.1256460Z copying torch/utils/_sympy/numbers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy 2025-08-14T20:47:58.1264700Z copying torch/utils/_sympy/reference.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy 2025-08-14T20:47:58.1272900Z copying torch/utils/_sympy/singleton_int.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy 2025-08-14T20:47:58.1280480Z copying torch/utils/_sympy/value_ranges.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy 2025-08-14T20:47:58.1294010Z copying torch/utils/_sympy/printers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy 2025-08-14T20:47:58.1308220Z copying torch/utils/_sympy/solve.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy 2025-08-14T20:47:58.1315550Z copying torch/utils/_sympy/interp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy 2025-08-14T20:47:58.1323560Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/serialization 2025-08-14T20:47:58.1324030Z copying torch/utils/serialization/config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/serialization 2025-08-14T20:47:58.1330720Z copying torch/utils/serialization/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/serialization 2025-08-14T20:47:58.1338660Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/backcompat 2025-08-14T20:47:58.1339110Z copying torch/utils/backcompat/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/backcompat 2025-08-14T20:47:58.1347530Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/hipify 2025-08-14T20:47:58.1347950Z copying torch/utils/hipify/version.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/hipify 2025-08-14T20:47:58.1355280Z copying torch/utils/hipify/cuda_to_hip_mappings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/hipify 2025-08-14T20:47:58.1409490Z copying torch/utils/hipify/constants.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/hipify 2025-08-14T20:47:58.1417830Z copying torch/utils/hipify/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/hipify 2025-08-14T20:47:58.1425130Z copying torch/utils/hipify/hipify_python.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/hipify 2025-08-14T20:47:58.1440120Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/bottleneck 2025-08-14T20:47:58.1440560Z copying torch/utils/bottleneck/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/bottleneck 2025-08-14T20:47:58.1441370Z copying torch/utils/bottleneck/__main__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/bottleneck 2025-08-14T20:47:58.1449700Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/viz 2025-08-14T20:47:58.1450100Z copying torch/utils/viz/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/viz 2025-08-14T20:47:58.1450830Z copying torch/utils/viz/_cycles.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/viz 2025-08-14T20:47:58.1465100Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/jit 2025-08-14T20:47:58.1465480Z copying torch/utils/jit/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/jit 2025-08-14T20:47:58.1466260Z copying torch/utils/jit/log_extract.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/jit 2025-08-14T20:47:58.1474690Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard 2025-08-14T20:47:58.1475160Z copying torch/utils/tensorboard/_pytorch_graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard 2025-08-14T20:47:58.1482560Z copying torch/utils/tensorboard/_proto_graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard 2025-08-14T20:47:58.1489550Z copying torch/utils/tensorboard/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard 2025-08-14T20:47:58.1496720Z copying torch/utils/tensorboard/_embedding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard 2025-08-14T20:47:58.1503810Z copying torch/utils/tensorboard/_onnx_graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard 2025-08-14T20:47:58.1511150Z copying torch/utils/tensorboard/summary.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard 2025-08-14T20:47:58.1526620Z copying torch/utils/tensorboard/_convert_np.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard 2025-08-14T20:47:58.1533650Z copying torch/utils/tensorboard/writer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard 2025-08-14T20:47:58.1549120Z copying torch/utils/tensorboard/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard 2025-08-14T20:47:58.1558270Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/model_dump 2025-08-14T20:47:58.1558720Z copying torch/utils/model_dump/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/model_dump 2025-08-14T20:47:58.1571680Z copying torch/utils/model_dump/__main__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/model_dump 2025-08-14T20:47:58.1580360Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data 2025-08-14T20:47:58.1580800Z copying torch/utils/data/graph_settings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data 2025-08-14T20:47:58.1588310Z copying torch/utils/data/graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data 2025-08-14T20:47:58.1595980Z copying torch/utils/data/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data 2025-08-14T20:47:58.1603190Z copying torch/utils/data/dataset.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data 2025-08-14T20:47:58.1617860Z copying torch/utils/data/distributed.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data 2025-08-14T20:47:58.1624870Z copying torch/utils/data/backward_compatibility.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data 2025-08-14T20:47:58.1631570Z copying torch/utils/data/dataloader.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data 2025-08-14T20:47:58.1653590Z copying torch/utils/data/sampler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data 2025-08-14T20:47:58.1662250Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_strobelight 2025-08-14T20:47:58.1662740Z copying torch/utils/_strobelight/cli_function_profiler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_strobelight 2025-08-14T20:47:58.1670380Z copying torch/utils/_strobelight/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_strobelight 2025-08-14T20:47:58.1672120Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/op_fuzzers 2025-08-14T20:47:58.1672800Z copying torch/utils/benchmark/op_fuzzers/binary.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/op_fuzzers 2025-08-14T20:47:58.1680900Z copying torch/utils/benchmark/op_fuzzers/sparse_binary.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/op_fuzzers 2025-08-14T20:47:58.1688130Z copying torch/utils/benchmark/op_fuzzers/sparse_unary.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/op_fuzzers 2025-08-14T20:47:58.1694790Z copying torch/utils/benchmark/op_fuzzers/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/op_fuzzers 2025-08-14T20:47:58.1695420Z copying torch/utils/benchmark/op_fuzzers/spectral.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/op_fuzzers 2025-08-14T20:47:58.1703340Z copying torch/utils/benchmark/op_fuzzers/unary.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/op_fuzzers 2025-08-14T20:47:58.1711720Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils 2025-08-14T20:47:58.1712220Z copying torch/utils/benchmark/utils/timer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils 2025-08-14T20:47:58.1726870Z copying torch/utils/benchmark/utils/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils 2025-08-14T20:47:58.1727580Z copying torch/utils/benchmark/utils/sparse_fuzzer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils 2025-08-14T20:47:58.1735240Z copying torch/utils/benchmark/utils/common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils 2025-08-14T20:47:58.1742600Z copying torch/utils/benchmark/utils/compile.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils 2025-08-14T20:47:58.1749890Z copying torch/utils/benchmark/utils/fuzzer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils 2025-08-14T20:47:58.1764080Z copying torch/utils/benchmark/utils/cpp_jit.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils 2025-08-14T20:47:58.1771400Z copying torch/utils/benchmark/utils/compare.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils 2025-08-14T20:47:58.1779590Z copying torch/utils/benchmark/utils/_stubs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils 2025-08-14T20:47:58.1788040Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/examples 2025-08-14T20:47:58.1788620Z copying torch/utils/benchmark/examples/op_benchmark.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/examples 2025-08-14T20:47:58.1795710Z copying torch/utils/benchmark/examples/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/examples 2025-08-14T20:47:58.1796580Z copying torch/utils/benchmark/examples/simple_timeit.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/examples 2025-08-14T20:47:58.1803850Z copying torch/utils/benchmark/examples/fuzzer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/examples 2025-08-14T20:47:58.1811100Z copying torch/utils/benchmark/examples/spectral_ops_fuzz_test.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/examples 2025-08-14T20:47:58.1818250Z copying torch/utils/benchmark/examples/compare.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/examples 2025-08-14T20:47:58.1825850Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/valgrind_wrapper 2025-08-14T20:47:58.1826510Z 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-08-14T20:47:58.1842350Z copying torch/utils/benchmark/utils/valgrind_wrapper/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/valgrind_wrapper 2025-08-14T20:47:58.1843940Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/_utils 2025-08-14T20:47:58.1844590Z copying torch/utils/data/_utils/fetch.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/_utils 2025-08-14T20:47:58.1851760Z copying torch/utils/data/_utils/worker.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/_utils 2025-08-14T20:47:58.1859700Z copying torch/utils/data/_utils/collate.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/_utils 2025-08-14T20:47:58.1867650Z copying torch/utils/data/_utils/pin_memory.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/_utils 2025-08-14T20:47:58.1875960Z copying torch/utils/data/_utils/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/_utils 2025-08-14T20:47:58.1883250Z copying torch/utils/data/_utils/signal_handling.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/_utils 2025-08-14T20:47:58.1891610Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes 2025-08-14T20:47:58.1892120Z copying torch/utils/data/datapipes/_decorator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes 2025-08-14T20:47:58.1900430Z copying torch/utils/data/datapipes/_typing.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes 2025-08-14T20:47:58.1908310Z copying torch/utils/data/datapipes/_hook_iterator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes 2025-08-14T20:47:58.1915830Z copying torch/utils/data/datapipes/datapipe.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes 2025-08-14T20:47:58.1929190Z copying torch/utils/data/datapipes/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes 2025-08-14T20:47:58.1936300Z copying torch/utils/data/datapipes/gen_pyi.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes 2025-08-14T20:47:58.1938570Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/dataframe 2025-08-14T20:47:58.1939230Z copying torch/utils/data/datapipes/dataframe/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/dataframe 2025-08-14T20:47:58.1946630Z copying torch/utils/data/datapipes/dataframe/datapipes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/dataframe 2025-08-14T20:47:58.1954010Z copying torch/utils/data/datapipes/dataframe/dataframe_wrapper.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/dataframe 2025-08-14T20:47:58.1961080Z copying torch/utils/data/datapipes/dataframe/structures.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/dataframe 2025-08-14T20:47:58.1967940Z copying torch/utils/data/datapipes/dataframe/dataframes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/dataframe 2025-08-14T20:47:58.1976410Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-08-14T20:47:58.1976950Z copying torch/utils/data/datapipes/iter/fileopener.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-08-14T20:47:58.1977990Z copying torch/utils/data/datapipes/iter/callable.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-08-14T20:47:58.1979140Z copying torch/utils/data/datapipes/iter/sharding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-08-14T20:47:58.1980200Z copying torch/utils/data/datapipes/iter/grouping.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-08-14T20:47:58.1981280Z copying torch/utils/data/datapipes/iter/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-08-14T20:47:58.1988450Z copying torch/utils/data/datapipes/iter/selecting.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-08-14T20:47:58.1989550Z copying torch/utils/data/datapipes/iter/combining.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-08-14T20:47:58.1990850Z copying torch/utils/data/datapipes/iter/filelister.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-08-14T20:47:58.1991990Z copying torch/utils/data/datapipes/iter/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-08-14T20:47:58.1999770Z copying torch/utils/data/datapipes/iter/combinatorics.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-08-14T20:47:58.2000780Z copying torch/utils/data/datapipes/iter/streamreader.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-08-14T20:47:58.2001930Z copying torch/utils/data/datapipes/iter/routeddecoder.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-08-14T20:47:58.2004250Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/utils 2025-08-14T20:47:58.2004790Z copying torch/utils/data/datapipes/utils/decoder.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/utils 2025-08-14T20:47:58.2012940Z copying torch/utils/data/datapipes/utils/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/utils 2025-08-14T20:47:58.2013600Z copying torch/utils/data/datapipes/utils/common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/utils 2025-08-14T20:47:58.2021780Z copying torch/utils/data/datapipes/utils/snapshot.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/utils 2025-08-14T20:47:58.2030410Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/map 2025-08-14T20:47:58.2030940Z copying torch/utils/data/datapipes/map/callable.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/map 2025-08-14T20:47:58.2031770Z copying torch/utils/data/datapipes/map/grouping.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/map 2025-08-14T20:47:58.2032900Z copying torch/utils/data/datapipes/map/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/map 2025-08-14T20:47:58.2040440Z copying torch/utils/data/datapipes/map/combining.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/map 2025-08-14T20:47:58.2041650Z copying torch/utils/data/datapipes/map/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/map 2025-08-14T20:47:58.2048750Z copying torch/utils/data/datapipes/map/combinatorics.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/map 2025-08-14T20:47:58.2051680Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-08-14T20:47:58.2052130Z copying torch/quantization/fx/graph_module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-08-14T20:47:58.2059670Z copying torch/quantization/fx/fusion_patterns.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-08-14T20:47:58.2067240Z copying torch/quantization/fx/_equalize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-08-14T20:47:58.2074710Z copying torch/quantization/fx/quantization_types.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-08-14T20:47:58.2082310Z copying torch/quantization/fx/convert.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-08-14T20:47:58.2089010Z copying torch/quantization/fx/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-08-14T20:47:58.2095920Z copying torch/quantization/fx/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-08-14T20:47:58.2103510Z copying torch/quantization/fx/pattern_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-08-14T20:47:58.2110590Z copying torch/quantization/fx/fuse.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-08-14T20:47:58.2117850Z copying torch/quantization/fx/match_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-08-14T20:47:58.2124670Z copying torch/quantization/fx/prepare.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-08-14T20:47:58.2131650Z copying torch/quantization/fx/quantization_patterns.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-08-14T20:47:58.2142640Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-14T20:47:58.2143100Z copying torch/testing/_internal/common_dtype.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-14T20:47:58.2150750Z copying torch/testing/_internal/common_pruning.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-14T20:47:58.2159060Z copying torch/testing/_internal/fake_config_module3.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-14T20:47:58.2166090Z copying torch/testing/_internal/hop_db.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-14T20:47:58.2173980Z copying torch/testing/_internal/triton_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-14T20:47:58.2189670Z copying torch/testing/_internal/static_module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-14T20:47:58.2197850Z copying torch/testing/_internal/subclasses.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-14T20:47:58.2204600Z copying torch/testing/_internal/common_nn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-14T20:47:58.2243140Z copying torch/testing/_internal/custom_op_db.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-14T20:47:58.2258570Z copying torch/testing/_internal/fake_config_module2.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-14T20:47:58.2265210Z copying torch/testing/_internal/autocast_test_lists.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-14T20:47:58.2280120Z copying torch/testing/_internal/common_fsdp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-14T20:47:58.2302230Z copying torch/testing/_internal/two_tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-14T20:47:58.2309250Z copying torch/testing/_internal/torchbind_impls.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-14T20:47:58.2316720Z copying torch/testing/_internal/common_optimizers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-14T20:47:58.2344650Z copying torch/testing/_internal/common_device_type.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-14T20:47:58.2367630Z copying torch/testing/_internal/autograd_function_db.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-14T20:47:58.2381800Z copying torch/testing/_internal/common_mkldnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-14T20:47:58.2388670Z copying torch/testing/_internal/inductor_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-14T20:47:58.2396310Z copying torch/testing/_internal/common_distributed.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-14T20:47:58.2418910Z copying torch/testing/_internal/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-14T20:47:58.2419590Z copying torch/testing/_internal/common_methods_invocations.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-14T20:47:58.2504850Z copying torch/testing/_internal/custom_tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-14T20:47:58.2517950Z copying torch/testing/_internal/logging_tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-14T20:47:58.2528690Z copying torch/testing/_internal/hypothesis_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-14T20:47:58.2536040Z copying torch/testing/_internal/common_cuda.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-14T20:47:58.2543210Z copying torch/testing/_internal/common_quantization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-14T20:47:58.2544950Z copying torch/testing/_internal/common_modules.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-14T20:47:58.2585300Z copying torch/testing/_internal/common_jit.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-14T20:47:58.2593060Z copying torch/testing/_internal/common_mps.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-14T20:47:58.2606870Z copying torch/testing/_internal/jit_metaprogramming_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-14T20:47:58.2620010Z copying torch/testing/_internal/dynamo_test_failures.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-14T20:47:58.2627500Z copying torch/testing/_internal/check_kernel_launches.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-14T20:47:58.2634170Z copying torch/testing/_internal/common_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-14T20:47:58.2674730Z copying torch/testing/_internal/quantization_torch_package_models.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-14T20:47:58.2682210Z copying torch/testing/_internal/common_quantized.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-14T20:47:58.2696000Z copying torch/testing/_internal/common_dist_composable.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-14T20:47:58.2703480Z copying torch/testing/_internal/common_subclass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-14T20:47:58.2712010Z copying torch/testing/_internal/composite_compliance.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-14T20:47:58.2726920Z copying torch/testing/_internal/logging_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-14T20:47:58.2734500Z copying torch/testing/_internal/dist_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-14T20:47:58.2741000Z copying torch/testing/_internal/fake_config_module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-14T20:47:58.2747950Z copying torch/testing/_internal/jit_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-14T20:47:58.2762760Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/generated 2025-08-14T20:47:58.2763280Z copying torch/testing/_internal/generated/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/generated 2025-08-14T20:47:58.2763970Z copying torch/testing/_internal/generated/annotated_fn_args.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/generated 2025-08-14T20:47:58.2770190Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo 2025-08-14T20:47:58.2770690Z copying torch/testing/_internal/opinfo/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo 2025-08-14T20:47:58.2776240Z copying torch/testing/_internal/opinfo/core.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo 2025-08-14T20:47:58.2806120Z copying torch/testing/_internal/opinfo/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo 2025-08-14T20:47:58.2814720Z copying torch/testing/_internal/opinfo/refs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo 2025-08-14T20:47:58.2822910Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/test_module 2025-08-14T20:47:58.2823460Z copying torch/testing/_internal/test_module/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/test_module 2025-08-14T20:47:58.2824160Z copying torch/testing/_internal/test_module/future_div.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/test_module 2025-08-14T20:47:58.2831430Z copying torch/testing/_internal/test_module/no_future_div.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/test_module 2025-08-14T20:47:58.2839220Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed 2025-08-14T20:47:58.2839810Z copying torch/testing/_internal/distributed/ddp_under_dist_autograd_test.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed 2025-08-14T20:47:58.2854900Z copying torch/testing/_internal/distributed/fake_pg.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed 2025-08-14T20:47:58.2862200Z copying torch/testing/_internal/distributed/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed 2025-08-14T20:47:58.2862900Z copying torch/testing/_internal/distributed/checkpoint_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed 2025-08-14T20:47:58.2870430Z copying torch/testing/_internal/distributed/distributed_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed 2025-08-14T20:47:58.2877730Z copying torch/testing/_internal/distributed/distributed_test.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed 2025-08-14T20:47:58.2931890Z copying torch/testing/_internal/distributed/multi_threaded_pg.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed 2025-08-14T20:47:58.2946200Z copying torch/testing/_internal/distributed/common_state_dict.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed 2025-08-14T20:47:58.2953020Z copying torch/testing/_internal/distributed/rpc_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed 2025-08-14T20:47:58.2960780Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/optests 2025-08-14T20:47:58.2961290Z copying torch/testing/_internal/optests/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/optests 2025-08-14T20:47:58.2968550Z copying torch/testing/_internal/optests/fake_tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/optests 2025-08-14T20:47:58.2975500Z copying torch/testing/_internal/optests/aot_autograd.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/optests 2025-08-14T20:47:58.2982700Z copying torch/testing/_internal/optests/make_fx.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/optests 2025-08-14T20:47:58.2990190Z copying torch/testing/_internal/optests/generate_tests.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/optests 2025-08-14T20:47:58.3004770Z copying torch/testing/_internal/optests/autograd_registration.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/optests 2025-08-14T20:47:58.3012770Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/codegen 2025-08-14T20:47:58.3013280Z copying torch/testing/_internal/codegen/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/codegen 2025-08-14T20:47:58.3021250Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/data 2025-08-14T20:47:58.3021830Z copying torch/testing/_internal/data/network1.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/data 2025-08-14T20:47:58.3028470Z copying torch/testing/_internal/data/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/data 2025-08-14T20:47:58.3035420Z copying torch/testing/_internal/data/network2.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/data 2025-08-14T20:47:58.3043420Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions 2025-08-14T20:47:58.3044030Z copying torch/testing/_internal/opinfo/definitions/signal.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions 2025-08-14T20:47:58.3051880Z copying torch/testing/_internal/opinfo/definitions/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions 2025-08-14T20:47:58.3059350Z copying torch/testing/_internal/opinfo/definitions/_masked.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions 2025-08-14T20:47:58.3074220Z copying torch/testing/_internal/opinfo/definitions/linalg.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions 2025-08-14T20:47:58.3103380Z copying torch/testing/_internal/opinfo/definitions/sparse.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions 2025-08-14T20:47:58.3119090Z copying torch/testing/_internal/opinfo/definitions/fft.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions 2025-08-14T20:47:58.3133650Z copying torch/testing/_internal/opinfo/definitions/special.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions 2025-08-14T20:47:58.3148380Z copying torch/testing/_internal/opinfo/definitions/nested.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions 2025-08-14T20:47:58.3170800Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_tensor 2025-08-14T20:47:58.3171400Z copying torch/testing/_internal/distributed/_tensor/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_tensor 2025-08-14T20:47:58.3172150Z copying torch/testing/_internal/distributed/_tensor/common_dtensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_tensor 2025-08-14T20:47:58.3186540Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/nn 2025-08-14T20:47:58.3187110Z copying torch/testing/_internal/distributed/nn/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/nn 2025-08-14T20:47:58.3188390Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_shard 2025-08-14T20:47:58.3189040Z copying torch/testing/_internal/distributed/_shard/test_common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_shard 2025-08-14T20:47:58.3196170Z copying torch/testing/_internal/distributed/_shard/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_shard 2025-08-14T20:47:58.3204440Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc 2025-08-14T20:47:58.3205070Z 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-08-14T20:47:58.3212170Z 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-08-14T20:47:58.3218820Z copying torch/testing/_internal/distributed/rpc/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc 2025-08-14T20:47:58.3219540Z copying torch/testing/_internal/distributed/rpc/dist_autograd_test.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc 2025-08-14T20:47:58.3250270Z 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-08-14T20:47:58.3258300Z 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-08-14T20:47:58.3266010Z copying torch/testing/_internal/distributed/rpc/rpc_test.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc 2025-08-14T20:47:58.3309040Z copying torch/testing/_internal/distributed/rpc/dist_optimizer_test.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc 2025-08-14T20:47:58.3318450Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/nn/api 2025-08-14T20:47:58.3319040Z copying torch/testing/_internal/distributed/nn/api/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/nn/api 2025-08-14T20:47:58.3319900Z 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-08-14T20:47:58.3334710Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_shard/sharded_tensor 2025-08-14T20:47:58.3335410Z 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-08-14T20:47:58.3341900Z 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-08-14T20:47:58.3348650Z 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-08-14T20:47:58.3356520Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/jit 2025-08-14T20:47:58.3357140Z copying torch/testing/_internal/distributed/rpc/jit/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/jit 2025-08-14T20:47:58.3357910Z 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-08-14T20:47:58.3364410Z 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-08-14T20:47:58.3379200Z 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-08-14T20:47:58.3387960Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/examples 2025-08-14T20:47:58.3388690Z copying torch/testing/_internal/distributed/rpc/examples/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/examples 2025-08-14T20:47:58.3389560Z 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-08-14T20:47:58.3396570Z 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-08-14T20:47:58.3403830Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_passes 2025-08-14T20:47:58.3404300Z copying torch/jit/_passes/_property_propagation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_passes 2025-08-14T20:47:58.3411820Z copying torch/jit/_passes/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_passes 2025-08-14T20:47:58.3412910Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/jit/mobile 2025-08-14T20:47:58.3413490Z copying torch/jit/mobile/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit/mobile 2025-08-14T20:47:58.3422840Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-08-14T20:47:58.3423280Z copying torch/_dynamo/backends/registry.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-08-14T20:47:58.3430500Z copying torch/_dynamo/backends/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-08-14T20:47:58.3431050Z copying torch/_dynamo/backends/debugging.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-08-14T20:47:58.3438840Z copying torch/_dynamo/backends/distributed.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-08-14T20:47:58.3453270Z copying torch/_dynamo/backends/common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-08-14T20:47:58.3460770Z copying torch/_dynamo/backends/inductor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-08-14T20:47:58.3468230Z copying torch/_dynamo/backends/onnxrt.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-08-14T20:47:58.3475370Z copying torch/_dynamo/backends/tvm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-08-14T20:47:58.3482400Z copying torch/_dynamo/backends/cudagraphs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-08-14T20:47:58.3490050Z copying torch/_dynamo/backends/tensorrt.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-08-14T20:47:58.3497780Z copying torch/_dynamo/backends/torchxla.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-08-14T20:47:58.3507710Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-08-14T20:47:58.3508200Z copying torch/_dynamo/variables/functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-08-14T20:47:58.3536910Z copying torch/_dynamo/variables/iter.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-08-14T20:47:58.3552330Z copying torch/_dynamo/variables/misc.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-08-14T20:47:58.3574820Z copying torch/_dynamo/variables/lists.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-08-14T20:47:58.3589630Z copying torch/_dynamo/variables/script_object.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-08-14T20:47:58.3596740Z copying torch/_dynamo/variables/torch_function.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-08-14T20:47:58.3611210Z copying torch/_dynamo/variables/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-08-14T20:47:58.3618980Z copying torch/_dynamo/variables/user_defined.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-08-14T20:47:58.3647630Z copying torch/_dynamo/variables/nn_module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-08-14T20:47:58.3668940Z copying torch/_dynamo/variables/builder.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-08-14T20:47:58.3670470Z copying torch/_dynamo/variables/tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-08-14T20:47:58.3691330Z copying torch/_dynamo/variables/higher_order_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-08-14T20:47:58.3692740Z copying torch/_dynamo/variables/sdpa.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-08-14T20:47:58.3700290Z copying torch/_dynamo/variables/distributed.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-08-14T20:47:58.3707770Z copying torch/_dynamo/variables/optimizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-08-14T20:47:58.3722550Z copying torch/_dynamo/variables/builtin.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-08-14T20:47:58.3752630Z copying torch/_dynamo/variables/constant.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-08-14T20:47:58.3760640Z copying torch/_dynamo/variables/lazy.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-08-14T20:47:58.3768590Z copying torch/_dynamo/variables/torch.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-08-14T20:47:58.3797090Z copying torch/_dynamo/variables/ctx_manager.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-08-14T20:47:58.3818470Z copying torch/_dynamo/variables/dicts.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-08-14T20:47:58.3833860Z copying torch/_dynamo/variables/base.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-08-14T20:47:58.3849020Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/repro 2025-08-14T20:47:58.3849460Z copying torch/_dynamo/repro/after_dynamo.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/repro 2025-08-14T20:47:58.3864120Z copying torch/_dynamo/repro/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/repro 2025-08-14T20:47:58.3864740Z copying torch/_dynamo/repro/after_aot.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/repro 2025-08-14T20:47:58.3866250Z copying torch/_dynamo/repro/aoti.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/repro 2025-08-14T20:47:58.3882050Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-08-14T20:47:58.3882500Z copying torch/_dynamo/polyfills/functools.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-08-14T20:47:58.3889640Z copying torch/_dynamo/polyfills/builtins.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-08-14T20:47:58.3896410Z copying torch/_dynamo/polyfills/operator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-08-14T20:47:58.3903350Z copying torch/_dynamo/polyfills/os.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-08-14T20:47:58.3910320Z copying torch/_dynamo/polyfills/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-08-14T20:47:58.3917480Z copying torch/_dynamo/polyfills/tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-08-14T20:47:58.3924490Z copying torch/_dynamo/polyfills/loader.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-08-14T20:47:58.3931250Z copying torch/_dynamo/polyfills/fx.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-08-14T20:47:58.3938700Z copying torch/_dynamo/polyfills/struct.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-08-14T20:47:58.3946050Z copying torch/_dynamo/polyfills/sys.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-08-14T20:47:58.3953970Z copying torch/_dynamo/polyfills/pytree.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-08-14T20:47:58.3962080Z copying torch/_dynamo/polyfills/itertools.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-08-14T20:47:58.3970430Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn 2025-08-14T20:47:58.3970790Z copying torch/ao/nn/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn 2025-08-14T20:47:58.3979130Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns 2025-08-14T20:47:58.3979500Z copying torch/ao/ns/_numeric_suite.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns 2025-08-14T20:47:58.3992910Z copying torch/ao/ns/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns 2025-08-14T20:47:58.3993520Z copying torch/ao/ns/_numeric_suite_fx.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns 2025-08-14T20:47:58.4010080Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-08-14T20:47:58.4010540Z copying torch/ao/quantization/observer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-08-14T20:47:58.4033250Z copying torch/ao/quantization/fuse_modules.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-08-14T20:47:58.4041000Z copying torch/ao/quantization/_learnable_fake_quantize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-08-14T20:47:58.4048490Z copying torch/ao/quantization/quantization_mappings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-08-14T20:47:58.4055600Z copying torch/ao/quantization/_correct_bias.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-08-14T20:47:58.4062640Z copying torch/ao/quantization/quantize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-08-14T20:47:58.4077180Z copying torch/ao/quantization/_equalize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-08-14T20:47:58.4085330Z copying torch/ao/quantization/fake_quantize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-08-14T20:47:58.4099060Z copying torch/ao/quantization/qconfig.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-08-14T20:47:58.4113330Z copying torch/ao/quantization/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-08-14T20:47:58.4120700Z copying torch/ao/quantization/qconfig_mapping.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-08-14T20:47:58.4128480Z copying torch/ao/quantization/stubs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-08-14T20:47:58.4136250Z copying torch/ao/quantization/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-08-14T20:47:58.4150920Z copying torch/ao/quantization/fuser_method_mappings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-08-14T20:47:58.4158350Z copying torch/ao/quantization/quantize_jit.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-08-14T20:47:58.4166050Z copying torch/ao/quantization/quantize_pt2e.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-08-14T20:47:58.4174310Z copying torch/ao/quantization/quant_type.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-08-14T20:47:58.4182060Z copying torch/ao/quantization/quantize_fx.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-08-14T20:47:58.4199650Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning 2025-08-14T20:47:58.4200050Z copying torch/ao/pruning/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning 2025-08-14T20:47:58.4207310Z copying torch/ao/pruning/_mappings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning 2025-08-14T20:47:58.4214760Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat 2025-08-14T20:47:58.4215140Z copying torch/ao/nn/qat/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat 2025-08-14T20:47:58.4222330Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized 2025-08-14T20:47:58.4222860Z copying torch/ao/nn/quantized/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized 2025-08-14T20:47:58.4230210Z copying torch/ao/nn/quantized/functional.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized 2025-08-14T20:47:58.4245610Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantizable 2025-08-14T20:47:58.4246060Z copying torch/ao/nn/quantizable/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantizable 2025-08-14T20:47:58.4253970Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic 2025-08-14T20:47:58.4254400Z copying torch/ao/nn/intrinsic/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic 2025-08-14T20:47:58.4261980Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse 2025-08-14T20:47:58.4262390Z copying torch/ao/nn/sparse/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse 2025-08-14T20:47:58.4269550Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/dynamic 2025-08-14T20:47:58.4270070Z copying torch/ao/nn/qat/dynamic/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/dynamic 2025-08-14T20:47:58.4278340Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/modules 2025-08-14T20:47:58.4278800Z copying torch/ao/nn/qat/modules/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/modules 2025-08-14T20:47:58.4285790Z copying torch/ao/nn/qat/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/modules 2025-08-14T20:47:58.4292830Z copying torch/ao/nn/qat/modules/conv.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/modules 2025-08-14T20:47:58.4299780Z copying torch/ao/nn/qat/modules/embedding_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/modules 2025-08-14T20:47:58.4307830Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/dynamic/modules 2025-08-14T20:47:58.4308350Z copying torch/ao/nn/qat/dynamic/modules/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/dynamic/modules 2025-08-14T20:47:58.4315710Z copying torch/ao/nn/qat/dynamic/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/dynamic/modules 2025-08-14T20:47:58.4322940Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/dynamic 2025-08-14T20:47:58.4323450Z copying torch/ao/nn/quantized/dynamic/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/dynamic 2025-08-14T20:47:58.4331420Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-08-14T20:47:58.4331940Z copying torch/ao/nn/quantized/modules/batchnorm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-08-14T20:47:58.4339060Z copying torch/ao/nn/quantized/modules/functional_modules.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-08-14T20:47:58.4346570Z copying torch/ao/nn/quantized/modules/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-08-14T20:47:58.4354640Z copying torch/ao/nn/quantized/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-08-14T20:47:58.4361630Z copying torch/ao/nn/quantized/modules/activation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-08-14T20:47:58.4369170Z copying torch/ao/nn/quantized/modules/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-08-14T20:47:58.4377070Z copying torch/ao/nn/quantized/modules/dropout.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-08-14T20:47:58.4384730Z copying torch/ao/nn/quantized/modules/conv.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-08-14T20:47:58.4399800Z copying torch/ao/nn/quantized/modules/normalization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-08-14T20:47:58.4407570Z copying torch/ao/nn/quantized/modules/rnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-08-14T20:47:58.4415670Z copying torch/ao/nn/quantized/modules/embedding_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-08-14T20:47:58.4423550Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference 2025-08-14T20:47:58.4424070Z copying torch/ao/nn/quantized/reference/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference 2025-08-14T20:47:58.4432170Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/dynamic/modules 2025-08-14T20:47:58.4432740Z copying torch/ao/nn/quantized/dynamic/modules/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/dynamic/modules 2025-08-14T20:47:58.4439540Z copying torch/ao/nn/quantized/dynamic/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/dynamic/modules 2025-08-14T20:47:58.4446160Z copying torch/ao/nn/quantized/dynamic/modules/conv.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/dynamic/modules 2025-08-14T20:47:58.4460420Z copying torch/ao/nn/quantized/dynamic/modules/rnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/dynamic/modules 2025-08-14T20:47:58.4482540Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference/modules 2025-08-14T20:47:58.4483150Z copying torch/ao/nn/quantized/reference/modules/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference/modules 2025-08-14T20:47:58.4490040Z copying torch/ao/nn/quantized/reference/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference/modules 2025-08-14T20:47:58.4497680Z copying torch/ao/nn/quantized/reference/modules/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference/modules 2025-08-14T20:47:58.4504820Z copying torch/ao/nn/quantized/reference/modules/sparse.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference/modules 2025-08-14T20:47:58.4513110Z copying torch/ao/nn/quantized/reference/modules/conv.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference/modules 2025-08-14T20:47:58.4520710Z copying torch/ao/nn/quantized/reference/modules/rnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference/modules 2025-08-14T20:47:58.4535700Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantizable/modules 2025-08-14T20:47:58.4536220Z copying torch/ao/nn/quantizable/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantizable/modules 2025-08-14T20:47:58.4544070Z copying torch/ao/nn/quantizable/modules/activation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantizable/modules 2025-08-14T20:47:58.4558480Z copying torch/ao/nn/quantizable/modules/rnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantizable/modules 2025-08-14T20:47:58.4572850Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/qat 2025-08-14T20:47:58.4573320Z copying torch/ao/nn/intrinsic/qat/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/qat 2025-08-14T20:47:58.4580790Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized 2025-08-14T20:47:58.4581310Z copying torch/ao/nn/intrinsic/quantized/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized 2025-08-14T20:47:58.4589270Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/modules 2025-08-14T20:47:58.4589780Z copying torch/ao/nn/intrinsic/modules/fused.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/modules 2025-08-14T20:47:58.4597570Z copying torch/ao/nn/intrinsic/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/modules 2025-08-14T20:47:58.4605420Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/qat/modules 2025-08-14T20:47:58.4606020Z 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-08-14T20:47:58.4619980Z copying torch/ao/nn/intrinsic/qat/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/qat/modules 2025-08-14T20:47:58.4627720Z 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-08-14T20:47:58.4635510Z 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-08-14T20:47:58.4644080Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/dynamic 2025-08-14T20:47:58.4644660Z copying torch/ao/nn/intrinsic/quantized/dynamic/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/dynamic 2025-08-14T20:47:58.4652860Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/modules 2025-08-14T20:47:58.4653450Z 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-08-14T20:47:58.4660480Z copying torch/ao/nn/intrinsic/quantized/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/modules 2025-08-14T20:47:58.4667410Z 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-08-14T20:47:58.4675080Z 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-08-14T20:47:58.4682910Z 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-08-14T20:47:58.4690710Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/dynamic/modules 2025-08-14T20:47:58.4691370Z 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-08-14T20:47:58.4699080Z 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-08-14T20:47:58.4707290Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse/quantized 2025-08-14T20:47:58.4707790Z copying torch/ao/nn/sparse/quantized/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse/quantized 2025-08-14T20:47:58.4715650Z copying torch/ao/nn/sparse/quantized/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse/quantized 2025-08-14T20:47:58.4723280Z copying torch/ao/nn/sparse/quantized/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse/quantized 2025-08-14T20:47:58.4731310Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse/quantized/dynamic 2025-08-14T20:47:58.4731880Z copying torch/ao/nn/sparse/quantized/dynamic/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse/quantized/dynamic 2025-08-14T20:47:58.4739030Z copying torch/ao/nn/sparse/quantized/dynamic/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse/quantized/dynamic 2025-08-14T20:47:58.4747340Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx 2025-08-14T20:47:58.4747740Z copying torch/ao/ns/fx/graph_passes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx 2025-08-14T20:47:58.4763140Z copying torch/ao/ns/fx/weight_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx 2025-08-14T20:47:58.4771570Z copying torch/ao/ns/fx/graph_matcher.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx 2025-08-14T20:47:58.4785730Z copying torch/ao/ns/fx/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx 2025-08-14T20:47:58.4786320Z copying torch/ao/ns/fx/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx 2025-08-14T20:47:58.4800990Z copying torch/ao/ns/fx/pattern_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx 2025-08-14T20:47:58.4808190Z copying torch/ao/ns/fx/ns_types.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx 2025-08-14T20:47:58.4816370Z copying torch/ao/ns/fx/n_shadows_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx 2025-08-14T20:47:58.4837360Z copying torch/ao/ns/fx/mappings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx 2025-08-14T20:47:58.4852190Z copying torch/ao/ns/fx/qconfig_multi_mapping.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx 2025-08-14T20:47:58.4860770Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-08-14T20:47:58.4861480Z 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-08-14T20:47:58.4877830Z copying torch/ao/quantization/backend_config/qnnpack.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-08-14T20:47:58.4885190Z copying torch/ao/quantization/backend_config/fbgemm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-08-14T20:47:58.4892610Z copying torch/ao/quantization/backend_config/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-08-14T20:47:58.4900320Z copying torch/ao/quantization/backend_config/native.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-08-14T20:47:58.4907270Z copying torch/ao/quantization/backend_config/observation_type.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-08-14T20:47:58.4907980Z copying torch/ao/quantization/backend_config/onednn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-08-14T20:47:58.4922210Z copying torch/ao/quantization/backend_config/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-08-14T20:47:58.4929140Z copying torch/ao/quantization/backend_config/_qnnpack_pt2e.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-08-14T20:47:58.4936050Z copying torch/ao/quantization/backend_config/executorch.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-08-14T20:47:58.4951020Z copying torch/ao/quantization/backend_config/backend_config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-08-14T20:47:58.4965750Z copying torch/ao/quantization/backend_config/x86.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-08-14T20:47:58.4973440Z copying torch/ao/quantization/backend_config/tensorrt.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-08-14T20:47:58.4982210Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-08-14T20:47:58.4982790Z copying torch/ao/quantization/pt2e/port_metadata_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-08-14T20:47:58.4990650Z copying torch/ao/quantization/pt2e/export_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-08-14T20:47:58.4997970Z copying torch/ao/quantization/pt2e/qat_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-08-14T20:47:58.5013210Z copying torch/ao/quantization/pt2e/duplicate_dq_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-08-14T20:47:58.5020550Z copying torch/ao/quantization/pt2e/lowering.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-08-14T20:47:58.5027740Z copying torch/ao/quantization/pt2e/graph_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-08-14T20:47:58.5034930Z copying torch/ao/quantization/pt2e/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-08-14T20:47:58.5035650Z copying torch/ao/quantization/pt2e/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-08-14T20:47:58.5049620Z copying torch/ao/quantization/pt2e/_affine_quantization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-08-14T20:47:58.5063020Z copying torch/ao/quantization/pt2e/prepare.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-08-14T20:47:58.5077440Z copying torch/ao/quantization/pt2e/_numeric_debugger.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-08-14T20:47:58.5086550Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-08-14T20:47:58.5087030Z copying torch/ao/quantization/fx/graph_module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-08-14T20:47:58.5100870Z copying torch/ao/quantization/fx/lower_to_fbgemm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-08-14T20:47:58.5107820Z copying torch/ao/quantization/fx/_equalize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-08-14T20:47:58.5122620Z copying torch/ao/quantization/fx/lower_to_qnnpack.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-08-14T20:47:58.5130660Z copying torch/ao/quantization/fx/convert.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-08-14T20:47:58.5152580Z copying torch/ao/quantization/fx/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-08-14T20:47:58.5160060Z copying torch/ao/quantization/fx/quantize_handler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-08-14T20:47:58.5167240Z copying torch/ao/quantization/fx/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-08-14T20:47:58.5182500Z copying torch/ao/quantization/fx/pattern_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-08-14T20:47:58.5190170Z copying torch/ao/quantization/fx/_lower_to_native_backend.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-08-14T20:47:58.5212120Z copying torch/ao/quantization/fx/custom_config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-08-14T20:47:58.5225770Z copying torch/ao/quantization/fx/fuse.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-08-14T20:47:58.5233440Z copying torch/ao/quantization/fx/qconfig_mapping_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-08-14T20:47:58.5241020Z copying torch/ao/quantization/fx/match_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-08-14T20:47:58.5249040Z copying torch/ao/quantization/fx/prepare.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-08-14T20:47:58.5279310Z copying torch/ao/quantization/fx/tracer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-08-14T20:47:58.5286920Z copying torch/ao/quantization/fx/_decomposed.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-08-14T20:47:58.5301520Z copying torch/ao/quantization/fx/fuse_handler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-08-14T20:47:58.5310030Z copying torch/ao/quantization/fx/lstm_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-08-14T20:47:58.5318760Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer 2025-08-14T20:47:58.5319320Z copying torch/ao/quantization/quantizer/embedding_quantizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer 2025-08-14T20:47:58.5326400Z copying torch/ao/quantization/quantizer/x86_inductor_quantizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer 2025-08-14T20:47:58.5347870Z copying torch/ao/quantization/quantizer/xnnpack_quantizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer 2025-08-14T20:47:58.5356100Z copying torch/ao/quantization/quantizer/composable_quantizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer 2025-08-14T20:47:58.5364220Z copying torch/ao/quantization/quantizer/xpu_inductor_quantizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer 2025-08-14T20:47:58.5371260Z copying torch/ao/quantization/quantizer/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer 2025-08-14T20:47:58.5377760Z copying torch/ao/quantization/quantizer/quantizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer 2025-08-14T20:47:58.5385070Z copying torch/ao/quantization/quantizer/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer 2025-08-14T20:47:58.5392530Z copying torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer 2025-08-14T20:47:58.5407840Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e/representation 2025-08-14T20:47:58.5408550Z copying torch/ao/quantization/pt2e/representation/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e/representation 2025-08-14T20:47:58.5415730Z copying torch/ao/quantization/pt2e/representation/rewrite.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e/representation 2025-08-14T20:47:58.5430960Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/_model_report 2025-08-14T20:47:58.5431530Z copying torch/ao/quantization/fx/_model_report/detector.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/_model_report 2025-08-14T20:47:58.5453680Z 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-08-14T20:47:58.5468590Z 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-08-14T20:47:58.5475990Z copying torch/ao/quantization/fx/_model_report/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/_model_report 2025-08-14T20:47:58.5476680Z 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-08-14T20:47:58.5491620Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/sparsifier 2025-08-14T20:47:58.5492160Z copying torch/ao/pruning/sparsifier/weight_norm_sparsifier.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/sparsifier 2025-08-14T20:47:58.5499720Z copying torch/ao/pruning/sparsifier/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/sparsifier 2025-08-14T20:47:58.5500320Z copying torch/ao/pruning/sparsifier/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/sparsifier 2025-08-14T20:47:58.5508470Z copying torch/ao/pruning/sparsifier/nearly_diagonal_sparsifier.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/sparsifier 2025-08-14T20:47:58.5515730Z copying torch/ao/pruning/sparsifier/base_sparsifier.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/sparsifier 2025-08-14T20:47:58.5524200Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental 2025-08-14T20:47:58.5524710Z copying torch/ao/pruning/_experimental/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental 2025-08-14T20:47:58.5526930Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/scheduler 2025-08-14T20:47:58.5527430Z copying torch/ao/pruning/scheduler/base_scheduler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/scheduler 2025-08-14T20:47:58.5534550Z copying torch/ao/pruning/scheduler/cubic_scheduler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/scheduler 2025-08-14T20:47:58.5541570Z copying torch/ao/pruning/scheduler/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/scheduler 2025-08-14T20:47:58.5542230Z copying torch/ao/pruning/scheduler/lambda_scheduler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/scheduler 2025-08-14T20:47:58.5550470Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier 2025-08-14T20:47:58.5551140Z 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-08-14T20:47:58.5558240Z copying torch/ao/pruning/_experimental/data_sparsifier/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier 2025-08-14T20:47:58.5566010Z 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-08-14T20:47:58.5573510Z 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-08-14T20:47:58.5582200Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner 2025-08-14T20:47:58.5582770Z copying torch/ao/pruning/_experimental/pruner/FPGM_pruner.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner 2025-08-14T20:47:58.5589930Z copying torch/ao/pruning/_experimental/pruner/saliency_pruner.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner 2025-08-14T20:47:58.5597560Z copying torch/ao/pruning/_experimental/pruner/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner 2025-08-14T20:47:58.5605070Z copying torch/ao/pruning/_experimental/pruner/base_structured_sparsifier.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner 2025-08-14T20:47:58.5612320Z copying torch/ao/pruning/_experimental/pruner/prune_functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner 2025-08-14T20:47:58.5626850Z copying torch/ao/pruning/_experimental/pruner/lstm_saliency_pruner.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner 2025-08-14T20:47:58.5633340Z copying torch/ao/pruning/_experimental/pruner/parametrization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner 2025-08-14T20:47:58.5640140Z copying torch/ao/pruning/_experimental/pruner/match_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner 2025-08-14T20:47:58.5648170Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/activation_sparsifier 2025-08-14T20:47:58.5648890Z 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-08-14T20:47:58.5663120Z copying torch/ao/pruning/_experimental/activation_sparsifier/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/activation_sparsifier 2025-08-14T20:47:58.5664320Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_scheduler 2025-08-14T20:47:58.5664970Z copying torch/ao/pruning/_experimental/data_scheduler/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_scheduler 2025-08-14T20:47:58.5672430Z 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-08-14T20:47:58.5680230Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier/lightning 2025-08-14T20:47:58.5680940Z 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-08-14T20:47:58.5682330Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks 2025-08-14T20:47:58.5683600Z 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-08-14T20:47:58.5690450Z 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-08-14T20:47:58.5691470Z 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-08-14T20:47:58.5698960Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/linalg 2025-08-14T20:47:58.5699370Z copying torch/_refs/linalg/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/linalg 2025-08-14T20:47:58.5707540Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/nn 2025-08-14T20:47:58.5707970Z copying torch/_refs/nn/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/nn 2025-08-14T20:47:58.5716590Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/special 2025-08-14T20:47:58.5717000Z copying torch/_refs/special/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/special 2025-08-14T20:47:58.5724550Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/nn/functional 2025-08-14T20:47:58.5725010Z copying torch/_refs/nn/functional/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/nn/functional 2025-08-14T20:47:58.5740670Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/export/experimental 2025-08-14T20:47:58.5741140Z copying torch/export/experimental/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export/experimental 2025-08-14T20:47:58.5755560Z copying torch/export/experimental/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export/experimental 2025-08-14T20:47:58.5762780Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/export/passes 2025-08-14T20:47:58.5763210Z copying torch/export/passes/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export/passes 2025-08-14T20:47:58.5771660Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/export/pt2_archive 2025-08-14T20:47:58.5772110Z copying torch/export/pt2_archive/_package.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export/pt2_archive 2025-08-14T20:47:58.5787150Z copying torch/export/pt2_archive/_package_weights.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export/pt2_archive 2025-08-14T20:47:58.5794670Z copying torch/export/pt2_archive/constants.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export/pt2_archive 2025-08-14T20:47:58.5801340Z copying torch/export/pt2_archive/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export/pt2_archive 2025-08-14T20:47:58.5809320Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nested/_internal 2025-08-14T20:47:58.5809780Z copying torch/nested/_internal/nested_tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nested/_internal 2025-08-14T20:47:58.5824740Z copying torch/nested/_internal/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nested/_internal 2025-08-14T20:47:58.5825350Z copying torch/nested/_internal/ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nested/_internal 2025-08-14T20:47:58.5855690Z copying torch/nested/_internal/sdpa.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nested/_internal 2025-08-14T20:47:58.5872300Z copying torch/nested/_internal/nested_int.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nested/_internal 2025-08-14T20:47:58.5880510Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/signal/windows 2025-08-14T20:47:58.5880930Z copying torch/signal/windows/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/signal/windows 2025-08-14T20:47:58.5888290Z copying torch/signal/windows/windows.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/signal/windows 2025-08-14T20:47:58.5903150Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/package/analyze 2025-08-14T20:47:58.5903630Z copying torch/package/analyze/trace_dependencies.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package/analyze 2025-08-14T20:47:58.5911230Z copying torch/package/analyze/find_first_use_of_broken_modules.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package/analyze 2025-08-14T20:47:58.5918260Z copying torch/package/analyze/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package/analyze 2025-08-14T20:47:58.5924700Z copying torch/package/analyze/is_from_package.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package/analyze 2025-08-14T20:47:58.5932460Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/selective_build 2025-08-14T20:47:58.5932910Z copying torchgen/selective_build/selector.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/selective_build 2025-08-14T20:47:58.5933930Z copying torchgen/selective_build/operator.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/selective_build 2025-08-14T20:47:58.5934990Z copying torchgen/selective_build/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/selective_build 2025-08-14T20:47:58.5936680Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/static_runtime 2025-08-14T20:47:58.5937240Z copying torchgen/static_runtime/config.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/static_runtime 2025-08-14T20:47:58.5945000Z copying torchgen/static_runtime/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/static_runtime 2025-08-14T20:47:58.5945550Z copying torchgen/static_runtime/generator.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/static_runtime 2025-08-14T20:47:58.5960790Z copying torchgen/static_runtime/gen_static_runtime_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/static_runtime 2025-08-14T20:47:58.5969760Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/operator_versions 2025-08-14T20:47:58.5970230Z copying torchgen/operator_versions/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/operator_versions 2025-08-14T20:47:58.5970980Z copying torchgen/operator_versions/gen_mobile_upgraders_constant.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/operator_versions 2025-08-14T20:47:58.5977530Z copying torchgen/operator_versions/gen_mobile_upgraders.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/operator_versions 2025-08-14T20:47:58.5986650Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest 2025-08-14T20:47:58.5987040Z copying torchgen/dest/lazy_ts_lowering.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest 2025-08-14T20:47:58.5988090Z copying torchgen/dest/ufunc.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest 2025-08-14T20:47:58.5989310Z copying torchgen/dest/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest 2025-08-14T20:47:58.5990420Z copying torchgen/dest/native_functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest 2025-08-14T20:47:58.5991450Z copying torchgen/dest/lazy_ir.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest 2025-08-14T20:47:58.5992790Z copying torchgen/dest/register_dispatch_key.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest 2025-08-14T20:47:58.5996580Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-08-14T20:47:58.5996960Z copying torchgen/api/dispatcher.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-08-14T20:47:58.5998110Z copying torchgen/api/translate.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-08-14T20:47:58.5999510Z copying torchgen/api/ufunc.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-08-14T20:47:58.6000740Z copying torchgen/api/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-08-14T20:47:58.6001640Z copying torchgen/api/native.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-08-14T20:47:58.6002960Z copying torchgen/api/cpp.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-08-14T20:47:58.6004250Z copying torchgen/api/unboxing.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-08-14T20:47:58.6012240Z copying torchgen/api/functionalization.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-08-14T20:47:58.6013130Z copying torchgen/api/autograd.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-08-14T20:47:58.6014440Z copying torchgen/api/structured.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-08-14T20:47:58.6015770Z copying torchgen/api/python.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-08-14T20:47:58.6017130Z copying torchgen/api/lazy.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-08-14T20:47:58.6018410Z copying torchgen/api/meta.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-08-14T20:47:58.6020580Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/aoti 2025-08-14T20:47:58.6020940Z copying torchgen/aoti/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/aoti 2025-08-14T20:47:58.6021640Z copying torchgen/aoti/fallback_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/aoti 2025-08-14T20:47:58.6023770Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/types 2025-08-14T20:47:58.6024180Z copying torchgen/api/types/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/types 2025-08-14T20:47:58.6025260Z copying torchgen/api/types/types.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/types 2025-08-14T20:47:58.6026400Z copying torchgen/api/types/signatures.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/types 2025-08-14T20:47:58.6027660Z copying torchgen/api/types/types_base.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/types 2025-08-14T20:47:58.6029860Z creating build/lib.macosx-14.0-arm64-cpython-312/functorch/experimental 2025-08-14T20:47:58.6030320Z copying functorch/experimental/control_flow.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/experimental 2025-08-14T20:47:58.6037740Z copying functorch/experimental/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/experimental 2025-08-14T20:47:58.6044950Z copying functorch/experimental/ops.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/experimental 2025-08-14T20:47:58.6052840Z creating build/lib.macosx-14.0-arm64-cpython-312/functorch/_src 2025-08-14T20:47:58.6053240Z copying functorch/_src/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/_src 2025-08-14T20:47:58.6055450Z creating build/lib.macosx-14.0-arm64-cpython-312/functorch/dim 2025-08-14T20:47:58.6055840Z copying functorch/dim/magic_trace.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/dim 2025-08-14T20:47:58.6063070Z copying functorch/dim/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/dim 2025-08-14T20:47:58.6070840Z copying functorch/dim/op_properties.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/dim 2025-08-14T20:47:58.6077610Z copying functorch/dim/wrap_type.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/dim 2025-08-14T20:47:58.6085030Z copying functorch/dim/tree_map.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/dim 2025-08-14T20:47:58.6093200Z creating build/lib.macosx-14.0-arm64-cpython-312/functorch/compile 2025-08-14T20:47:58.6093610Z copying functorch/compile/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/compile 2025-08-14T20:47:58.6101260Z creating build/lib.macosx-14.0-arm64-cpython-312/functorch/einops 2025-08-14T20:47:58.6101890Z copying functorch/einops/_parsing.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/einops 2025-08-14T20:47:58.6109380Z copying functorch/einops/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/einops 2025-08-14T20:47:58.6116830Z copying functorch/einops/rearrange.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/einops 2025-08-14T20:47:58.6124480Z creating build/lib.macosx-14.0-arm64-cpython-312/functorch/_src/make_functional 2025-08-14T20:47:58.6125010Z copying functorch/_src/make_functional/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/_src/make_functional 2025-08-14T20:47:58.6133480Z creating build/lib.macosx-14.0-arm64-cpython-312/functorch/_src/eager_transforms 2025-08-14T20:47:58.6133990Z copying functorch/_src/eager_transforms/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/_src/eager_transforms 2025-08-14T20:47:58.6141550Z creating build/lib.macosx-14.0-arm64-cpython-312/functorch/_src/aot_autograd 2025-08-14T20:47:58.6142020Z copying functorch/_src/aot_autograd/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/_src/aot_autograd 2025-08-14T20:47:58.6150160Z creating build/lib.macosx-14.0-arm64-cpython-312/functorch/_src/vmap 2025-08-14T20:47:58.6150590Z copying functorch/_src/vmap/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/_src/vmap 2025-08-14T20:47:58.9205150Z copying torch/return_types.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-14T20:47:58.9207420Z copying torch/_VF.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-14T20:47:58.9214700Z copying torch/py.typed -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-14T20:47:58.9215590Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/bin 2025-08-14T20:47:58.9216190Z copying torch/bin/protoc-3.13.0.0 -> build/lib.macosx-14.0-arm64-cpython-312/torch/bin 2025-08-14T20:47:58.9370930Z copying torch/bin/torch_shm_manager -> build/lib.macosx-14.0-arm64-cpython-312/torch/bin 2025-08-14T20:47:58.9397720Z copying torch/bin/protoc -> build/lib.macosx-14.0-arm64-cpython-312/torch/bin 2025-08-14T20:47:58.9454590Z copying torch/nn/parameter.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-08-14T20:47:58.9463870Z copying torch/nn/functional.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-08-14T20:47:58.9465220Z copying torch/distributed/optim/zero_redundancy_optimizer.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-08-14T20:47:58.9473690Z copying torch/optim/_multi_tensor/__init__.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim/_multi_tensor 2025-08-14T20:47:58.9479960Z copying torch/utils/_config_typing.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-14T20:47:58.9486160Z copying torch/utils/data/datapipes/datapipe.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes 2025-08-14T20:47:58.9487440Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-08-14T20:47:58.9488050Z copying torch/_C/_profiler.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-08-14T20:47:58.9494750Z copying torch/_C/_onnx.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-08-14T20:47:58.9500950Z copying torch/_C/_distributed_c10d.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-08-14T20:47:58.9514000Z copying torch/_C/_autograd.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-08-14T20:47:58.9520660Z copying torch/_C/_monitor.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-08-14T20:47:58.9527000Z copying torch/_C/_itt.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-08-14T20:47:58.9533740Z copying torch/_C/_lazy.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-08-14T20:47:58.9540160Z copying torch/_C/__init__.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-08-14T20:47:58.9543420Z copying torch/_C/_nvtx.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-08-14T20:47:58.9550210Z copying torch/_C/_cpu.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-08-14T20:47:58.9556940Z copying torch/_C/_nn.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-08-14T20:47:58.9557870Z copying torch/_C/_cusparselt.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-08-14T20:47:58.9564670Z copying torch/_C/_instruction_counter.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-08-14T20:47:58.9570830Z copying torch/_C/_jit_tree_views.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-08-14T20:47:58.9577830Z copying torch/_C/_lazy_ts_backend.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-08-14T20:47:58.9584720Z copying torch/_C/_functorch.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-08-14T20:47:58.9591180Z copying torch/_C/_VariableFunctions.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-08-14T20:47:58.9597980Z copying torch/_C/_distributed_rpc.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-08-14T20:47:58.9610130Z copying torch/_C/_verbose.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-08-14T20:47:58.9620360Z copying torch/_C/_aoti.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-08-14T20:47:58.9627230Z copying torch/_C/_functions.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-08-14T20:47:58.9634180Z copying torch/_C/_distributed_rpc_testing.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-08-14T20:47:58.9640290Z copying torch/_C/_cudnn.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-08-14T20:47:58.9647150Z copying torch/_C/_distributed_autograd.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-08-14T20:47:58.9654050Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_export 2025-08-14T20:47:58.9654430Z copying torch/_C/_export/__init__.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_export 2025-08-14T20:47:58.9661470Z copying torch/_C/_export/pt2_archive_constants.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_export 2025-08-14T20:47:58.9668270Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_dynamo 2025-08-14T20:47:58.9668650Z copying torch/_C/_dynamo/__init__.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_dynamo 2025-08-14T20:47:58.9676000Z copying torch/_C/_dynamo/compiled_autograd.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_dynamo 2025-08-14T20:47:58.9682720Z copying torch/_C/_dynamo/guards.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_dynamo 2025-08-14T20:47:58.9690020Z copying torch/_C/_dynamo/eval_frame.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_dynamo 2025-08-14T20:47:58.9697100Z copying torch/jit/_script.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-08-14T20:47:58.9704620Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_C_flatbuffer 2025-08-14T20:47:58.9705040Z copying torch/_C_flatbuffer/__init__.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C_flatbuffer 2025-08-14T20:47:58.9712070Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/lib 2025-08-14T20:47:58.9712430Z copying torch/lib/libshm.dylib -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib 2025-08-14T20:47:58.9737080Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libshm_windows 2025-08-14T20:47:58.9737540Z copying torch/lib/libshm_windows/libshm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libshm_windows 2025-08-14T20:47:58.9745930Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libshm 2025-08-14T20:47:58.9746310Z copying torch/lib/libshm/err.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libshm 2025-08-14T20:47:58.9747450Z copying torch/lib/libshm/libshm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libshm 2025-08-14T20:47:58.9748730Z copying torch/lib/libshm/socket.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libshm 2025-08-14T20:47:58.9749960Z copying torch/lib/libshm/alloc_info.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libshm 2025-08-14T20:47:58.9751280Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-08-14T20:47:58.9751910Z copying torch/include/sleef.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-08-14T20:47:58.9754380Z copying torch/include/cpuinfo.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-08-14T20:47:58.9755620Z copying torch/include/nnpack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-08-14T20:47:58.9757060Z copying torch/include/xnnpack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-08-14T20:47:58.9759580Z copying torch/include/libshm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-08-14T20:47:58.9760710Z copying torch/include/fp16.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-08-14T20:47:58.9761900Z copying torch/include/qnnpack_func.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-08-14T20:47:58.9763110Z copying torch/include/pthreadpool.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-08-14T20:47:58.9765300Z copying torch/include/clog.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-08-14T20:47:58.9766290Z copying torch/include/psimd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-08-14T20:47:58.9767850Z copying torch/include/experiments-config.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-08-14T20:47:58.9769010Z copying torch/include/fxdiv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-08-14T20:47:58.9770340Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-08-14T20:47:58.9776140Z copying torch/include/pybind11/attr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-08-14T20:47:58.9776750Z copying torch/include/pybind11/embed.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-08-14T20:47:58.9777260Z copying torch/include/pybind11/numpy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-08-14T20:47:58.9777800Z copying torch/include/pybind11/pybind11.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-08-14T20:47:58.9778360Z copying torch/include/pybind11/operators.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-08-14T20:47:58.9778900Z copying torch/include/pybind11/iostream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-08-14T20:47:58.9779760Z copying torch/include/pybind11/gil.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-08-14T20:47:58.9781040Z copying torch/include/pybind11/chrono.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-08-14T20:47:58.9782390Z copying torch/include/pybind11/typing.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-08-14T20:47:58.9783610Z copying torch/include/pybind11/stl_bind.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-08-14T20:47:58.9784990Z copying torch/include/pybind11/buffer_info.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-08-14T20:47:58.9786190Z copying torch/include/pybind11/options.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-08-14T20:47:58.9787520Z copying torch/include/pybind11/functional.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-08-14T20:47:58.9788700Z copying torch/include/pybind11/stl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-08-14T20:47:58.9789910Z copying torch/include/pybind11/common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-08-14T20:47:58.9791150Z copying torch/include/pybind11/eval.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-08-14T20:47:58.9792410Z copying torch/include/pybind11/cast.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-08-14T20:47:58.9794080Z copying torch/include/pybind11/type_caster_pyobject_ptr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-08-14T20:47:58.9795320Z copying torch/include/pybind11/eigen.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-08-14T20:47:58.9796620Z copying torch/include/pybind11/gil_safe_call_once.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-08-14T20:47:58.9797930Z copying torch/include/pybind11/pytypes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-08-14T20:47:58.9799740Z copying torch/include/pybind11/complex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-08-14T20:47:58.9801080Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/eigen 2025-08-14T20:47:58.9801800Z copying torch/include/pybind11/eigen/matrix.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/eigen 2025-08-14T20:47:58.9803070Z copying torch/include/pybind11/eigen/common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/eigen 2025-08-14T20:47:58.9804320Z copying torch/include/pybind11/eigen/tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/eigen 2025-08-14T20:47:58.9805810Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/stl 2025-08-14T20:47:58.9806330Z copying torch/include/pybind11/stl/filesystem.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/stl 2025-08-14T20:47:58.9807560Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-08-14T20:47:58.9808180Z copying torch/include/pybind11/detail/type_caster_base.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-08-14T20:47:58.9809830Z copying torch/include/pybind11/detail/exception_translation.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-08-14T20:47:58.9811020Z copying torch/include/pybind11/detail/typeid.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-08-14T20:47:58.9812250Z copying torch/include/pybind11/detail/descr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-08-14T20:47:58.9813480Z copying torch/include/pybind11/detail/internals.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-08-14T20:47:58.9815000Z copying torch/include/pybind11/detail/cpp_conduit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-08-14T20:47:58.9816300Z copying torch/include/pybind11/detail/value_and_holder.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-08-14T20:47:58.9817540Z copying torch/include/pybind11/detail/common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-08-14T20:47:58.9819090Z copying torch/include/pybind11/detail/class.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-08-14T20:47:58.9820440Z copying torch/include/pybind11/detail/init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-08-14T20:47:58.9822050Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-08-14T20:47:58.9822460Z copying torch/include/fmt/ostream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-08-14T20:47:58.9823740Z copying torch/include/fmt/format-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-08-14T20:47:58.9825340Z copying torch/include/fmt/ranges.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-08-14T20:47:58.9826700Z copying torch/include/fmt/xchar.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-08-14T20:47:58.9827940Z copying torch/include/fmt/core.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-08-14T20:47:58.9829180Z copying torch/include/fmt/chrono.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-08-14T20:47:58.9830930Z copying torch/include/fmt/os.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-08-14T20:47:58.9832120Z copying torch/include/fmt/color.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-08-14T20:47:58.9833630Z copying torch/include/fmt/args.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-08-14T20:47:58.9834770Z copying torch/include/fmt/printf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-08-14T20:47:58.9836320Z copying torch/include/fmt/compile.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-08-14T20:47:58.9837670Z copying torch/include/fmt/format.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-08-14T20:47:58.9840050Z copying torch/include/fmt/std.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-08-14T20:47:58.9841160Z copying torch/include/fmt/base.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-08-14T20:47:58.9843590Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2 2025-08-14T20:47:58.9843950Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/core 2025-08-14T20:47:58.9844410Z copying torch/include/caffe2/core/timer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/core 2025-08-14T20:47:58.9845520Z copying torch/include/caffe2/core/common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/core 2025-08-14T20:47:58.9846780Z copying torch/include/caffe2/core/macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/core 2025-08-14T20:47:58.9848080Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/perfkernels 2025-08-14T20:47:58.9848670Z copying torch/include/caffe2/perfkernels/batch_box_cox_vec.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/perfkernels 2025-08-14T20:47:58.9850090Z copying torch/include/caffe2/perfkernels/embedding_lookup_idx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/perfkernels 2025-08-14T20:47:58.9851340Z copying torch/include/caffe2/perfkernels/common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/perfkernels 2025-08-14T20:47:58.9852670Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize 2025-08-14T20:47:58.9853260Z copying torch/include/caffe2/serialize/in_memory_adapter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize 2025-08-14T20:47:58.9854630Z copying torch/include/caffe2/serialize/read_adapter_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize 2025-08-14T20:47:58.9855840Z copying torch/include/caffe2/serialize/crc_alt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize 2025-08-14T20:47:58.9857570Z copying torch/include/caffe2/serialize/versions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize 2025-08-14T20:47:58.9858950Z copying torch/include/caffe2/serialize/inline_container.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize 2025-08-14T20:47:58.9860180Z copying torch/include/caffe2/serialize/file_adapter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize 2025-08-14T20:47:58.9861580Z copying torch/include/caffe2/serialize/istream_adapter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize 2025-08-14T20:47:58.9862840Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils 2025-08-14T20:47:58.9863360Z copying torch/include/caffe2/utils/string_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils 2025-08-14T20:47:58.9864660Z copying torch/include/caffe2/utils/fixed_divisor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils 2025-08-14T20:47:58.9865850Z copying torch/include/caffe2/utils/proto_wrap.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils 2025-08-14T20:47:58.9867280Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/threadpool 2025-08-14T20:47:58.9867870Z copying torch/include/caffe2/utils/threadpool/ThreadPool.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/threadpool 2025-08-14T20:47:58.9869170Z copying torch/include/caffe2/utils/threadpool/ThreadPoolCommon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/threadpool 2025-08-14T20:47:58.9870430Z copying torch/include/caffe2/utils/threadpool/pthreadpool.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/threadpool 2025-08-14T20:47:58.9871750Z copying torch/include/caffe2/utils/threadpool/pthreadpool-cpp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/threadpool 2025-08-14T20:47:58.9873040Z copying torch/include/caffe2/utils/threadpool/WorkersPool.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/threadpool 2025-08-14T20:47:58.9874450Z copying torch/include/caffe2/utils/threadpool/thread_pool_guard.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/threadpool 2025-08-14T20:47:58.9875500Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google 2025-08-14T20:47:58.9876040Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-14T20:47:58.9876690Z copying torch/include/google/protobuf/source_context.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-14T20:47:58.9877960Z copying torch/include/google/protobuf/repeated_field.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-14T20:47:58.9879810Z copying torch/include/google/protobuf/port.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-14T20:47:58.9881070Z copying torch/include/google/protobuf/wire_format.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-14T20:47:58.9882540Z copying torch/include/google/protobuf/inlined_string_field.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-14T20:47:58.9883810Z copying torch/include/google/protobuf/map.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-14T20:47:58.9885450Z copying torch/include/google/protobuf/arenastring.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-14T20:47:58.9886710Z copying torch/include/google/protobuf/map_entry_lite.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-14T20:47:58.9888190Z copying torch/include/google/protobuf/service.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-14T20:47:58.9889520Z copying torch/include/google/protobuf/struct.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-14T20:47:58.9890950Z copying torch/include/google/protobuf/empty.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-14T20:47:58.9892240Z copying torch/include/google/protobuf/descriptor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-14T20:47:58.9893990Z copying torch/include/google/protobuf/message.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-14T20:47:58.9895630Z copying torch/include/google/protobuf/wrappers.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-14T20:47:58.9897150Z copying torch/include/google/protobuf/text_format.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-14T20:47:58.9898580Z copying torch/include/google/protobuf/has_bits.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-14T20:47:58.9899930Z copying torch/include/google/protobuf/arena_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-14T20:47:58.9901210Z copying torch/include/google/protobuf/api.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-14T20:47:58.9902920Z copying torch/include/google/protobuf/metadata.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-14T20:47:58.9904020Z copying torch/include/google/protobuf/extension_set.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-14T20:47:58.9905760Z copying torch/include/google/protobuf/reflection_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-14T20:47:58.9907250Z copying torch/include/google/protobuf/generated_message_table_driven.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-14T20:47:58.9908530Z copying torch/include/google/protobuf/duration.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-14T20:47:58.9909860Z copying torch/include/google/protobuf/generated_message_reflection.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-14T20:47:58.9911130Z copying torch/include/google/protobuf/unknown_field_set.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-14T20:47:58.9912500Z copying torch/include/google/protobuf/type.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-14T20:47:58.9914240Z copying torch/include/google/protobuf/map_field_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-14T20:47:58.9915480Z copying torch/include/google/protobuf/timestamp.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-14T20:47:58.9916750Z copying torch/include/google/protobuf/field_mask.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-14T20:47:58.9918240Z copying torch/include/google/protobuf/descriptor.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-14T20:47:58.9922440Z copying torch/include/google/protobuf/map_entry.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-14T20:47:58.9923400Z copying torch/include/google/protobuf/message_lite.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-14T20:47:58.9924920Z copying torch/include/google/protobuf/generated_message_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-14T20:47:58.9926180Z copying torch/include/google/protobuf/descriptor_database.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-14T20:47:58.9927710Z copying torch/include/google/protobuf/map_field.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-14T20:47:58.9929000Z copying torch/include/google/protobuf/generated_enum_reflection.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-14T20:47:58.9930310Z copying torch/include/google/protobuf/generated_enum_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-14T20:47:58.9931590Z copying torch/include/google/protobuf/any.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-14T20:47:58.9932880Z copying torch/include/google/protobuf/map_type_handler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-14T20:47:58.9934380Z copying torch/include/google/protobuf/parse_context.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-14T20:47:58.9935830Z copying torch/include/google/protobuf/extension_set_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-14T20:47:58.9937070Z copying torch/include/google/protobuf/map_field_lite.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-14T20:47:58.9938310Z copying torch/include/google/protobuf/metadata_lite.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-14T20:47:58.9939620Z copying torch/include/google/protobuf/implicit_weak_message.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-14T20:47:58.9940860Z copying torch/include/google/protobuf/arena.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-14T20:47:58.9942300Z copying torch/include/google/protobuf/any.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-14T20:47:58.9943540Z copying torch/include/google/protobuf/reflection.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-14T20:47:58.9944970Z copying torch/include/google/protobuf/dynamic_message.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-14T20:47:58.9946300Z copying torch/include/google/protobuf/wire_format_lite.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-14T20:47:58.9948130Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-08-14T20:47:58.9948760Z copying torch/include/google/protobuf/stubs/stringpiece.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-08-14T20:47:58.9950290Z copying torch/include/google/protobuf/stubs/stl_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-08-14T20:47:58.9951530Z copying torch/include/google/protobuf/stubs/port.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-08-14T20:47:58.9952760Z copying torch/include/google/protobuf/stubs/status.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-08-14T20:47:58.9954150Z copying torch/include/google/protobuf/stubs/template_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-08-14T20:47:58.9955400Z copying torch/include/google/protobuf/stubs/map_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-08-14T20:47:58.9956850Z copying torch/include/google/protobuf/stubs/casts.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-08-14T20:47:58.9958060Z copying torch/include/google/protobuf/stubs/logging.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-08-14T20:47:58.9959430Z copying torch/include/google/protobuf/stubs/bytestream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-08-14T20:47:58.9960670Z copying torch/include/google/protobuf/stubs/common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-08-14T20:47:58.9961960Z copying torch/include/google/protobuf/stubs/macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-08-14T20:47:58.9963220Z copying torch/include/google/protobuf/stubs/platform_macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-08-14T20:47:58.9964410Z copying torch/include/google/protobuf/stubs/once.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-08-14T20:47:58.9965710Z copying torch/include/google/protobuf/stubs/fastmem.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-08-14T20:47:58.9966960Z copying torch/include/google/protobuf/stubs/mutex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-08-14T20:47:58.9968210Z copying torch/include/google/protobuf/stubs/callback.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-08-14T20:47:58.9969860Z copying torch/include/google/protobuf/stubs/strutil.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-08-14T20:47:58.9971820Z copying torch/include/google/protobuf/stubs/hash.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-08-14T20:47:58.9973450Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util 2025-08-14T20:47:58.9974070Z copying torch/include/google/protobuf/util/time_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util 2025-08-14T20:47:58.9975500Z copying torch/include/google/protobuf/util/field_mask_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util 2025-08-14T20:47:58.9976830Z copying torch/include/google/protobuf/util/json_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util 2025-08-14T20:47:58.9978150Z copying torch/include/google/protobuf/util/type_resolver.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util 2025-08-14T20:47:58.9979450Z copying torch/include/google/protobuf/util/field_comparator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util 2025-08-14T20:47:58.9980690Z copying torch/include/google/protobuf/util/type_resolver_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util 2025-08-14T20:47:58.9982050Z copying torch/include/google/protobuf/util/message_differencer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util 2025-08-14T20:47:58.9983670Z copying torch/include/google/protobuf/util/delimited_message_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util 2025-08-14T20:47:58.9984900Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io 2025-08-14T20:47:58.9985570Z 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-08-14T20:47:58.9986840Z copying torch/include/google/protobuf/io/printer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io 2025-08-14T20:47:58.9988180Z copying torch/include/google/protobuf/io/gzip_stream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io 2025-08-14T20:47:58.9989780Z 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-08-14T20:47:58.9991370Z copying torch/include/google/protobuf/io/strtod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io 2025-08-14T20:47:58.9992870Z copying torch/include/google/protobuf/io/tokenizer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io 2025-08-14T20:47:58.9994630Z copying torch/include/google/protobuf/io/zero_copy_stream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io 2025-08-14T20:47:58.9996020Z copying torch/include/google/protobuf/io/io_win32.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io 2025-08-14T20:47:58.9997750Z copying torch/include/google/protobuf/io/coded_stream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io 2025-08-14T20:47:58.9999920Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler 2025-08-14T20:47:59.0000510Z copying torch/include/google/protobuf/compiler/code_generator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler 2025-08-14T20:47:59.0001980Z copying torch/include/google/protobuf/compiler/plugin.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler 2025-08-14T20:47:59.0003940Z copying torch/include/google/protobuf/compiler/plugin.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler 2025-08-14T20:47:59.0005310Z copying torch/include/google/protobuf/compiler/parser.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler 2025-08-14T20:47:59.0007140Z copying torch/include/google/protobuf/compiler/command_line_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler 2025-08-14T20:47:59.0008760Z copying torch/include/google/protobuf/compiler/importer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler 2025-08-14T20:47:59.0010430Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/python 2025-08-14T20:47:59.0011110Z 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-08-14T20:47:59.0012440Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/js 2025-08-14T20:47:59.0013130Z 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-08-14T20:47:59.0014480Z 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-08-14T20:47:59.0015710Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/java 2025-08-14T20:47:59.0016350Z 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-08-14T20:47:59.0017700Z 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-08-14T20:47:59.0019000Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/php 2025-08-14T20:47:59.0019640Z 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-08-14T20:47:59.0020810Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/cpp 2025-08-14T20:47:59.0021440Z 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-08-14T20:47:59.0022760Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/csharp 2025-08-14T20:47:59.0023420Z 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-08-14T20:47:59.0024780Z 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-08-14T20:47:59.0025960Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/ruby 2025-08-14T20:47:59.0026590Z 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-08-14T20:47:59.0028000Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/objectivec 2025-08-14T20:47:59.0028750Z 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-08-14T20:47:59.0030030Z 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-08-14T20:47:59.0031310Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch 2025-08-14T20:47:59.0031740Z copying torch/include/torch/script.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch 2025-08-14T20:47:59.0032990Z copying torch/include/torch/library.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch 2025-08-14T20:47:59.0034640Z copying torch/include/torch/custom_class_detail.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch 2025-08-14T20:47:59.0035830Z copying torch/include/torch/custom_class.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch 2025-08-14T20:47:59.0037240Z copying torch/include/torch/extension.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch 2025-08-14T20:47:59.0038620Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly 2025-08-14T20:47:59.0039100Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/core 2025-08-14T20:47:59.0039770Z copying torch/include/torch/headeronly/core/ScalarType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/core 2025-08-14T20:47:59.0041100Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-08-14T20:47:59.0041710Z copying torch/include/torch/headeronly/util/quint4x2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-08-14T20:47:59.0043010Z copying torch/include/torch/headeronly/util/Half.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-08-14T20:47:59.0044580Z copying torch/include/torch/headeronly/util/TypeSafeSignMath.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-08-14T20:47:59.0045810Z copying torch/include/torch/headeronly/util/qint32.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-08-14T20:47:59.0047200Z copying torch/include/torch/headeronly/util/Float4_e2m1fn_x2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-08-14T20:47:59.0048580Z copying torch/include/torch/headeronly/util/Float8_e5m2fnuz.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-08-14T20:47:59.0050020Z copying torch/include/torch/headeronly/util/shim_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-08-14T20:47:59.0051230Z copying torch/include/torch/headeronly/util/Float8_e4m3fnuz.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-08-14T20:47:59.0052580Z copying torch/include/torch/headeronly/util/quint8.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-08-14T20:47:59.0053830Z copying torch/include/torch/headeronly/util/Float8_e5m2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-08-14T20:47:59.0055160Z copying torch/include/torch/headeronly/util/Float8_e8m0fnu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-08-14T20:47:59.0056480Z copying torch/include/torch/headeronly/util/BFloat16.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-08-14T20:47:59.0057770Z copying torch/include/torch/headeronly/util/quint2x4.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-08-14T20:47:59.0059000Z copying torch/include/torch/headeronly/util/floating_point_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-08-14T20:47:59.0060350Z copying torch/include/torch/headeronly/util/bit_cast.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-08-14T20:47:59.0061720Z copying torch/include/torch/headeronly/util/qint8.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-08-14T20:47:59.0063070Z copying torch/include/torch/headeronly/util/Exception.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-08-14T20:47:59.0064370Z copying torch/include/torch/headeronly/util/Float8_e4m3fn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-08-14T20:47:59.0065810Z copying torch/include/torch/headeronly/util/complex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-08-14T20:47:59.0067380Z copying torch/include/torch/headeronly/util/bits.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-08-14T20:47:59.0068630Z copying torch/include/torch/headeronly/util/Float8_fnuz_cvt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-08-14T20:47:59.0069940Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/cpu 2025-08-14T20:47:59.0070370Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/cpu/vec 2025-08-14T20:47:59.0071040Z 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-08-14T20:47:59.0072370Z copying torch/include/torch/headeronly/cpu/vec/intrinsics.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/cpu/vec 2025-08-14T20:47:59.0073630Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/cpu/vec/vec256 2025-08-14T20:47:59.0074320Z 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-08-14T20:47:59.0075520Z 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-08-14T20:47:59.0076780Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/macros 2025-08-14T20:47:59.0077470Z copying torch/include/torch/headeronly/macros/cmake_macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/macros 2025-08-14T20:47:59.0078710Z copying torch/include/torch/headeronly/macros/Export.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/macros 2025-08-14T20:47:59.0080010Z copying torch/include/torch/headeronly/macros/Macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/macros 2025-08-14T20:47:59.0081390Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-08-14T20:47:59.0081920Z copying torch/include/torch/csrc/Size.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-08-14T20:47:59.0083150Z copying torch/include/torch/csrc/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-08-14T20:47:59.0084480Z copying torch/include/torch/csrc/DeviceAccelerator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-08-14T20:47:59.0085680Z copying torch/include/torch/csrc/Export.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-08-14T20:47:59.0086950Z copying torch/include/torch/csrc/Device.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-08-14T20:47:59.0088170Z copying torch/include/torch/csrc/THConcat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-08-14T20:47:59.0089450Z copying torch/include/torch/csrc/Event.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-08-14T20:47:59.0090650Z copying torch/include/torch/csrc/Types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-08-14T20:47:59.0091930Z copying torch/include/torch/csrc/serialization.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-08-14T20:47:59.0093100Z copying torch/include/torch/csrc/Exceptions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-08-14T20:47:59.0094380Z copying torch/include/torch/csrc/itt_wrapper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-08-14T20:47:59.0095730Z copying torch/include/torch/csrc/QScheme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-08-14T20:47:59.0096920Z copying torch/include/torch/csrc/Stream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-08-14T20:47:59.0098250Z copying torch/include/torch/csrc/DataLoader.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-08-14T20:47:59.0099420Z copying torch/include/torch/csrc/THP.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-08-14T20:47:59.0100600Z copying torch/include/torch/csrc/python_headers.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-08-14T20:47:59.0101850Z copying torch/include/torch/csrc/Layout.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-08-14T20:47:59.0103140Z copying torch/include/torch/csrc/DynamicTypes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-08-14T20:47:59.0104440Z copying torch/include/torch/csrc/copy_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-08-14T20:47:59.0105600Z copying torch/include/torch/csrc/Storage.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-08-14T20:47:59.0106910Z copying torch/include/torch/csrc/PyInterpreterHooks.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-08-14T20:47:59.0108130Z copying torch/include/torch/csrc/itt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-08-14T20:47:59.0109500Z copying torch/include/torch/csrc/MemoryFormat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-08-14T20:47:59.0110680Z copying torch/include/torch/csrc/StorageSharing.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-08-14T20:47:59.0111980Z copying torch/include/torch/csrc/PyInterpreter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-08-14T20:47:59.0113190Z copying torch/include/torch/csrc/Dtype.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-08-14T20:47:59.0114500Z copying torch/include/torch/csrc/Module.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-08-14T20:47:59.0115770Z copying torch/include/torch/csrc/python_dimname.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-08-14T20:47:59.0116970Z copying torch/include/torch/csrc/CudaIPCTypes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-08-14T20:47:59.0118240Z copying torch/include/torch/csrc/Generator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-08-14T20:47:59.0119500Z copying torch/include/torch/csrc/TypeInfo.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-08-14T20:47:59.0120760Z copying torch/include/torch/csrc/StorageMethods.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-08-14T20:47:59.0122100Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/stable 2025-08-14T20:47:59.0122680Z copying torch/include/torch/csrc/stable/library.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/stable 2025-08-14T20:47:59.0124020Z copying torch/include/torch/csrc/stable/accelerator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/stable 2025-08-14T20:47:59.0125230Z copying torch/include/torch/csrc/stable/ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/stable 2025-08-14T20:47:59.0126450Z copying torch/include/torch/csrc/stable/tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/stable 2025-08-14T20:47:59.0127780Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor 2025-08-14T20:47:59.0128370Z copying torch/include/torch/csrc/inductor/inductor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor 2025-08-14T20:47:59.0129670Z copying torch/include/torch/csrc/inductor/array_ref_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor 2025-08-14T20:47:59.0130960Z copying torch/include/torch/csrc/inductor/static_cuda_launcher.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor 2025-08-14T20:47:59.0132320Z copying torch/include/torch/csrc/inductor/cpp_prefix.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor 2025-08-14T20:47:59.0133840Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_package 2025-08-14T20:47:59.0140540Z 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-08-14T20:47:59.0141370Z 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-08-14T20:47:59.0142040Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_eager 2025-08-14T20:47:59.0142680Z 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-08-14T20:47:59.0143490Z 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-08-14T20:47:59.0144120Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runner 2025-08-14T20:47:59.0144790Z 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-08-14T20:47:59.0145600Z 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-08-14T20:47:59.0146410Z 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-08-14T20:47:59.0147370Z 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-08-14T20:47:59.0148250Z 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-08-14T20:47:59.0149110Z 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-08-14T20:47:59.0149780Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime 2025-08-14T20:47:59.0150400Z 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-08-14T20:47:59.0151190Z 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-08-14T20:47:59.0152000Z 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-08-14T20:47:59.0153270Z 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-08-14T20:47:59.0154580Z 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-08-14T20:47:59.0155850Z 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-08-14T20:47:59.0157140Z 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-08-14T20:47:59.0158360Z 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-08-14T20:47:59.0160040Z 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-08-14T20:47:59.0161170Z 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-08-14T20:47:59.0162560Z 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-08-14T20:47:59.0163800Z 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-08-14T20:47:59.0165180Z 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-08-14T20:47:59.0166670Z 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-08-14T20:47:59.0168140Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_include 2025-08-14T20:47:59.0168810Z 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-08-14T20:47:59.0170100Z 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-08-14T20:47:59.0171370Z 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-08-14T20:47:59.0172610Z 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-08-14T20:47:59.0173950Z 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-08-14T20:47:59.0175120Z 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-08-14T20:47:59.0176390Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch 2025-08-14T20:47:59.0177000Z 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-08-14T20:47:59.0178300Z 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-08-14T20:47:59.0179570Z 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-08-14T20:47:59.0180850Z 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-08-14T20:47:59.0182130Z 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-08-14T20:47:59.0183480Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/generated 2025-08-14T20:47:59.0184180Z 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-08-14T20:47:59.0185580Z 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-08-14T20:47:59.0186820Z 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-08-14T20:47:59.0188250Z 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-08-14T20:47:59.0189760Z 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-08-14T20:47:59.0190940Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/c 2025-08-14T20:47:59.0191570Z 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-08-14T20:47:59.0192900Z 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-08-14T20:47:59.0194280Z 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-08-14T20:47:59.0195530Z 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-08-14T20:47:59.0196770Z 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-08-14T20:47:59.0198110Z 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-08-14T20:47:59.0199500Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper 2025-08-14T20:47:59.0200120Z 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-08-14T20:47:59.0201430Z 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-08-14T20:47:59.0202640Z 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-08-14T20:47:59.0203910Z 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-08-14T20:47:59.0205150Z 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-08-14T20:47:59.0206490Z 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-08-14T20:47:59.0207840Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper/device_internal 2025-08-14T20:47:59.0208700Z 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-08-14T20:47:59.0209850Z 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-08-14T20:47:59.0211080Z 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-08-14T20:47:59.0212340Z 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-08-14T20:47:59.0213490Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/monitor 2025-08-14T20:47:59.0214100Z copying torch/include/torch/csrc/monitor/events.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/monitor 2025-08-14T20:47:59.0215400Z copying torch/include/torch/csrc/monitor/counters.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/monitor 2025-08-14T20:47:59.0216610Z copying torch/include/torch/csrc/monitor/python_init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/monitor 2025-08-14T20:47:59.0218050Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/instruction_counter 2025-08-14T20:47:59.0218690Z copying torch/include/torch/csrc/instruction_counter/Module.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/instruction_counter 2025-08-14T20:47:59.0219960Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/mps 2025-08-14T20:47:59.0220490Z copying torch/include/torch/csrc/mps/Module.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/mps 2025-08-14T20:47:59.0221790Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/onnx 2025-08-14T20:47:59.0222350Z copying torch/include/torch/csrc/onnx/back_compat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/onnx 2025-08-14T20:47:59.0223780Z copying torch/include/torch/csrc/onnx/init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/onnx 2025-08-14T20:47:59.0224970Z copying torch/include/torch/csrc/onnx/onnx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/onnx 2025-08-14T20:47:59.0226180Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cpu 2025-08-14T20:47:59.0226750Z copying torch/include/torch/csrc/cpu/Module.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cpu 2025-08-14T20:47:59.0228080Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed 2025-08-14T20:47:59.0228640Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd 2025-08-14T20:47:59.0229340Z copying torch/include/torch/csrc/distributed/autograd/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd 2025-08-14T20:47:59.0230600Z 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-08-14T20:47:59.0231850Z copying torch/include/torch/csrc/distributed/autograd/autograd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd 2025-08-14T20:47:59.0233890Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/context 2025-08-14T20:47:59.0234850Z 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-08-14T20:47:59.0236290Z 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-08-14T20:47:59.0237730Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-08-14T20:47:59.0238530Z 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-08-14T20:47:59.0239870Z 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-08-14T20:47:59.0241210Z 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-08-14T20:47:59.0242550Z 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-08-14T20:47:59.0243850Z 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-08-14T20:47:59.0245220Z 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-08-14T20:47:59.0246520Z 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-08-14T20:47:59.0247770Z 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-08-14T20:47:59.0249050Z 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-08-14T20:47:59.0250370Z 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-08-14T20:47:59.0251660Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/functions 2025-08-14T20:47:59.0252410Z 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-08-14T20:47:59.0253790Z 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-08-14T20:47:59.0254930Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/engine 2025-08-14T20:47:59.0255750Z 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-08-14T20:47:59.0256890Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-08-14T20:47:59.0257530Z copying torch/include/torch/csrc/distributed/rpc/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-08-14T20:47:59.0258820Z 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-08-14T20:47:59.0260140Z 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-08-14T20:47:59.0261440Z 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-08-14T20:47:59.0262680Z 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-08-14T20:47:59.0264170Z 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-08-14T20:47:59.0265370Z copying torch/include/torch/csrc/distributed/rpc/types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-08-14T20:47:59.0266650Z 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-08-14T20:47:59.0267970Z 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-08-14T20:47:59.0269290Z 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-08-14T20:47:59.0270600Z 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-08-14T20:47:59.0271920Z copying torch/include/torch/csrc/distributed/rpc/message.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-08-14T20:47:59.0273260Z 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-08-14T20:47:59.0274520Z 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-08-14T20:47:59.0275760Z 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-08-14T20:47:59.0277000Z 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-08-14T20:47:59.0278510Z 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-08-14T20:47:59.0279770Z 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-08-14T20:47:59.0281010Z copying torch/include/torch/csrc/distributed/rpc/rpc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-08-14T20:47:59.0282340Z 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-08-14T20:47:59.0283640Z 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-08-14T20:47:59.0285040Z 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-08-14T20:47:59.0286260Z 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-08-14T20:47:59.0287510Z 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-08-14T20:47:59.0288950Z 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-08-14T20:47:59.0290120Z 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-08-14T20:47:59.0291480Z 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-08-14T20:47:59.0292910Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/metrics 2025-08-14T20:47:59.0293620Z 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-08-14T20:47:59.0294770Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/testing 2025-08-14T20:47:59.0295440Z 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-08-14T20:47:59.0296690Z 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-08-14T20:47:59.0297940Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/profiler 2025-08-14T20:47:59.0298680Z 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-08-14T20:47:59.0300040Z 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-08-14T20:47:59.0301220Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-14T20:47:59.0302180Z copying torch/include/torch/csrc/distributed/c10d/error.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-14T20:47:59.0303200Z copying torch/include/torch/csrc/distributed/c10d/debug.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-14T20:47:59.0304620Z copying torch/include/torch/csrc/distributed/c10d/logging.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-14T20:47:59.0305890Z 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-08-14T20:47:59.0307170Z 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-08-14T20:47:59.0308450Z copying torch/include/torch/csrc/distributed/c10d/c10d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-14T20:47:59.0309860Z copying torch/include/torch/csrc/distributed/c10d/TraceUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-14T20:47:59.0311030Z copying torch/include/torch/csrc/distributed/c10d/exception.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-14T20:47:59.0312370Z copying torch/include/torch/csrc/distributed/c10d/socket.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-14T20:47:59.0313570Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/quantization 2025-08-14T20:47:59.0314340Z 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-08-14T20:47:59.0315590Z 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-08-14T20:47:59.0316880Z 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-08-14T20:47:59.0317960Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/symm_mem 2025-08-14T20:47:59.0318730Z 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-08-14T20:47:59.0319870Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-14T20:47:59.0320520Z copying torch/include/torch/csrc/autograd/python_function.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-14T20:47:59.0321830Z copying torch/include/torch/csrc/autograd/custom_function.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-14T20:47:59.0323420Z copying torch/include/torch/csrc/autograd/python_linalg_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-14T20:47:59.0325460Z copying torch/include/torch/csrc/autograd/saved_variable_hooks.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-14T20:47:59.0326960Z copying torch/include/torch/csrc/autograd/record_function_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-14T20:47:59.0328430Z copying torch/include/torch/csrc/autograd/engine.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-14T20:47:59.0329810Z copying torch/include/torch/csrc/autograd/python_enum_tag.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-14T20:47:59.0331170Z copying torch/include/torch/csrc/autograd/graph_task.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-14T20:47:59.0332490Z copying torch/include/torch/csrc/autograd/edge.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-14T20:47:59.0333890Z copying torch/include/torch/csrc/autograd/python_nested_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-14T20:47:59.0335190Z copying torch/include/torch/csrc/autograd/variable_info.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-14T20:47:59.0336520Z copying torch/include/torch/csrc/autograd/saved_variable.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-14T20:47:59.0337970Z copying torch/include/torch/csrc/autograd/python_engine.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-14T20:47:59.0339290Z copying torch/include/torch/csrc/autograd/python_legacy_variable.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-14T20:47:59.0340460Z copying torch/include/torch/csrc/autograd/profiler_python.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-14T20:47:59.0341780Z 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-08-14T20:47:59.0343170Z 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-08-14T20:47:59.0344500Z copying torch/include/torch/csrc/autograd/python_cpp_function.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-14T20:47:59.0345690Z copying torch/include/torch/csrc/autograd/python_hook.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-14T20:47:59.0346990Z copying torch/include/torch/csrc/autograd/VariableTypeUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-14T20:47:59.0348340Z copying torch/include/torch/csrc/autograd/python_autograd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-14T20:47:59.0349700Z copying torch/include/torch/csrc/autograd/profiler_kineto.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-14T20:47:59.0350910Z copying torch/include/torch/csrc/autograd/variable.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-14T20:47:59.0352500Z copying torch/include/torch/csrc/autograd/python_fft_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-14T20:47:59.0353830Z copying torch/include/torch/csrc/autograd/python_variable.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-14T20:47:59.0355120Z copying torch/include/torch/csrc/autograd/python_torch_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-14T20:47:59.0356400Z copying torch/include/torch/csrc/autograd/function_hook.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-14T20:47:59.0357740Z copying torch/include/torch/csrc/autograd/input_metadata.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-14T20:47:59.0359060Z copying torch/include/torch/csrc/autograd/grad_mode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-14T20:47:59.0360280Z copying torch/include/torch/csrc/autograd/jit_decomp_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-14T20:47:59.0361640Z copying torch/include/torch/csrc/autograd/python_sparse_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-14T20:47:59.0362980Z copying torch/include/torch/csrc/autograd/symbolic.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-14T20:47:59.0364320Z copying torch/include/torch/csrc/autograd/input_buffer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-14T20:47:59.0365550Z copying torch/include/torch/csrc/autograd/profiler_legacy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-14T20:47:59.0366790Z copying torch/include/torch/csrc/autograd/autograd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-14T20:47:59.0368130Z copying torch/include/torch/csrc/autograd/cpp_hook.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-14T20:47:59.0369530Z copying torch/include/torch/csrc/autograd/python_special_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-14T20:47:59.0370800Z copying torch/include/torch/csrc/autograd/FunctionsManual.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-14T20:47:59.0372280Z copying torch/include/torch/csrc/autograd/forward_grad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-14T20:47:59.0373800Z copying torch/include/torch/csrc/autograd/python_anomaly_mode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-14T20:47:59.0375390Z copying torch/include/torch/csrc/autograd/python_nn_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-14T20:47:59.0376940Z copying torch/include/torch/csrc/autograd/InferenceMode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-14T20:47:59.0378260Z copying torch/include/torch/csrc/autograd/python_variable_indexing.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-14T20:47:59.0379860Z copying torch/include/torch/csrc/autograd/profiler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-14T20:47:59.0381450Z copying torch/include/torch/csrc/autograd/function.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-14T20:47:59.0383040Z copying torch/include/torch/csrc/autograd/anomaly_mode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-14T20:47:59.0384760Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/generated 2025-08-14T20:47:59.0385430Z 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-08-14T20:47:59.0386930Z copying torch/include/torch/csrc/autograd/generated/ViewFuncs.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/generated 2025-08-14T20:47:59.0388690Z 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-08-14T20:47:59.0390160Z copying torch/include/torch/csrc/autograd/generated/VariableType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/generated 2025-08-14T20:47:59.0391710Z copying torch/include/torch/csrc/autograd/generated/Functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/generated 2025-08-14T20:47:59.0396380Z 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-08-14T20:47:59.0397610Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/utils 2025-08-14T20:47:59.0398350Z copying torch/include/torch/csrc/autograd/utils/warnings.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/utils 2025-08-14T20:47:59.0399670Z 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-08-14T20:47:59.0400990Z 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-08-14T20:47:59.0402310Z 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-08-14T20:47:59.0403650Z 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-08-14T20:47:59.0405020Z 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-08-14T20:47:59.0406330Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/functions 2025-08-14T20:47:59.0407070Z copying torch/include/torch/csrc/autograd/functions/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/functions 2025-08-14T20:47:59.0408430Z copying torch/include/torch/csrc/autograd/functions/pybind.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/functions 2025-08-14T20:47:59.0409690Z copying torch/include/torch/csrc/autograd/functions/comm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/functions 2025-08-14T20:47:59.0410950Z 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-08-14T20:47:59.0412400Z 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-08-14T20:47:59.0413570Z copying torch/include/torch/csrc/autograd/functions/tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/functions 2025-08-14T20:47:59.0414940Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/fx 2025-08-14T20:47:59.0415560Z copying torch/include/torch/csrc/fx/node.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/fx 2025-08-14T20:47:59.0417130Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/multiprocessing 2025-08-14T20:47:59.0417720Z copying torch/include/torch/csrc/multiprocessing/init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/multiprocessing 2025-08-14T20:47:59.0419080Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-08-14T20:47:59.0419630Z copying torch/include/torch/csrc/cuda/CUDAPluggableAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-08-14T20:47:59.0420890Z copying torch/include/torch/csrc/cuda/GdsFile.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-08-14T20:47:59.0422120Z copying torch/include/torch/csrc/cuda/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-08-14T20:47:59.0423480Z copying torch/include/torch/csrc/cuda/THCP.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-08-14T20:47:59.0425110Z copying torch/include/torch/csrc/cuda/nccl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-08-14T20:47:59.0426470Z copying torch/include/torch/csrc/cuda/memory_snapshot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-08-14T20:47:59.0427750Z copying torch/include/torch/csrc/cuda/python_nccl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-08-14T20:47:59.0429190Z copying torch/include/torch/csrc/cuda/device_set.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-08-14T20:47:59.0430670Z copying torch/include/torch/csrc/cuda/Event.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-08-14T20:47:59.0431950Z copying torch/include/torch/csrc/cuda/python_comm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-08-14T20:47:59.0433380Z copying torch/include/torch/csrc/cuda/comm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-08-14T20:47:59.0434790Z copying torch/include/torch/csrc/cuda/Stream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-08-14T20:47:59.0435970Z copying torch/include/torch/csrc/cuda/Module.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-08-14T20:47:59.0437370Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/xpu 2025-08-14T20:47:59.0437940Z copying torch/include/torch/csrc/xpu/Event.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/xpu 2025-08-14T20:47:59.0439250Z copying torch/include/torch/csrc/xpu/Stream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/xpu 2025-08-14T20:47:59.0440480Z copying torch/include/torch/csrc/xpu/Module.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/xpu 2025-08-14T20:47:59.0441780Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-08-14T20:47:59.0442460Z copying torch/include/torch/csrc/dynamo/cache_entry.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-08-14T20:47:59.0443690Z copying torch/include/torch/csrc/dynamo/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-08-14T20:47:59.0444970Z copying torch/include/torch/csrc/dynamo/cpython_defs.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-08-14T20:47:59.0446150Z copying torch/include/torch/csrc/dynamo/cpp_shim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-08-14T20:47:59.0447550Z copying torch/include/torch/csrc/dynamo/framelocals_mapping.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-08-14T20:47:59.0448790Z copying torch/include/torch/csrc/dynamo/cpython_includes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-08-14T20:47:59.0450020Z copying torch/include/torch/csrc/dynamo/extra_state.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-08-14T20:47:59.0451310Z copying torch/include/torch/csrc/dynamo/compiled_autograd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-08-14T20:47:59.0452980Z copying torch/include/torch/csrc/dynamo/eval_frame_cpp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-08-14T20:47:59.0454330Z copying torch/include/torch/csrc/dynamo/eval_frame.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-08-14T20:47:59.0455810Z copying torch/include/torch/csrc/dynamo/debug_macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-08-14T20:47:59.0457240Z copying torch/include/torch/csrc/dynamo/python_compiled_autograd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-08-14T20:47:59.0458710Z copying torch/include/torch/csrc/dynamo/init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-08-14T20:47:59.0459960Z copying torch/include/torch/csrc/dynamo/guards.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-08-14T20:47:59.0461240Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-14T20:47:59.0461810Z copying torch/include/torch/csrc/utils/object_ptr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-14T20:47:59.0463070Z copying torch/include/torch/csrc/utils/tensor_numpy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-14T20:47:59.0464360Z copying torch/include/torch/csrc/utils/tensor_dtypes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-14T20:47:59.0465550Z copying torch/include/torch/csrc/utils/python_tuples.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-14T20:47:59.0466790Z copying torch/include/torch/csrc/utils/nested.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-14T20:47:59.0467990Z copying torch/include/torch/csrc/utils/python_raii.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-14T20:47:59.0469320Z copying torch/include/torch/csrc/utils/python_numbers.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-14T20:47:59.0470580Z copying torch/include/torch/csrc/utils/python_scalars.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-14T20:47:59.0471790Z copying torch/include/torch/csrc/utils/pybind.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-14T20:47:59.0473060Z copying torch/include/torch/csrc/utils/tensor_types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-14T20:47:59.0474460Z copying torch/include/torch/csrc/utils/tensor_memoryformats.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-14T20:47:59.0475660Z copying torch/include/torch/csrc/utils/python_arg_parser.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-14T20:47:59.0477190Z 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-08-14T20:47:59.0478450Z copying torch/include/torch/csrc/utils/schema_info.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-14T20:47:59.0479890Z copying torch/include/torch/csrc/utils/generated_serialization_types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-14T20:47:59.0481790Z copying torch/include/torch/csrc/utils/tensor_new.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-14T20:47:59.0482940Z copying torch/include/torch/csrc/utils/tensor_qschemes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-14T20:47:59.0484210Z copying torch/include/torch/csrc/utils/verbose.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-14T20:47:59.0485670Z copying torch/include/torch/csrc/utils/python_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-14T20:47:59.0486960Z copying torch/include/torch/csrc/utils/tensor_list.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-14T20:47:59.0488230Z copying torch/include/torch/csrc/utils/invalid_arguments.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-14T20:47:59.0494880Z copying torch/include/torch/csrc/utils/pythoncapi_compat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-14T20:47:59.0495550Z copying torch/include/torch/csrc/utils/cpp_stacktraces.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-14T20:47:59.0496200Z copying torch/include/torch/csrc/utils/device_lazy_init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-14T20:47:59.0496840Z copying torch/include/torch/csrc/utils/python_strings.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-14T20:47:59.0497480Z copying torch/include/torch/csrc/utils/python_symnode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-14T20:47:59.0498110Z copying torch/include/torch/csrc/utils/byte_order.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-14T20:47:59.0498770Z copying torch/include/torch/csrc/utils/pycfunction_helpers.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-14T20:47:59.0499420Z copying torch/include/torch/csrc/utils/cuda_enabled.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-14T20:47:59.0500070Z copying torch/include/torch/csrc/utils/numpy_stub.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-14T20:47:59.0501390Z copying torch/include/torch/csrc/utils/out_types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-14T20:47:59.0502670Z copying torch/include/torch/csrc/utils/tensor_layouts.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-14T20:47:59.0503790Z copying torch/include/torch/csrc/utils/structseq.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-14T20:47:59.0505100Z copying torch/include/torch/csrc/utils/throughput_benchmark.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-14T20:47:59.0506350Z copying torch/include/torch/csrc/utils/disable_torch_function.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-14T20:47:59.0507650Z copying torch/include/torch/csrc/utils/pyobject_preservation.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-14T20:47:59.0508970Z copying torch/include/torch/csrc/utils/throughput_benchmark-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-14T20:47:59.0510230Z copying torch/include/torch/csrc/utils/tensor_flatten.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-14T20:47:59.0511530Z copying torch/include/torch/csrc/utils/torch_dispatch_mode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-14T20:47:59.0512870Z copying torch/include/torch/csrc/utils/tensor_apply.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-14T20:47:59.0514120Z copying torch/include/torch/csrc/utils/init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-14T20:47:59.0515330Z copying torch/include/torch/csrc/utils/python_compat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-14T20:47:59.0516670Z copying torch/include/torch/csrc/utils/six.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-14T20:47:59.0517870Z copying torch/include/torch/csrc/utils/python_stub.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-14T20:47:59.0519100Z copying torch/include/torch/csrc/utils/variadic.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-14T20:47:59.0520380Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit 2025-08-14T20:47:59.0521040Z copying torch/include/torch/csrc/jit/jit_opt_limit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit 2025-08-14T20:47:59.0522310Z copying torch/include/torch/csrc/jit/jit_log.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit 2025-08-14T20:47:59.0523610Z copying torch/include/torch/csrc/jit/resource_guard.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit 2025-08-14T20:47:59.0524890Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-08-14T20:47:59.0525520Z 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-08-14T20:47:59.0526810Z 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-08-14T20:47:59.0528250Z 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-08-14T20:47:59.0529580Z 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-08-14T20:47:59.0530910Z 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-08-14T20:47:59.0532320Z 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-08-14T20:47:59.0533620Z 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-08-14T20:47:59.0535180Z 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-08-14T20:47:59.0536450Z copying torch/include/torch/csrc/jit/frontend/parser.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-08-14T20:47:59.0537630Z copying torch/include/torch/csrc/jit/frontend/strtod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-08-14T20:47:59.0538980Z copying torch/include/torch/csrc/jit/frontend/tree.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-08-14T20:47:59.0540270Z 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-08-14T20:47:59.0541820Z 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-08-14T20:47:59.0542890Z 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-08-14T20:47:59.0544270Z 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-08-14T20:47:59.0545540Z 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-08-14T20:47:59.0547050Z 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-08-14T20:47:59.0548290Z 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-08-14T20:47:59.0549520Z copying torch/include/torch/csrc/jit/frontend/tracer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-08-14T20:47:59.0550770Z copying torch/include/torch/csrc/jit/frontend/resolver.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-08-14T20:47:59.0552090Z 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-08-14T20:47:59.0553340Z 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-08-14T20:47:59.0554700Z copying torch/include/torch/csrc/jit/frontend/lexer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-08-14T20:47:59.0556230Z 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-08-14T20:47:59.0557500Z 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-08-14T20:47:59.0558790Z 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-08-14T20:47:59.0560080Z 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-08-14T20:47:59.0561340Z 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-08-14T20:47:59.0562730Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python 2025-08-14T20:47:59.0563280Z copying torch/include/torch/csrc/jit/python/pybind.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python 2025-08-14T20:47:59.0564570Z 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-08-14T20:47:59.0565920Z 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-08-14T20:47:59.0567160Z 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-08-14T20:47:59.0568520Z 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-08-14T20:47:59.0569750Z 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-08-14T20:47:59.0571070Z 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-08-14T20:47:59.0572320Z 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-08-14T20:47:59.0573550Z 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-08-14T20:47:59.0574920Z 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-08-14T20:47:59.0576220Z 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-08-14T20:47:59.0577510Z 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-08-14T20:47:59.0578880Z copying torch/include/torch/csrc/jit/python/init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python 2025-08-14T20:47:59.0580180Z 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-08-14T20:47:59.0581660Z 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-08-14T20:47:59.0582810Z 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-08-14T20:47:59.0584030Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-08-14T20:47:59.0584710Z 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-08-14T20:47:59.0586120Z 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-08-14T20:47:59.0587460Z 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-08-14T20:47:59.0588720Z 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-08-14T20:47:59.0590010Z copying torch/include/torch/csrc/jit/tensorexpr/lowerings.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-08-14T20:47:59.0591280Z 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-08-14T20:47:59.0592580Z 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-08-14T20:47:59.0593830Z 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-08-14T20:47:59.0595080Z copying torch/include/torch/csrc/jit/tensorexpr/types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-08-14T20:47:59.0596420Z 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-08-14T20:47:59.0597660Z copying torch/include/torch/csrc/jit/tensorexpr/ir.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-08-14T20:47:59.0599060Z copying torch/include/torch/csrc/jit/tensorexpr/exceptions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-08-14T20:47:59.0600450Z 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-08-14T20:47:59.0601760Z 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-08-14T20:47:59.0603260Z 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-08-14T20:47:59.0604470Z 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-08-14T20:47:59.0605740Z 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-08-14T20:47:59.0607120Z copying torch/include/torch/csrc/jit/tensorexpr/expr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-08-14T20:47:59.0608420Z 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-08-14T20:47:59.0609640Z copying torch/include/torch/csrc/jit/tensorexpr/codegen.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-08-14T20:47:59.0611000Z 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-08-14T20:47:59.0612340Z 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-08-14T20:47:59.0613530Z 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-08-14T20:47:59.0614730Z copying torch/include/torch/csrc/jit/tensorexpr/eval.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-08-14T20:47:59.0616090Z 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-08-14T20:47:59.0617550Z 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-08-14T20:47:59.0618710Z 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-08-14T20:47:59.0620070Z 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-08-14T20:47:59.0621390Z copying torch/include/torch/csrc/jit/tensorexpr/kernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-08-14T20:47:59.0622660Z copying torch/include/torch/csrc/jit/tensorexpr/loopnest.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-08-14T20:47:59.0624100Z 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-08-14T20:47:59.0625320Z 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-08-14T20:47:59.0626630Z 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-08-14T20:47:59.0627980Z 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-08-14T20:47:59.0629230Z 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-08-14T20:47:59.0630390Z copying torch/include/torch/csrc/jit/tensorexpr/stmt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-08-14T20:47:59.0631900Z 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-08-14T20:47:59.0633200Z copying torch/include/torch/csrc/jit/tensorexpr/registerizer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-08-14T20:47:59.0634650Z copying torch/include/torch/csrc/jit/tensorexpr/reduction.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-08-14T20:47:59.0635820Z copying torch/include/torch/csrc/jit/tensorexpr/tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-08-14T20:47:59.0637070Z 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-08-14T20:47:59.0638490Z copying torch/include/torch/csrc/jit/tensorexpr/analysis.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-08-14T20:47:59.0639730Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/operators 2025-08-14T20:47:59.0640410Z 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-08-14T20:47:59.0641690Z 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-08-14T20:47:59.0643010Z 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-08-14T20:47:59.0644320Z 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-08-14T20:47:59.0645590Z 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-08-14T20:47:59.0646860Z 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-08-14T20:47:59.0648110Z 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-08-14T20:47:59.0649360Z 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-08-14T20:47:59.0650560Z 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-08-14T20:47:59.0651780Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir 2025-08-14T20:47:59.0652420Z 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-08-14T20:47:59.0653660Z copying torch/include/torch/csrc/jit/ir/irparser.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir 2025-08-14T20:47:59.0654880Z copying torch/include/torch/csrc/jit/ir/ir.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir 2025-08-14T20:47:59.0656520Z 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-08-14T20:47:59.0657750Z 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-08-14T20:47:59.0659170Z 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-08-14T20:47:59.0660380Z copying torch/include/torch/csrc/jit/ir/attributes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir 2025-08-14T20:47:59.0661690Z 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-08-14T20:47:59.0662900Z copying torch/include/torch/csrc/jit/ir/constants.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir 2025-08-14T20:47:59.0664240Z 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-08-14T20:47:59.0665380Z copying torch/include/torch/csrc/jit/ir/scope.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir 2025-08-14T20:47:59.0666760Z 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-08-14T20:47:59.0667990Z 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-08-14T20:47:59.0669530Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/cuda 2025-08-14T20:47:59.0670120Z copying torch/include/torch/csrc/jit/cuda/cuda.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/cuda 2025-08-14T20:47:59.0671700Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-08-14T20:47:59.0672350Z 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-08-14T20:47:59.0673670Z 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-08-14T20:47:59.0675030Z 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-08-14T20:47:59.0676330Z copying torch/include/torch/csrc/jit/serialization/export.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-08-14T20:47:59.0677740Z 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-08-14T20:47:59.0679060Z 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-08-14T20:47:59.0680390Z copying torch/include/torch/csrc/jit/serialization/pickler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-08-14T20:47:59.0681660Z 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-08-14T20:47:59.0683000Z 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-08-14T20:47:59.0684390Z 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-08-14T20:47:59.0685680Z 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-08-14T20:47:59.0686990Z 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-08-14T20:47:59.0688180Z 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-08-14T20:47:59.0689470Z copying torch/include/torch/csrc/jit/serialization/pickle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-08-14T20:47:59.0690830Z 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-08-14T20:47:59.0692150Z 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-08-14T20:47:59.0693460Z copying torch/include/torch/csrc/jit/serialization/import.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-08-14T20:47:59.0694780Z 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-08-14T20:47:59.0696160Z copying torch/include/torch/csrc/jit/serialization/unpickler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-08-14T20:47:59.0697480Z 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-08-14T20:47:59.0698750Z 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-08-14T20:47:59.0700530Z copying torch/include/torch/csrc/jit/serialization/onnx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-08-14T20:47:59.0701760Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends 2025-08-14T20:47:59.0702390Z 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-08-14T20:47:59.0703650Z 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-08-14T20:47:59.0704900Z copying torch/include/torch/csrc/jit/backends/backend.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends 2025-08-14T20:47:59.0706200Z 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-08-14T20:47:59.0707490Z 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-08-14T20:47:59.0708750Z 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-08-14T20:47:59.0710040Z 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-08-14T20:47:59.0711280Z 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-08-14T20:47:59.0712660Z 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-08-14T20:47:59.0713870Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/coreml 2025-08-14T20:47:59.0714360Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/coreml/cpp 2025-08-14T20:47:59.0715070Z 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-08-14T20:47:59.0716430Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/coreml/objc 2025-08-14T20:47:59.0717160Z 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-08-14T20:47:59.0718350Z 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-08-14T20:47:59.0719620Z 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-08-14T20:47:59.0720950Z 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-08-14T20:47:59.0722150Z 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-08-14T20:47:59.0723370Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/xnnpack 2025-08-14T20:47:59.0724050Z 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-08-14T20:47:59.0725360Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/xnnpack/serialization 2025-08-14T20:47:59.0726220Z 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-08-14T20:47:59.0727270Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/xnnpack/executor 2025-08-14T20:47:59.0728010Z 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-08-14T20:47:59.0729260Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/xnnpack/compiler 2025-08-14T20:47:59.0730000Z 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-08-14T20:47:59.0731080Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-08-14T20:47:59.0731780Z 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-08-14T20:47:59.0733050Z 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-08-14T20:47:59.0734340Z 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-08-14T20:47:59.0735580Z copying torch/include/torch/csrc/jit/runtime/operator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-08-14T20:47:59.0736840Z 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-08-14T20:47:59.0738080Z copying torch/include/torch/csrc/jit/runtime/interpreter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-08-14T20:47:59.0739410Z 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-08-14T20:47:59.0740880Z 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-08-14T20:47:59.0742170Z 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-08-14T20:47:59.0743380Z 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-08-14T20:47:59.0744720Z 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-08-14T20:47:59.0746270Z copying torch/include/torch/csrc/jit/runtime/logging.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-08-14T20:47:59.0747450Z 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-08-14T20:47:59.0748770Z 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-08-14T20:47:59.0750040Z 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-08-14T20:47:59.0751460Z 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-08-14T20:47:59.0752620Z 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-08-14T20:47:59.0753970Z 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-08-14T20:47:59.0755160Z 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-08-14T20:47:59.0756700Z 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-08-14T20:47:59.0757890Z 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-08-14T20:47:59.0759250Z 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-08-14T20:47:59.0760510Z 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-08-14T20:47:59.0761920Z copying torch/include/torch/csrc/jit/runtime/autodiff.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-08-14T20:47:59.0763270Z 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-08-14T20:47:59.0764490Z 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-08-14T20:47:59.0765750Z 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-08-14T20:47:59.0767060Z 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-08-14T20:47:59.0768280Z 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-08-14T20:47:59.0769520Z copying torch/include/torch/csrc/jit/runtime/instruction.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-08-14T20:47:59.0770770Z 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-08-14T20:47:59.0772130Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/interpreter 2025-08-14T20:47:59.0772790Z 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-08-14T20:47:59.0774210Z 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-08-14T20:47:59.0775620Z 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-08-14T20:47:59.0777320Z 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-08-14T20:47:59.0779900Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/static 2025-08-14T20:47:59.0780680Z 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-08-14T20:47:59.0782420Z 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-08-14T20:47:59.0783970Z 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-08-14T20:47:59.0785480Z 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-08-14T20:47:59.0787060Z 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-08-14T20:47:59.0788450Z 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-08-14T20:47:59.0790050Z 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-08-14T20:47:59.0791800Z 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-08-14T20:47:59.0793580Z 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-08-14T20:47:59.0795160Z 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-08-14T20:47:59.0796700Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-08-14T20:47:59.0797320Z 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-08-14T20:47:59.0798680Z 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-08-14T20:47:59.0800170Z 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-08-14T20:47:59.0801390Z 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-08-14T20:47:59.0802810Z 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-08-14T20:47:59.0804120Z 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-08-14T20:47:59.0805370Z 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-08-14T20:47:59.0806660Z 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-08-14T20:47:59.0807890Z 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-08-14T20:47:59.0809140Z 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-08-14T20:47:59.0810330Z copying torch/include/torch/csrc/jit/passes/peephole.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-08-14T20:47:59.0811710Z 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-08-14T20:47:59.0813040Z 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-08-14T20:47:59.0814300Z 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-08-14T20:47:59.0815600Z 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-08-14T20:47:59.0816910Z copying torch/include/torch/csrc/jit/passes/liveness.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-08-14T20:47:59.0818200Z 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-08-14T20:47:59.0819500Z 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-08-14T20:47:59.0820750Z 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-08-14T20:47:59.0822060Z 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-08-14T20:47:59.0823280Z 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-08-14T20:47:59.0824590Z 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-08-14T20:47:59.0825850Z 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-08-14T20:47:59.0827210Z 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-08-14T20:47:59.0828490Z 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-08-14T20:47:59.0829650Z 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-08-14T20:47:59.0830920Z 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-08-14T20:47:59.0832250Z 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-08-14T20:47:59.0833590Z 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-08-14T20:47:59.0834820Z 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-08-14T20:47:59.0836050Z 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-08-14T20:47:59.0837360Z 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-08-14T20:47:59.0838650Z 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-08-14T20:47:59.0839870Z 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-08-14T20:47:59.0841120Z 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-08-14T20:47:59.0842480Z 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-08-14T20:47:59.0843820Z copying torch/include/torch/csrc/jit/passes/inliner.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-08-14T20:47:59.0845070Z 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-08-14T20:47:59.0846390Z 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-08-14T20:47:59.0852840Z 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-08-14T20:47:59.0853640Z 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-08-14T20:47:59.0854430Z 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-08-14T20:47:59.0855180Z 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-08-14T20:47:59.0855920Z 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-08-14T20:47:59.0856640Z 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-08-14T20:47:59.0857880Z 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-08-14T20:47:59.0859190Z 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-08-14T20:47:59.0860500Z 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-08-14T20:47:59.0861800Z 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-08-14T20:47:59.0863030Z 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-08-14T20:47:59.0864510Z 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-08-14T20:47:59.0865810Z 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-08-14T20:47:59.0867080Z 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-08-14T20:47:59.0868490Z 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-08-14T20:47:59.0869760Z 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-08-14T20:47:59.0871020Z 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-08-14T20:47:59.0872230Z 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-08-14T20:47:59.0873550Z 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-08-14T20:47:59.0874960Z 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-08-14T20:47:59.0876240Z 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-08-14T20:47:59.0877570Z 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-08-14T20:47:59.0878800Z 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-08-14T20:47:59.0880090Z 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-08-14T20:47:59.0881360Z 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-08-14T20:47:59.0882780Z 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-08-14T20:47:59.0883960Z 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-08-14T20:47:59.0885410Z 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-08-14T20:47:59.0886780Z 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-08-14T20:47:59.0888250Z 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-08-14T20:47:59.0889480Z copying torch/include/torch/csrc/jit/passes/canonicalize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-08-14T20:47:59.0890700Z 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-08-14T20:47:59.0891990Z 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-08-14T20:47:59.0893290Z 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-08-14T20:47:59.0894610Z 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-08-14T20:47:59.0896100Z 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-08-14T20:47:59.0897500Z 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-08-14T20:47:59.0898820Z 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-08-14T20:47:59.0899940Z 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-08-14T20:47:59.0901340Z 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-08-14T20:47:59.0902850Z 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-08-14T20:47:59.0904130Z 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-08-14T20:47:59.0905390Z copying torch/include/torch/csrc/jit/passes/onnx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-08-14T20:47:59.0906670Z 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-08-14T20:47:59.0907880Z 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-08-14T20:47:59.0909140Z copying torch/include/torch/csrc/jit/passes/autocast.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-08-14T20:47:59.0910470Z 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-08-14T20:47:59.0911770Z 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-08-14T20:47:59.0913100Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx 2025-08-14T20:47:59.0913880Z 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-08-14T20:47:59.0915220Z 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-08-14T20:47:59.0916640Z 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-08-14T20:47:59.0917930Z 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-08-14T20:47:59.0919230Z 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-08-14T20:47:59.0920540Z 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-08-14T20:47:59.0922070Z 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-08-14T20:47:59.0923250Z 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-08-14T20:47:59.0924550Z 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-08-14T20:47:59.0925810Z 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-08-14T20:47:59.0927130Z 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-08-14T20:47:59.0928360Z 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-08-14T20:47:59.0929830Z 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-08-14T20:47:59.0931600Z 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-08-14T20:47:59.0932990Z 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-08-14T20:47:59.0934190Z 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-08-14T20:47:59.0935910Z 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-08-14T20:47:59.0936900Z 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-08-14T20:47:59.0938250Z 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-08-14T20:47:59.0939510Z 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-08-14T20:47:59.0940840Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/pattern_conversion 2025-08-14T20:47:59.0941570Z 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-08-14T20:47:59.0943050Z 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-08-14T20:47:59.0944360Z 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-08-14T20:47:59.0945550Z 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-08-14T20:47:59.0946870Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/dbr_quantization 2025-08-14T20:47:59.0947630Z 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-08-14T20:47:59.0949020Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/utils 2025-08-14T20:47:59.0949660Z 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-08-14T20:47:59.0950960Z 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-08-14T20:47:59.0952230Z 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-08-14T20:47:59.0953580Z 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-08-14T20:47:59.0955000Z 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-08-14T20:47:59.0956290Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/quantization 2025-08-14T20:47:59.0956940Z 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-08-14T20:47:59.0958270Z 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-08-14T20:47:59.0959580Z 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-08-14T20:47:59.0960810Z 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-08-14T20:47:59.0962230Z 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-08-14T20:47:59.0963850Z 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-08-14T20:47:59.0965190Z 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-08-14T20:47:59.0966620Z 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-08-14T20:47:59.0967940Z 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-08-14T20:47:59.0969180Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen 2025-08-14T20:47:59.0969730Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/cuda 2025-08-14T20:47:59.0970430Z 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-08-14T20:47:59.0971710Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn 2025-08-14T20:47:59.0972420Z 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-08-14T20:47:59.0973650Z 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-08-14T20:47:59.0974940Z 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-08-14T20:47:59.0976210Z 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-08-14T20:47:59.0977450Z 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-08-14T20:47:59.0978620Z 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-08-14T20:47:59.0979920Z 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-08-14T20:47:59.0981140Z 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-08-14T20:47:59.0982390Z 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-08-14T20:47:59.0983660Z 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-08-14T20:47:59.0984940Z 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-08-14T20:47:59.0986300Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser 2025-08-14T20:47:59.0986930Z 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-08-14T20:47:59.0988140Z 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-08-14T20:47:59.0989370Z 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-08-14T20:47:59.0990630Z 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-08-14T20:47:59.0991950Z 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-08-14T20:47:59.0993190Z 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-08-14T20:47:59.0994430Z 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-08-14T20:47:59.0995640Z 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-08-14T20:47:59.0996950Z 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-08-14T20:47:59.0998210Z 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-08-14T20:47:59.0999590Z 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-08-14T20:47:59.1000730Z 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-08-14T20:47:59.1002240Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/cpu 2025-08-14T20:47:59.1002750Z 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-08-14T20:47:59.1004030Z 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-08-14T20:47:59.1005350Z 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-08-14T20:47:59.1006500Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/cuda 2025-08-14T20:47:59.1007180Z 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-08-14T20:47:59.1008430Z 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-08-14T20:47:59.1009620Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/testing 2025-08-14T20:47:59.1010290Z 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-08-14T20:47:59.1011550Z 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-08-14T20:47:59.1012740Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-08-14T20:47:59.1013390Z 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-08-14T20:47:59.1014690Z 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-08-14T20:47:59.1015900Z copying torch/include/torch/csrc/jit/mobile/observer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-08-14T20:47:59.1017220Z 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-08-14T20:47:59.1018610Z 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-08-14T20:47:59.1019680Z copying torch/include/torch/csrc/jit/mobile/quantization.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-08-14T20:47:59.1020870Z 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-08-14T20:47:59.1022170Z copying torch/include/torch/csrc/jit/mobile/code.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-08-14T20:47:59.1023380Z copying torch/include/torch/csrc/jit/mobile/interpreter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-08-14T20:47:59.1024670Z copying torch/include/torch/csrc/jit/mobile/frame.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-08-14T20:47:59.1025880Z copying torch/include/torch/csrc/jit/mobile/method.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-08-14T20:47:59.1027190Z 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-08-14T20:47:59.1028430Z 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-08-14T20:47:59.1029720Z 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-08-14T20:47:59.1030970Z 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-08-14T20:47:59.1032300Z 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-08-14T20:47:59.1033530Z 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-08-14T20:47:59.1034770Z 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-08-14T20:47:59.1035980Z copying torch/include/torch/csrc/jit/mobile/import.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-08-14T20:47:59.1037230Z copying torch/include/torch/csrc/jit/mobile/module.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-08-14T20:47:59.1038510Z copying torch/include/torch/csrc/jit/mobile/function.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-08-14T20:47:59.1039850Z 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-08-14T20:47:59.1040960Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/compatibility 2025-08-14T20:47:59.1041720Z 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-08-14T20:47:59.1043000Z 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-08-14T20:47:59.1044260Z 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-08-14T20:47:59.1045500Z 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-08-14T20:47:59.1046750Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/model_tracer 2025-08-14T20:47:59.1047400Z 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-08-14T20:47:59.1048650Z 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-08-14T20:47:59.1049950Z 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-08-14T20:47:59.1051220Z 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-08-14T20:47:59.1052470Z 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-08-14T20:47:59.1053820Z 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-08-14T20:47:59.1055170Z 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-08-14T20:47:59.1056290Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/nnc 2025-08-14T20:47:59.1056930Z 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-08-14T20:47:59.1058240Z 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-08-14T20:47:59.1059490Z 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-08-14T20:47:59.1060660Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/train 2025-08-14T20:47:59.1061400Z 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-08-14T20:47:59.1062690Z 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-08-14T20:47:59.1064080Z 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-08-14T20:47:59.1065260Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/train/optim 2025-08-14T20:47:59.1065890Z 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-08-14T20:47:59.1067270Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/operator_upgraders 2025-08-14T20:47:59.1068060Z 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-08-14T20:47:59.1069720Z 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-08-14T20:47:59.1071060Z 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-08-14T20:47:59.1072370Z 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-08-14T20:47:59.1073580Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/api 2025-08-14T20:47:59.1074300Z 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-08-14T20:47:59.1075650Z copying torch/include/torch/csrc/jit/api/method.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/api 2025-08-14T20:47:59.1076900Z 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-08-14T20:47:59.1078190Z copying torch/include/torch/csrc/jit/api/object.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/api 2025-08-14T20:47:59.1079520Z copying torch/include/torch/csrc/jit/api/module.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/api 2025-08-14T20:47:59.1081070Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy 2025-08-14T20:47:59.1081540Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/generated 2025-08-14T20:47:59.1082280Z copying torch/include/torch/csrc/lazy/generated/LazyNativeFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/generated 2025-08-14T20:47:59.1083780Z copying torch/include/torch/csrc/lazy/generated/LazyNonNativeIr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/generated 2025-08-14T20:47:59.1085110Z copying torch/include/torch/csrc/lazy/generated/LazyIr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/generated 2025-08-14T20:47:59.1087940Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-08-14T20:47:59.1088480Z 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-08-14T20:47:59.1089740Z 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-08-14T20:47:59.1091060Z copying torch/include/torch/csrc/lazy/core/config.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-08-14T20:47:59.1092430Z 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-08-14T20:47:59.1093690Z copying torch/include/torch/csrc/lazy/core/ir.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-08-14T20:47:59.1095090Z 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-08-14T20:47:59.1096600Z 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-08-14T20:47:59.1097770Z copying torch/include/torch/csrc/lazy/core/cache.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-08-14T20:47:59.1099230Z 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-08-14T20:47:59.1100450Z copying torch/include/torch/csrc/lazy/core/shape.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-08-14T20:47:59.1101820Z 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-08-14T20:47:59.1102940Z copying torch/include/torch/csrc/lazy/core/unique.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-08-14T20:47:59.1104190Z 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-08-14T20:47:59.1105480Z copying torch/include/torch/csrc/lazy/core/util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-08-14T20:47:59.1106920Z 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-08-14T20:47:59.1108160Z copying torch/include/torch/csrc/lazy/core/metrics.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-08-14T20:47:59.1109590Z 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-08-14T20:47:59.1110840Z 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-08-14T20:47:59.1112140Z 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-08-14T20:47:59.1113390Z copying torch/include/torch/csrc/lazy/core/helpers.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-08-14T20:47:59.1114610Z copying torch/include/torch/csrc/lazy/core/trie.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-08-14T20:47:59.1115840Z copying torch/include/torch/csrc/lazy/core/tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-08-14T20:47:59.1117140Z copying torch/include/torch/csrc/lazy/core/hash.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-08-14T20:47:59.1118390Z 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-08-14T20:47:59.1119960Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/internal_ops 2025-08-14T20:47:59.1120350Z 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-08-14T20:47:59.1121650Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/ops 2025-08-14T20:47:59.1122410Z 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-08-14T20:47:59.1123600Z 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-08-14T20:47:59.1124940Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/python 2025-08-14T20:47:59.1125680Z 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-08-14T20:47:59.1126950Z copying torch/include/torch/csrc/lazy/python/init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/python 2025-08-14T20:47:59.1128640Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend 2025-08-14T20:47:59.1129010Z 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-08-14T20:47:59.1130180Z 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-08-14T20:47:59.1131560Z 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-08-14T20:47:59.1132850Z 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-08-14T20:47:59.1134100Z 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-08-14T20:47:59.1135500Z 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-08-14T20:47:59.1136740Z 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-08-14T20:47:59.1137980Z 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-08-14T20:47:59.1139160Z 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-08-14T20:47:59.1140480Z 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-08-14T20:47:59.1141790Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend/ops 2025-08-14T20:47:59.1142420Z 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-08-14T20:47:59.1143880Z 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-08-14T20:47:59.1145020Z 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-08-14T20:47:59.1146320Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/backend 2025-08-14T20:47:59.1146970Z 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-08-14T20:47:59.1148260Z 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-08-14T20:47:59.1149530Z 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-08-14T20:47:59.1150790Z 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-08-14T20:47:59.1152020Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/mtia 2025-08-14T20:47:59.1152620Z copying torch/include/torch/csrc/mtia/Module.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/mtia 2025-08-14T20:47:59.1153990Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/mtia/profiler 2025-08-14T20:47:59.1154660Z copying torch/include/torch/csrc/mtia/profiler/MTIAMemoryProfiler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/mtia/profiler 2025-08-14T20:47:59.1155810Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api 2025-08-14T20:47:59.1156320Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include 2025-08-14T20:47:59.1156780Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-08-14T20:47:59.1157440Z 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-08-14T20:47:59.1158780Z 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-08-14T20:47:59.1160140Z 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-08-14T20:47:59.1161460Z 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-08-14T20:47:59.1162700Z 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-08-14T20:47:59.1164080Z 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-08-14T20:47:59.1165330Z 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-08-14T20:47:59.1166540Z 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-08-14T20:47:59.1167790Z 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-08-14T20:47:59.1169270Z 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-08-14T20:47:59.1170720Z 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-08-14T20:47:59.1172160Z 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-08-14T20:47:59.1173650Z 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-08-14T20:47:59.1175120Z 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-08-14T20:47:59.1176600Z 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-08-14T20:47:59.1177990Z 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-08-14T20:47:59.1179350Z 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-08-14T20:47:59.1180740Z 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-08-14T20:47:59.1182210Z 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-08-14T20:47:59.1183820Z 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-08-14T20:47:59.1185290Z 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-08-14T20:47:59.1186620Z 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-08-14T20:47:59.1188010Z 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-08-14T20:47:59.1189320Z 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-08-14T20:47:59.1190700Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn 2025-08-14T20:47:59.1191380Z 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-08-14T20:47:59.1192650Z 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-08-14T20:47:59.1194050Z 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-08-14T20:47:59.1195300Z 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-08-14T20:47:59.1196700Z 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-08-14T20:47:59.1198000Z 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-08-14T20:47:59.1199270Z 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-08-14T20:47:59.1200670Z 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-08-14T20:47:59.1201940Z 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-08-14T20:47:59.1203330Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-08-14T20:47:59.1204020Z 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-08-14T20:47:59.1205300Z 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-08-14T20:47:59.1206770Z 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-08-14T20:47:59.1208060Z 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-08-14T20:47:59.1209290Z 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-08-14T20:47:59.1210670Z 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-08-14T20:47:59.1211990Z 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-08-14T20:47:59.1213710Z 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-08-14T20:47:59.1214570Z 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-08-14T20:47:59.1215940Z 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-08-14T20:47:59.1217270Z 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-08-14T20:47:59.1218540Z 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-08-14T20:47:59.1219830Z 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-08-14T20:47:59.1221420Z 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-08-14T20:47:59.1222660Z 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-08-14T20:47:59.1224070Z 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-08-14T20:47:59.1225320Z 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-08-14T20:47:59.1226630Z 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-08-14T20:47:59.1227940Z 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-08-14T20:47:59.1229140Z 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-08-14T20:47:59.1230420Z 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-08-14T20:47:59.1231930Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/parallel 2025-08-14T20:47:59.1232690Z 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-08-14T20:47:59.1234010Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/utils 2025-08-14T20:47:59.1234710Z 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-08-14T20:47:59.1236250Z 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-08-14T20:47:59.1237270Z 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-08-14T20:47:59.1238380Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-08-14T20:47:59.1239090Z 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-08-14T20:47:59.1240340Z 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-08-14T20:47:59.1241650Z 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-08-14T20:47:59.1242910Z 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-08-14T20:47:59.1244280Z 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-08-14T20:47:59.1245520Z 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-08-14T20:47:59.1246870Z 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-08-14T20:47:59.1248210Z 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-08-14T20:47:59.1249430Z 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-08-14T20:47:59.1250720Z 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-08-14T20:47:59.1252290Z 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-08-14T20:47:59.1253510Z 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-08-14T20:47:59.1254750Z 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-08-14T20:47:59.1256070Z 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-08-14T20:47:59.1257390Z 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-08-14T20:47:59.1258950Z 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-08-14T20:47:59.1260580Z 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-08-14T20:47:59.1262470Z 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-08-14T20:47:59.1263530Z 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-08-14T20:47:59.1264800Z 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-08-14T20:47:59.1266320Z 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-08-14T20:47:59.1267680Z 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-08-14T20:47:59.1268820Z 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-08-14T20:47:59.1270290Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-08-14T20:47:59.1271090Z 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-08-14T20:47:59.1272460Z 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-08-14T20:47:59.1273870Z 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-08-14T20:47:59.1275310Z 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-08-14T20:47:59.1276570Z 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-08-14T20:47:59.1278060Z 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-08-14T20:47:59.1279310Z 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-08-14T20:47:59.1280630Z 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-08-14T20:47:59.1281910Z 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-08-14T20:47:59.1283260Z 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-08-14T20:47:59.1284570Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional 2025-08-14T20:47:59.1285330Z 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-08-14T20:47:59.1286600Z 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-08-14T20:47:59.1287930Z 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-08-14T20:47:59.1289640Z 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-08-14T20:47:59.1290590Z 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-08-14T20:47:59.1291810Z 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-08-14T20:47:59.1293150Z 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-08-14T20:47:59.1294540Z 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-08-14T20:47:59.1296100Z 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-08-14T20:47:59.1297380Z 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-08-14T20:47:59.1298700Z 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-08-14T20:47:59.1300570Z 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-08-14T20:47:59.1302000Z 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-08-14T20:47:59.1303140Z 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-08-14T20:47:59.1304630Z 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-08-14T20:47:59.1305950Z 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-08-14T20:47:59.1307390Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/python 2025-08-14T20:47:59.1308010Z 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-08-14T20:47:59.1309310Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim 2025-08-14T20:47:59.1309970Z 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-08-14T20:47:59.1311280Z 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-08-14T20:47:59.1312780Z 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-08-14T20:47:59.1314010Z 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-08-14T20:47:59.1315200Z 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-08-14T20:47:59.1316550Z 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-08-14T20:47:59.1317840Z 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-08-14T20:47:59.1319070Z 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-08-14T20:47:59.1320440Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim/schedulers 2025-08-14T20:47:59.1321230Z 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-08-14T20:47:59.1322630Z 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-08-14T20:47:59.1324220Z 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-08-14T20:47:59.1325540Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/serialize 2025-08-14T20:47:59.1326230Z 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-08-14T20:47:59.1327630Z 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-08-14T20:47:59.1329120Z 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-08-14T20:47:59.1330200Z 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-08-14T20:47:59.1331650Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nativert 2025-08-14T20:47:59.1332210Z 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-08-14T20:47:59.1333380Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/detail 2025-08-14T20:47:59.1333920Z 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-08-14T20:47:59.1335330Z 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-08-14T20:47:59.1336490Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data 2025-08-14T20:47:59.1337200Z 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-08-14T20:47:59.1338600Z 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-08-14T20:47:59.1339910Z 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-08-14T20:47:59.1341140Z 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-08-14T20:47:59.1342550Z 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-08-14T20:47:59.1343920Z 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-08-14T20:47:59.1345050Z 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-08-14T20:47:59.1346260Z 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-08-14T20:47:59.1347620Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/datasets 2025-08-14T20:47:59.1348350Z 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-08-14T20:47:59.1349680Z 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-08-14T20:47:59.1350910Z 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-08-14T20:47:59.1352200Z 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-08-14T20:47:59.1353820Z 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-08-14T20:47:59.1355030Z 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-08-14T20:47:59.1356330Z 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-08-14T20:47:59.1357600Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/detail 2025-08-14T20:47:59.1358340Z 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-08-14T20:47:59.1359610Z 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-08-14T20:47:59.1360870Z 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-08-14T20:47:59.1362200Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/transforms 2025-08-14T20:47:59.1362930Z 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-08-14T20:47:59.1364260Z 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-08-14T20:47:59.1365490Z 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-08-14T20:47:59.1366750Z 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-08-14T20:47:59.1368040Z 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-08-14T20:47:59.1369290Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/samplers 2025-08-14T20:47:59.1370210Z 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-08-14T20:47:59.1371360Z 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-08-14T20:47:59.1372670Z 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-08-14T20:47:59.1373870Z 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-08-14T20:47:59.1375210Z 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-08-14T20:47:59.1376480Z 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-08-14T20:47:59.1377760Z 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-08-14T20:47:59.1379040Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/dataloader 2025-08-14T20:47:59.1379730Z 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-08-14T20:47:59.1381150Z 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-08-14T20:47:59.1382440Z 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-08-14T20:47:59.1383590Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-08-14T20:47:59.1384280Z copying torch/include/torch/csrc/profiler/combined_traceback.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-08-14T20:47:59.1385630Z copying torch/include/torch/csrc/profiler/events.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-08-14T20:47:59.1386810Z copying torch/include/torch/csrc/profiler/kineto_shim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-08-14T20:47:59.1388050Z copying torch/include/torch/csrc/profiler/api.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-08-14T20:47:59.1389460Z copying torch/include/torch/csrc/profiler/kineto_client_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-08-14T20:47:59.1390600Z copying torch/include/torch/csrc/profiler/util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-08-14T20:47:59.1391870Z copying torch/include/torch/csrc/profiler/containers.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-08-14T20:47:59.1393170Z copying torch/include/torch/csrc/profiler/collection.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-08-14T20:47:59.1395330Z copying torch/include/torch/csrc/profiler/perf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-08-14T20:47:59.1396500Z copying torch/include/torch/csrc/profiler/data_flow.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-08-14T20:47:59.1397670Z copying torch/include/torch/csrc/profiler/perf-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-08-14T20:47:59.1399270Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/stubs 2025-08-14T20:47:59.1399770Z copying torch/include/torch/csrc/profiler/stubs/base.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/stubs 2025-08-14T20:47:59.1401060Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/standalone 2025-08-14T20:47:59.1401730Z 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-08-14T20:47:59.1402950Z 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-08-14T20:47:59.1404360Z 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-08-14T20:47:59.1405680Z 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-08-14T20:47:59.1406770Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/python 2025-08-14T20:47:59.1407420Z copying torch/include/torch/csrc/profiler/python/pybind.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/python 2025-08-14T20:47:59.1408740Z 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-08-14T20:47:59.1409940Z copying torch/include/torch/csrc/profiler/python/init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/python 2025-08-14T20:47:59.1411260Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/orchestration 2025-08-14T20:47:59.1411940Z copying torch/include/torch/csrc/profiler/orchestration/vulkan.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/orchestration 2025-08-14T20:47:59.1413180Z copying torch/include/torch/csrc/profiler/orchestration/observer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/orchestration 2025-08-14T20:47:59.1414550Z 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-08-14T20:47:59.1415840Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-08-14T20:47:59.1416460Z copying torch/include/torch/csrc/profiler/unwind/unwinder.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-08-14T20:47:59.1417750Z 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-08-14T20:47:59.1418980Z copying torch/include/torch/csrc/profiler/unwind/unwind.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-08-14T20:47:59.1420190Z copying torch/include/torch/csrc/profiler/unwind/sections.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-08-14T20:47:59.1421480Z 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-08-14T20:47:59.1422720Z 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-08-14T20:47:59.1424020Z 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-08-14T20:47:59.1425330Z copying torch/include/torch/csrc/profiler/unwind/action.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-08-14T20:47:59.1426500Z 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-08-14T20:47:59.1427870Z 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-08-14T20:47:59.1429160Z copying torch/include/torch/csrc/profiler/unwind/fde.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-08-14T20:47:59.1430470Z copying torch/include/torch/csrc/profiler/unwind/communicate.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-08-14T20:47:59.1431750Z copying torch/include/torch/csrc/profiler/unwind/lexer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-08-14T20:47:59.1433050Z 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-08-14T20:47:59.1434340Z 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-08-14T20:47:59.1435630Z 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-08-14T20:47:59.1436790Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/tensor 2025-08-14T20:47:59.1437440Z copying torch/include/torch/csrc/tensor/python_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/tensor 2025-08-14T20:47:59.1438720Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/export 2025-08-14T20:47:59.1439370Z copying torch/include/torch/csrc/export/pt2_archive_constants.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/export 2025-08-14T20:47:59.1440580Z copying torch/include/torch/csrc/export/pybind.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/export 2025-08-14T20:47:59.1441830Z copying torch/include/torch/csrc/export/example_upgraders.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/export 2025-08-14T20:47:59.1443060Z copying torch/include/torch/csrc/export/upgrader.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/export 2025-08-14T20:47:59.1444310Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/functorch 2025-08-14T20:47:59.1444970Z copying torch/include/torch/csrc/functorch/init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/functorch 2025-08-14T20:47:59.1446140Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-08-14T20:47:59.1446800Z copying torch/include/kineto/ClientInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-08-14T20:47:59.1448080Z copying torch/include/kineto/GenericTraceActivity.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-08-14T20:47:59.1449310Z copying torch/include/kineto/IActivityProfiler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-08-14T20:47:59.1450540Z copying torch/include/kineto/Config.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-08-14T20:47:59.1451800Z copying torch/include/kineto/TraceSpan.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-08-14T20:47:59.1453090Z copying torch/include/kineto/LoggingAPI.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-08-14T20:47:59.1454340Z copying torch/include/kineto/ITraceActivity.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-08-14T20:47:59.1455690Z copying torch/include/kineto/ActivityProfilerInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-08-14T20:47:59.1457010Z copying torch/include/kineto/ActivityTraceInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-08-14T20:47:59.1458120Z copying torch/include/kineto/output_base.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-08-14T20:47:59.1459400Z copying torch/include/kineto/ThreadUtil.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-08-14T20:47:59.1460610Z copying torch/include/kineto/ActivityType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-08-14T20:47:59.1461900Z copying torch/include/kineto/libkineto.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-08-14T20:47:59.1463110Z copying torch/include/kineto/time_since_epoch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-08-14T20:47:59.1464390Z copying torch/include/kineto/ILoggerObserver.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-08-14T20:47:59.1465610Z copying torch/include/kineto/AbstractConfig.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-08-14T20:47:59.1466870Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai 2025-08-14T20:47:59.1467460Z copying torch/include/kai/kai_common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai 2025-08-14T20:47:59.1468840Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels 2025-08-14T20:47:59.1469660Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul 2025-08-14T20:47:59.1469970Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-08-14T20:47:59.1470800Z 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-08-14T20:47:59.1472260Z 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-08-14T20:47:59.1473630Z 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-08-14T20:47:59.1474960Z 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-08-14T20:47:59.1476400Z 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-08-14T20:47:59.1477830Z 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-08-14T20:47:59.1479220Z 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-08-14T20:47:59.1480600Z 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-08-14T20:47:59.1481910Z 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-08-14T20:47:59.1483350Z 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-08-14T20:47:59.1484640Z 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-08-14T20:47:59.1490580Z 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-08-14T20:47:59.1490980Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp 2025-08-14T20:47:59.1491640Z 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-08-14T20:47:59.1492230Z 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-08-14T20:47:59.1492790Z 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-08-14T20:47:59.1493380Z 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-08-14T20:47:59.1493970Z 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-08-14T20:47:59.1494680Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p 2025-08-14T20:47:59.1495480Z 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-08-14T20:47:59.1497010Z 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-08-14T20:47:59.1498330Z 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-08-14T20:47:59.1499580Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p 2025-08-14T20:47:59.1500300Z 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-08-14T20:47:59.1501660Z 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-08-14T20:47:59.1503050Z 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-08-14T20:47:59.1504430Z 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-08-14T20:47:59.1505660Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p 2025-08-14T20:47:59.1506540Z 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-08-14T20:47:59.1507930Z 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-08-14T20:47:59.1509240Z 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-08-14T20:47:59.1510630Z 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-08-14T20:47:59.1511970Z 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-08-14T20:47:59.1513280Z 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-08-14T20:47:59.1514580Z 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-08-14T20:47:59.1515980Z 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-08-14T20:47:59.1517130Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p 2025-08-14T20:47:59.1517970Z 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-08-14T20:47:59.1519350Z 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-08-14T20:47:59.1520690Z 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-08-14T20:47:59.1521830Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-08-14T20:47:59.1522520Z 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-08-14T20:47:59.1523870Z 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-08-14T20:47:59.1525100Z 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-08-14T20:47:59.1526410Z 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-08-14T20:47:59.1527660Z 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-08-14T20:47:59.1528970Z 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-08-14T20:47:59.1530290Z 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-08-14T20:47:59.1531580Z 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-08-14T20:47:59.1532960Z 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-08-14T20:47:59.1534260Z 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-08-14T20:47:59.1535520Z 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-08-14T20:47:59.1536780Z 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-08-14T20:47:59.1538160Z 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-08-14T20:47:59.1539440Z 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-08-14T20:47:59.1540720Z 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-08-14T20:47:59.1542090Z 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-08-14T20:47:59.1543380Z 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-08-14T20:47:59.1544690Z 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-08-14T20:47:59.1546010Z 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-08-14T20:47:59.1547300Z 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-08-14T20:47:59.1548710Z 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-08-14T20:47:59.1549960Z 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-08-14T20:47:59.1551400Z 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-08-14T20:47:59.1552640Z 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-08-14T20:47:59.1554060Z 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-08-14T20:47:59.1555440Z 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-08-14T20:47:59.1556770Z 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-08-14T20:47:59.1558220Z 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-08-14T20:47:59.1559730Z 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-08-14T20:47:59.1561290Z 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-08-14T20:47:59.1562820Z 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-08-14T20:47:59.1564230Z 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-08-14T20:47:59.1565860Z 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-08-14T20:47:59.1567400Z 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-08-14T20:47:59.1568940Z 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-08-14T20:47:59.1570500Z 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-08-14T20:47:59.1572130Z 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-08-14T20:47:59.1573550Z 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-08-14T20:47:59.1575140Z 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-08-14T20:47:59.1576570Z 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-08-14T20:47:59.1578110Z 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-08-14T20:47:59.1579540Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-08-14T20:47:59.1580440Z 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-08-14T20:47:59.1581940Z 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-08-14T20:47:59.1583150Z 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-08-14T20:47:59.1584570Z 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-08-14T20:47:59.1586080Z 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-08-14T20:47:59.1587510Z 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-08-14T20:47:59.1589020Z 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-08-14T20:47:59.1590340Z 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-08-14T20:47:59.1591950Z 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-08-14T20:47:59.1593170Z 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-08-14T20:47:59.1594520Z 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-08-14T20:47:59.1596080Z 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-08-14T20:47:59.1597250Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8_qsi8cxp 2025-08-14T20:47:59.1598030Z 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-08-14T20:47:59.1599490Z 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-08-14T20:47:59.1600750Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/imatmul_clamp_qai8_qai8p_qsi8cxp 2025-08-14T20:47:59.1601690Z 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-08-14T20:47:59.1602990Z 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-08-14T20:47:59.1604130Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp 2025-08-14T20:47:59.1604930Z 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-08-14T20:47:59.1606340Z 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-08-14T20:47:59.1607760Z 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-08-14T20:47:59.1609160Z 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-08-14T20:47:59.1610460Z 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-08-14T20:47:59.1611660Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp 2025-08-14T20:47:59.1612480Z 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-08-14T20:47:59.1613850Z 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-08-14T20:47:59.1615140Z 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-08-14T20:47:59.1616480Z 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-08-14T20:47:59.1618000Z 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-08-14T20:47:59.1619060Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p 2025-08-14T20:47:59.1619880Z 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-08-14T20:47:59.1621230Z 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-08-14T20:47:59.1622550Z 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-08-14T20:47:59.1623750Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p 2025-08-14T20:47:59.1624580Z 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-08-14T20:47:59.1625940Z 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-08-14T20:47:59.1627370Z 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-08-14T20:47:59.1628510Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_fp32_bf16p_bf16p 2025-08-14T20:47:59.1629350Z 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-08-14T20:47:59.1630660Z 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-08-14T20:47:59.1631840Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32p_f32p 2025-08-14T20:47:59.1632580Z 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-08-14T20:47:59.1633940Z 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-08-14T20:47:59.1635150Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16p_f16p 2025-08-14T20:47:59.1635870Z 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-08-14T20:47:59.1637140Z 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-08-14T20:47:59.1638340Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8p_qsi8cxp 2025-08-14T20:47:59.1639100Z 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-08-14T20:47:59.1640510Z 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-08-14T20:47:59.1641800Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/imatmul_clamp_f16_f16p_f16p 2025-08-14T20:47:59.1642580Z 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-08-14T20:47:59.1643870Z 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-08-14T20:47:59.1645140Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_bf16p_bf16p 2025-08-14T20:47:59.1645850Z 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-08-14T20:47:59.1647290Z 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-08-14T20:47:59.1648520Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/imatmul_clamp_f32_f32p_f32p 2025-08-14T20:47:59.1649250Z 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-08-14T20:47:59.1650590Z 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-08-14T20:47:59.1651720Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1652270Z copying torch/include/ATen/Formatting.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1653590Z copying torch/include/ATen/NestedTensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1654910Z copying torch/include/ATen/CPUFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1656170Z copying torch/include/ATen/SparseMPSFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1657490Z copying torch/include/ATen/LegacyBatchedFallback.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1658820Z copying torch/include/ATen/CollapseDims.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1660150Z copying torch/include/ATen/CompositeImplicitAutogradNestedTensorFunctions_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1661370Z copying torch/include/ATen/MetaFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1662600Z copying torch/include/ATen/Utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1663930Z copying torch/include/ATen/TensorOptions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1665170Z copying torch/include/ATen/DeviceAccelerator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1666520Z copying torch/include/ATen/TensorUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1668020Z copying torch/include/ATen/MemoryOverlap.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1669320Z copying torch/include/ATen/TensorSubclassLikeUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1670360Z copying torch/include/ATen/LegacyVmapMode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1671650Z copying torch/include/ATen/InitialTensorOptions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1673020Z copying torch/include/ATen/Version.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1674190Z copying torch/include/ATen/DLConvertor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1675410Z copying torch/include/ATen/Device.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1676680Z copying torch/include/ATen/FuncTorchTLS.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1678120Z copying torch/include/ATen/CompositeExplicitAutogradNonFunctionalFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1679260Z copying torch/include/ATen/jiterator_macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1680420Z copying torch/include/ATen/Operators.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1682580Z copying torch/include/ATen/CPUFunctions_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1683500Z copying torch/include/ATen/ceil_div.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1684770Z copying torch/include/ATen/EmptyTensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1686030Z copying torch/include/ATen/NativeMetaFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1687630Z copying torch/include/ATen/dlpack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1688910Z copying torch/include/ATen/Config.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1690210Z copying torch/include/ATen/ThreadLocalPythonObjects.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1691350Z copying torch/include/ATen/Backtrace.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1692640Z copying torch/include/ATen/SparseCsrTensorUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1694210Z copying torch/include/ATen/TracerMode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1695270Z copying torch/include/ATen/BlasBackend.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1696520Z copying torch/include/ATen/Backend.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1697820Z copying torch/include/ATen/RegistrationDeclarations.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1703970Z copying torch/include/ATen/CompositeImplicitAutogradFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1704740Z copying torch/include/ATen/PTThreadPool.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1705920Z copying torch/include/ATen/OpaqueTensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1707200Z copying torch/include/ATen/MapAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1708510Z copying torch/include/ATen/record_function.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1709820Z copying torch/include/ATen/WrapDimUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1711090Z copying torch/include/ATen/RedispatchFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1723030Z copying torch/include/ATen/Context.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1724190Z copying torch/include/ATen/CompositeImplicitAutogradNestedTensorFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1725540Z copying torch/include/ATen/CompositeExplicitAutogradNonFunctionalFunctions_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1726660Z copying torch/include/ATen/div_rtn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1727950Z copying torch/include/ATen/ExpandUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1729440Z copying torch/include/ATen/MPSFunctions_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1730910Z copying torch/include/ATen/TypeDefault.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1732150Z copying torch/include/ATen/MPSFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1733380Z copying torch/include/ATen/VmapGeneratedPlumbing.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1742900Z copying torch/include/ATen/MethodOperators.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1743870Z copying torch/include/ATen/CPUFixedAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1745150Z copying torch/include/ATen/NamedTensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1746330Z copying torch/include/ATen/Scalar.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1747550Z copying torch/include/ATen/TensorIteratorInternal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1748830Z copying torch/include/ATen/LinalgBackend.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1750120Z copying torch/include/ATen/LegacyBatchedTensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1751320Z copying torch/include/ATen/SparseCsrMPSFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1752460Z copying torch/include/ATen/ArrayRef.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1753650Z copying torch/include/ATen/SequenceNumber.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1755010Z copying torch/include/ATen/FunctionalStorageImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1756190Z copying torch/include/ATen/ExpandBase.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1757400Z copying torch/include/ATen/Parallel-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1758640Z copying torch/include/ATen/MatrixRef.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1759950Z copying torch/include/ATen/CUDAFunctions_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1761560Z copying torch/include/ATen/CompositeExplicitAutogradFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1762730Z copying torch/include/ATen/FunctionalTensorWrapper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1764170Z copying torch/include/ATen/SparseCsrTensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1765510Z copying torch/include/ATen/NumericUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1766650Z copying torch/include/ATen/ATen.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1768030Z copying torch/include/ATen/TensorNames.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1769300Z copying torch/include/ATen/TensorMeta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1770550Z copying torch/include/ATen/TensorIndexing.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1771920Z copying torch/include/ATen/Layout.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1773250Z copying torch/include/ATen/SparseTensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1774550Z copying torch/include/ATen/SavedTensorHooks.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1775920Z copying torch/include/ATen/CompositeExplicitAutogradFunctions_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1777380Z copying torch/include/ATen/StorageUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1778600Z copying torch/include/ATen/WrapDimUtilsMulti.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1779900Z copying torch/include/ATen/code_template.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1781260Z copying torch/include/ATen/TensorOperators.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1782480Z copying torch/include/ATen/CUDAFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1783760Z copying torch/include/ATen/ScalarType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1785030Z copying torch/include/ATen/cpp_custom_type_hack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1786330Z copying torch/include/ATen/Dispatch_v2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1787870Z copying torch/include/ATen/Storage.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1788980Z copying torch/include/ATen/DeviceGuard.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1790270Z copying torch/include/ATen/ParallelNative.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1791630Z copying torch/include/ATen/OpMathType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1792830Z copying torch/include/ATen/PythonTorchFunctionTLS.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1793950Z copying torch/include/ATen/PadNd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1795240Z copying torch/include/ATen/SparseMPSFunctions_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1796550Z copying torch/include/ATen/Dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1798090Z copying torch/include/ATen/CPUGeneratorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1799300Z copying torch/include/ATen/ParallelFuture.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1800570Z copying torch/include/ATen/Functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1802360Z copying torch/include/ATen/SparseCsrMPSFunctions_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1803450Z copying torch/include/ATen/ParallelOpenMP.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1804610Z copying torch/include/ATen/jit_macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1805930Z copying torch/include/ATen/CPUApplyUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1807200Z copying torch/include/ATen/ThreadLocalState.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1808450Z copying torch/include/ATen/ScalarOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1809620Z copying torch/include/ATen/NativeFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1811180Z copying torch/include/ATen/DynamicLibrary.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1812550Z copying torch/include/ATen/TensorGeometry.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1813730Z copying torch/include/ATen/TensorIterator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1815150Z copying torch/include/ATen/NamedTensorUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1816410Z copying torch/include/ATen/Dimname.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1817670Z copying torch/include/ATen/ROCmFABackend.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1819040Z copying torch/include/ATen/CompositeImplicitAutogradFunctions_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1820450Z copying torch/include/ATen/autocast_mode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1822030Z copying torch/include/ATen/Parallel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1823290Z copying torch/include/ATen/DimVector.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1824520Z copying torch/include/ATen/MetaFunctions_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1825700Z copying torch/include/ATen/InferSize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1827010Z copying torch/include/ATen/LegacyVmapTransforms.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1828250Z copying torch/include/ATen/SmallVector.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1829430Z copying torch/include/ATen/Tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1830610Z copying torch/include/ATen/Generator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1831890Z copying torch/include/ATen/AccumulateType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1833110Z copying torch/include/ATen/TensorAccessor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1834370Z copying torch/include/ATen/SDPBackend.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1835540Z copying torch/include/ATen/CachedTensorUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-14T20:47:59.1836840Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1837460Z copying torch/include/ATen/core/Dict_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1838750Z copying torch/include/ATen/core/Formatting.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1840040Z copying torch/include/ATen/core/TensorBody.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1843080Z copying torch/include/ATen/core/GeneratorForPrivateuseone.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1843920Z copying torch/include/ATen/core/jit_type_base.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1845350Z copying torch/include/ATen/core/typeid.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1846720Z copying torch/include/ATen/core/rref_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1847940Z copying torch/include/ATen/core/Range.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1849660Z copying torch/include/ATen/core/interned_strings_class.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1851120Z copying torch/include/ATen/core/operator_name.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1852720Z copying torch/include/ATen/core/DeprecatedTypePropertiesRegistry.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1853920Z copying torch/include/ATen/core/symbol.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1855220Z copying torch/include/ATen/core/Backtrace.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1856730Z copying torch/include/ATen/core/TransformationHelper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1858300Z copying torch/include/ATen/core/blob.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1859630Z copying torch/include/ATen/core/function_schema.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1861070Z copying torch/include/ATen/core/type_factory.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1863380Z copying torch/include/ATen/core/MT19937RNGEngine.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1864440Z copying torch/include/ATen/core/ivalue_to.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1865790Z copying torch/include/ATen/core/aten_interned_strings.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1867510Z copying torch/include/ATen/core/dynamic_type.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1868820Z copying torch/include/ATen/core/class_type.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1870290Z copying torch/include/ATen/core/LegacyTypeDispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1871490Z copying torch/include/ATen/core/function_schema_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1872780Z copying torch/include/ATen/core/NestedIntSymNodeImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1874050Z copying torch/include/ATen/core/qualified_name.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1875420Z copying torch/include/ATen/core/UndefinedTensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1876660Z copying torch/include/ATen/core/NamedTensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1878210Z copying torch/include/ATen/core/Scalar.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1879500Z copying torch/include/ATen/core/CachingHostAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1880990Z copying torch/include/ATen/core/functional.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1882190Z copying torch/include/ATen/core/DeprecatedTypeProperties.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1883440Z copying torch/include/ATen/core/interned_strings.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1884730Z copying torch/include/ATen/core/List.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1886080Z copying torch/include/ATen/core/ATenOpList.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1887260Z copying torch/include/ATen/core/Dict.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1888540Z copying torch/include/ATen/core/type_ptr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1889820Z copying torch/include/ATen/core/grad_mode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1891260Z copying torch/include/ATen/core/DistributionsHelper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1892430Z copying torch/include/ATen/core/VariableHooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1893650Z copying torch/include/ATen/core/CheckMemoryFormat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1894980Z copying torch/include/ATen/core/ScalarType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1896320Z copying torch/include/ATen/core/Array.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1897460Z copying torch/include/ATen/core/ATen_fwd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1898720Z copying torch/include/ATen/core/stack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1899990Z copying torch/include/ATen/core/ATenGeneral.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1901360Z copying torch/include/ATen/core/custom_class.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1902580Z copying torch/include/ATen/core/IListRef.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1903990Z copying torch/include/ATen/core/UnsafeFromTH.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1905340Z copying torch/include/ATen/core/PythonOpRegistrationTrampoline.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1906890Z copying torch/include/ATen/core/TensorBase.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1908210Z copying torch/include/ATen/core/ATen_pch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1909450Z copying torch/include/ATen/core/QuantizerBase.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1910700Z copying torch/include/ATen/core/enum_type.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1912000Z copying torch/include/ATen/core/alias_info.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1913170Z copying torch/include/ATen/core/List_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1914520Z copying torch/include/ATen/core/TorchDispatchUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1915840Z copying torch/include/ATen/core/enum_tag.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1917150Z copying torch/include/ATen/core/jit_type.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1919050Z copying torch/include/ATen/core/IListRef_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1920150Z copying torch/include/ATen/core/ivalue.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1921910Z copying torch/include/ATen/core/Dimname.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1923140Z copying torch/include/ATen/core/Vitals.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1924440Z copying torch/include/ATen/core/PythonFallbackKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1925600Z copying torch/include/ATen/core/builtin_function.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1926860Z copying torch/include/ATen/core/DimVector.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1928120Z copying torch/include/ATen/core/Reduction.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1929490Z copying torch/include/ATen/core/Tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1930600Z copying torch/include/ATen/core/function.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1931870Z copying torch/include/ATen/core/Generator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1933350Z copying torch/include/ATen/core/PhiloxRNGEngine.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1934510Z copying torch/include/ATen/core/TensorAccessor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1935760Z copying torch/include/ATen/core/ivalue_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1937710Z copying torch/include/ATen/core/Variadic.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-14T20:47:59.1938960Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/op_registration 2025-08-14T20:47:59.1939680Z copying torch/include/ATen/core/op_registration/adaption.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/op_registration 2025-08-14T20:47:59.1941000Z 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-08-14T20:47:59.1942280Z 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-08-14T20:47:59.1943780Z 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-08-14T20:47:59.1945090Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch 2025-08-14T20:47:59.1945720Z copying torch/include/ATen/core/dispatch/OperatorOptions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch 2025-08-14T20:47:59.1947040Z copying torch/include/ATen/core/dispatch/RegistrationHandleRAII.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch 2025-08-14T20:47:59.1948290Z copying torch/include/ATen/core/dispatch/ObservedOperators.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch 2025-08-14T20:47:59.1949610Z copying torch/include/ATen/core/dispatch/DispatchKeyExtractor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch 2025-08-14T20:47:59.1950790Z copying torch/include/ATen/core/dispatch/Dispatcher.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch 2025-08-14T20:47:59.1952320Z copying torch/include/ATen/core/dispatch/CppSignature.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch 2025-08-14T20:47:59.1953610Z copying torch/include/ATen/core/dispatch/OperatorEntry.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch 2025-08-14T20:47:59.1954960Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing 2025-08-14T20:47:59.1955620Z copying torch/include/ATen/core/boxing/KernelFunction.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing 2025-08-14T20:47:59.1956880Z copying torch/include/ATen/core/boxing/OperatorKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing 2025-08-14T20:47:59.1958170Z copying torch/include/ATen/core/boxing/KernelFunction_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing 2025-08-14T20:47:59.1959520Z copying torch/include/ATen/core/boxing/BoxedKernel_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing 2025-08-14T20:47:59.1960810Z copying torch/include/ATen/core/boxing/BoxedKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing 2025-08-14T20:47:59.1962160Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing/impl 2025-08-14T20:47:59.1962960Z 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-08-14T20:47:59.1964400Z copying torch/include/ATen/core/boxing/impl/boxing.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing/impl 2025-08-14T20:47:59.1965550Z 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-08-14T20:47:59.1966950Z copying torch/include/ATen/core/boxing/impl/WrapFunctionIntoFunctor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing/impl 2025-08-14T20:47:59.1968220Z copying torch/include/ATen/core/boxing/impl/WrapFunctionIntoRuntimeFunctor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing/impl 2025-08-14T20:47:59.1969490Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-08-14T20:47:59.1970060Z copying torch/include/ATen/mps/MPSProfiler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-08-14T20:47:59.1971540Z copying torch/include/ATen/mps/EmptyTensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-08-14T20:47:59.1972890Z copying torch/include/ATen/mps/MPSAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-08-14T20:47:59.1974280Z copying torch/include/ATen/mps/MPSGuardImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-08-14T20:47:59.1975510Z copying torch/include/ATen/mps/MPSHooks.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-08-14T20:47:59.1976800Z copying torch/include/ATen/mps/MPSEvent.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-08-14T20:47:59.1978060Z copying torch/include/ATen/mps/MPSDevice.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-08-14T20:47:59.1979280Z copying torch/include/ATen/mps/MPSStream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-08-14T20:47:59.1980630Z copying torch/include/ATen/mps/IndexKernels.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-08-14T20:47:59.1981950Z copying torch/include/ATen/mps/MPSAllocatorInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-08-14T20:47:59.1983210Z copying torch/include/ATen/mps/MPSGeneratorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-08-14T20:47:59.1984580Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.1985210Z copying torch/include/ATen/native/CompositeRandomAccessor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.1986430Z copying torch/include/ATen/native/MathBitsFallback.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.1987940Z copying torch/include/ATen/native/TensorTransformations.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.1989370Z copying torch/include/ATen/native/ComplexHelper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.1990800Z copying torch/include/ATen/native/ConvUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.1992550Z copying torch/include/ATen/native/Normalization.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.1993940Z copying torch/include/ATen/native/ReductionType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.1995470Z copying torch/include/ATen/native/Repeat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.1996940Z copying torch/include/ATen/native/layer_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.1998530Z copying torch/include/ATen/native/GridSampler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2000070Z copying torch/include/ATen/native/TriangularOpsUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2001510Z copying torch/include/ATen/native/UnfoldBackward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2002960Z copying torch/include/ATen/native/batch_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2004680Z copying torch/include/ATen/native/Unfold3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2006010Z copying torch/include/ATen/native/Fill.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2007650Z copying torch/include/ATen/native/LinearAlgebra.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2009090Z copying torch/include/ATen/native/RangeFactories.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2010370Z copying torch/include/ATen/native/RNN.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2011650Z copying torch/include/ATen/native/IndexKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2013010Z copying torch/include/ATen/native/Pool.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2014320Z copying torch/include/ATen/native/RangeUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2015520Z copying torch/include/ATen/native/Cross.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2016780Z copying torch/include/ATen/native/im2col.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2018300Z copying torch/include/ATen/native/TransposeType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2019550Z copying torch/include/ATen/native/DispatchStub.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2020800Z copying torch/include/ATen/native/Unfold2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2022020Z copying torch/include/ATen/native/Distance.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2023470Z copying torch/include/ATen/native/FunctionOfAMatrixUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2024820Z copying torch/include/ATen/native/Distributions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2026450Z copying torch/include/ATen/native/MaxPooling.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2027630Z copying torch/include/ATen/native/Gelu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2029020Z copying torch/include/ATen/native/SparseTensorUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2030250Z copying torch/include/ATen/native/CPUFallback.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2031610Z copying torch/include/ATen/native/FusedAdagrad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2032800Z copying torch/include/ATen/native/GridSamplerUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2034070Z copying torch/include/ATen/native/TopKImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2035390Z copying torch/include/ATen/native/TensorAdvancedIndexingUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2036750Z copying torch/include/ATen/native/DilatedConvolutionUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2038010Z copying torch/include/ATen/native/ForeachUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2039370Z copying torch/include/ATen/native/SobolEngineOpsUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2040670Z copying torch/include/ATen/native/ReduceAllOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2041970Z copying torch/include/ATen/native/Lerp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2043340Z copying torch/include/ATen/native/ReduceOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2044750Z copying torch/include/ATen/native/TensorAdvancedIndexing.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2045910Z copying torch/include/ATen/native/UnaryOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2047230Z copying torch/include/ATen/native/SortingUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2048600Z copying torch/include/ATen/native/MathBitFallThroughLists.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2049960Z copying torch/include/ATen/native/StridedRandomAccessor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2051280Z copying torch/include/ATen/native/TensorShape.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2052690Z copying torch/include/ATen/native/IndexingUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2054110Z copying torch/include/ATen/native/UpSample.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2055620Z copying torch/include/ATen/native/ResizeCommon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2056860Z copying torch/include/ATen/native/SharedReduceOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2058080Z copying torch/include/ATen/native/Resize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2059350Z copying torch/include/ATen/native/SpectralOpsUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2060610Z copying torch/include/ATen/native/Sorting.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2061830Z copying torch/include/ATen/native/NonSymbolicBC.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2063100Z copying torch/include/ATen/native/TensorProperties.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2064380Z copying torch/include/ATen/native/BucketizationUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2065700Z copying torch/include/ATen/native/vol2col.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2066920Z copying torch/include/ATen/native/LossMulti.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2068100Z copying torch/include/ATen/native/NonEmptyUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2069360Z copying torch/include/ATen/native/TensorDimApply.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2070620Z copying torch/include/ATen/native/verbose_wrapper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2071880Z copying torch/include/ATen/native/AdaptivePooling.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2073240Z copying torch/include/ATen/native/ConvolutionMM3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2074380Z copying torch/include/ATen/native/group_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2075690Z copying torch/include/ATen/native/Histogram.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2076920Z copying torch/include/ATen/native/Activation.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2078090Z copying torch/include/ATen/native/Math.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2080380Z copying torch/include/ATen/native/FusedAdam.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2081370Z copying torch/include/ATen/native/ScatterGatherChecks.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2082580Z copying torch/include/ATen/native/CPUBlas.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2083900Z copying torch/include/ATen/native/CompositeRandomAccessorCommon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2085120Z copying torch/include/ATen/native/BatchLinearAlgebra.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2086460Z copying torch/include/ATen/native/AmpKernels.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2087700Z copying torch/include/ATen/native/DistributionTemplates.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2089120Z copying torch/include/ATen/native/TensorIterator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2090460Z copying torch/include/ATen/native/TensorConversions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2091760Z copying torch/include/ATen/native/FractionalMaxPooling.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2092930Z copying torch/include/ATen/native/ReduceOpsUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2094310Z copying torch/include/ATen/native/TensorFactories.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2095660Z copying torch/include/ATen/native/PointwiseOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2096930Z copying torch/include/ATen/native/BinaryOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2098130Z copying torch/include/ATen/native/Pow.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2099390Z copying torch/include/ATen/native/EmbeddingBag.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2100640Z copying torch/include/ATen/native/im2col_shape_check.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2101930Z copying torch/include/ATen/native/SegmentReduce.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2103080Z copying torch/include/ATen/native/FusedSGD.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2104340Z copying torch/include/ATen/native/Padding.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2105780Z copying torch/include/ATen/native/TensorCompare.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2107290Z copying torch/include/ATen/native/PixelShuffle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2108590Z copying torch/include/ATen/native/LinearAlgebraUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2110030Z copying torch/include/ATen/native/TypeProperties.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2111190Z copying torch/include/ATen/native/Copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2112540Z copying torch/include/ATen/native/CanUse32BitIndexMath.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2113910Z copying torch/include/ATen/native/TensorIteratorDynamicCasting.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-14T20:47:59.2115250Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/ao_sparse 2025-08-14T20:47:59.2115770Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/ao_sparse/quantized 2025-08-14T20:47:59.2116280Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/ao_sparse/quantized/cpu 2025-08-14T20:47:59.2117010Z 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-08-14T20:47:59.2118360Z 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-08-14T20:47:59.2119680Z 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-08-14T20:47:59.2120830Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps 2025-08-14T20:47:59.2121510Z copying torch/include/ATen/native/mps/MetalShaderLibrary.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps 2025-08-14T20:47:59.2122710Z copying torch/include/ATen/native/mps/TensorFactory.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps 2025-08-14T20:47:59.2124020Z copying torch/include/ATen/native/mps/MPSGraphSonomaOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps 2025-08-14T20:47:59.2125280Z copying torch/include/ATen/native/mps/MPSGraphVenturaOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps 2025-08-14T20:47:59.2126630Z copying torch/include/ATen/native/mps/MPSGraphSequoiaOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps 2025-08-14T20:47:59.2127770Z copying torch/include/ATen/native/mps/OperationUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps 2025-08-14T20:47:59.2129210Z copying torch/include/ATen/native/mps/Copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps 2025-08-14T20:47:59.2130490Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/kernels 2025-08-14T20:47:59.2131110Z copying torch/include/ATen/native/mps/kernels/UpSample.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/kernels 2025-08-14T20:47:59.2132500Z copying torch/include/ATen/native/mps/kernels/Pooling.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/kernels 2025-08-14T20:47:59.2133870Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/operations 2025-08-14T20:47:59.2134440Z copying torch/include/ATen/native/mps/operations/FusedAdamKernelImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/operations 2025-08-14T20:47:59.2135880Z copying torch/include/ATen/native/mps/operations/FusedAdamWAmsgradKernelImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/operations 2025-08-14T20:47:59.2137290Z copying torch/include/ATen/native/mps/operations/BinaryKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/operations 2025-08-14T20:47:59.2138530Z copying torch/include/ATen/native/mps/operations/FusedAdamWKernelImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/operations 2025-08-14T20:47:59.2139990Z copying torch/include/ATen/native/mps/operations/FusedAdamAmsgradKernelImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/operations 2025-08-14T20:47:59.2141180Z copying torch/include/ATen/native/mps/operations/MultiTensorApply.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/operations 2025-08-14T20:47:59.2142410Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal 2025-08-14T20:47:59.2143080Z copying torch/include/ATen/native/metal/MetalConvParams.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal 2025-08-14T20:47:59.2144370Z copying torch/include/ATen/native/metal/MetalTensorImplStorage.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal 2025-08-14T20:47:59.2145630Z copying torch/include/ATen/native/metal/MetalTensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal 2025-08-14T20:47:59.2146920Z copying torch/include/ATen/native/metal/MetalContext.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal 2025-08-14T20:47:59.2148210Z copying torch/include/ATen/native/metal/MetalTensorUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal 2025-08-14T20:47:59.2149490Z copying torch/include/ATen/native/metal/MetalNeuronType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal 2025-08-14T20:47:59.2150750Z copying torch/include/ATen/native/metal/MetalShaders.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal 2025-08-14T20:47:59.2152340Z copying torch/include/ATen/native/metal/MetalPrepackOpContext.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal 2025-08-14T20:47:59.2153600Z copying torch/include/ATen/native/metal/MetalCommandBuffer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal 2025-08-14T20:47:59.2154850Z copying torch/include/ATen/native/metal/MetalDevice.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal 2025-08-14T20:47:59.2156280Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn 2025-08-14T20:47:59.2156950Z copying torch/include/ATen/native/metal/mpscnn/MPSCNNFullyConnectedOp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn 2025-08-14T20:47:59.2158370Z 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-08-14T20:47:59.2159580Z copying torch/include/ATen/native/metal/mpscnn/MPSCNNClampOp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn 2025-08-14T20:47:59.2160830Z copying torch/include/ATen/native/metal/mpscnn/MPSCNNOp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn 2025-08-14T20:47:59.2162060Z copying torch/include/ATen/native/metal/mpscnn/MPSCNNNeuronOp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn 2025-08-14T20:47:59.2174620Z copying torch/include/ATen/native/metal/mpscnn/MPSCNNConvOp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn 2025-08-14T20:47:59.2174980Z copying torch/include/ATen/native/metal/mpscnn/MPSCNNUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn 2025-08-14T20:47:59.2175330Z copying torch/include/ATen/native/metal/mpscnn/MPSImageUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn 2025-08-14T20:47:59.2175680Z copying torch/include/ATen/native/metal/mpscnn/MPSImageWrapper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn 2025-08-14T20:47:59.2175880Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn/tests 2025-08-14T20:47:59.2176290Z 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-08-14T20:47:59.2176740Z 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-08-14T20:47:59.2176920Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/ops 2025-08-14T20:47:59.2177240Z copying torch/include/ATen/native/metal/ops/MetalCopy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/ops 2025-08-14T20:47:59.2177580Z copying torch/include/ATen/native/metal/ops/MetalConvolution.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/ops 2025-08-14T20:47:59.2177740Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-14T20:47:59.2178030Z copying torch/include/ATen/native/cpu/IsContiguous.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-14T20:47:59.2178300Z copying torch/include/ATen/native/cpu/zmath.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-14T20:47:59.2178670Z copying torch/include/ATen/native/cpu/ReduceUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-14T20:47:59.2178970Z copying torch/include/ATen/native/cpu/mixed_data_type.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-14T20:47:59.2180190Z copying torch/include/ATen/native/cpu/ReducedPrecisionFloatGemvFastPathKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-14T20:47:59.2181380Z copying torch/include/ATen/native/cpu/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-14T20:47:59.2182670Z copying torch/include/ATen/native/cpu/int_mm_kernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-14T20:47:59.2183960Z copying torch/include/ATen/native/cpu/SampledAddmmKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-14T20:47:59.2185280Z copying torch/include/ATen/native/cpu/Gelu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-14T20:47:59.2186520Z copying torch/include/ATen/native/cpu/moments_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-14T20:47:59.2187800Z copying torch/include/ATen/native/cpu/ChannelShuffleKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-14T20:47:59.2189120Z copying torch/include/ATen/native/cpu/SpmmReduceKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-14T20:47:59.2190340Z copying torch/include/ATen/native/cpu/GridSamplerKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-14T20:47:59.2191580Z copying torch/include/ATen/native/cpu/SerialStackImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-14T20:47:59.2192760Z copying torch/include/ATen/native/cpu/Intrinsics.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-14T20:47:59.2194090Z copying torch/include/ATen/native/cpu/LogAddExp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-14T20:47:59.2195290Z copying torch/include/ATen/native/cpu/WeightNormKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-14T20:47:59.2200970Z copying torch/include/ATen/native/cpu/MaxUnpoolKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-14T20:47:59.2201410Z copying torch/include/ATen/native/cpu/SoftmaxKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-14T20:47:59.2201720Z copying torch/include/ATen/native/cpu/AtomicAddFloat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-14T20:47:59.2201970Z copying torch/include/ATen/native/cpu/Elu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-14T20:47:59.2202230Z copying torch/include/ATen/native/cpu/Reduce.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-14T20:47:59.2203040Z copying torch/include/ATen/native/cpu/CatKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-14T20:47:59.2204350Z copying torch/include/ATen/native/cpu/StackKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-14T20:47:59.2205600Z copying torch/include/ATen/native/cpu/LogSoftmaxKernelImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-14T20:47:59.2206900Z copying torch/include/ATen/native/cpu/DepthwiseConvKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-14T20:47:59.2208160Z copying torch/include/ATen/native/cpu/DistributionTemplates.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-14T20:47:59.2209580Z copying torch/include/ATen/native/cpu/PixelShuffleKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-14T20:47:59.2210890Z copying torch/include/ATen/native/cpu/UpSampleKernelAVXAntialias.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-14T20:47:59.2212530Z copying torch/include/ATen/native/cpu/IndexKernelUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-14T20:47:59.2213690Z copying torch/include/ATen/native/cpu/avx_mathfun.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-14T20:47:59.2215160Z copying torch/include/ATen/native/cpu/CopyKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-14T20:47:59.2216430Z copying torch/include/ATen/native/cpu/Loops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-14T20:47:59.2217760Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-14T20:47:59.2218420Z copying torch/include/ATen/native/cuda/CompositeRandomAccessor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-14T20:47:59.2219700Z copying torch/include/ATen/native/cuda/MiscUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-14T20:47:59.2220990Z copying torch/include/ATen/native/cuda/GridSampler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-14T20:47:59.2222480Z copying torch/include/ATen/native/cuda/CuFFTPlanCache.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-14T20:47:59.2223920Z copying torch/include/ATen/native/cuda/RowwiseScaledMM.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-14T20:47:59.2225210Z copying torch/include/ATen/native/cuda/ScanKernels.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-14T20:47:59.2226550Z copying torch/include/ATen/native/cuda/IndexKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-14T20:47:59.2227840Z copying torch/include/ATen/native/cuda/ScaledGroupMM.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-14T20:47:59.2229090Z copying torch/include/ATen/native/cuda/Distributions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-14T20:47:59.2230360Z copying torch/include/ATen/native/cuda/BinaryInternal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-14T20:47:59.2231580Z copying torch/include/ATen/native/cuda/GroupMM.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-14T20:47:59.2232840Z copying torch/include/ATen/native/cuda/CuFFTUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-14T20:47:59.2234120Z copying torch/include/ATen/native/cuda/ReduceOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-14T20:47:59.2235490Z copying torch/include/ATen/native/cuda/TensorTopK.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-14T20:47:59.2236950Z copying torch/include/ATen/native/cuda/TensorModeKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-14T20:47:59.2238190Z copying torch/include/ATen/native/cuda/thread_constants.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-14T20:47:59.2239530Z copying torch/include/ATen/native/cuda/Resize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-14T20:47:59.2240780Z copying torch/include/ATen/native/cuda/Sorting.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-14T20:47:59.2242090Z copying torch/include/ATen/native/cuda/Activation.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-14T20:47:59.2243510Z copying torch/include/ATen/native/cuda/Sort.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-14T20:47:59.2244850Z copying torch/include/ATen/native/cuda/DistributionTemplates.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-14T20:47:59.2246370Z copying torch/include/ATen/native/cuda/IndexKernelUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-14T20:47:59.2247620Z copying torch/include/ATen/native/cuda/jit_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-14T20:47:59.2249000Z copying torch/include/ATen/native/cuda/SortStable.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-14T20:47:59.2250280Z copying torch/include/ATen/native/cuda/LaunchUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-14T20:47:59.2251550Z copying torch/include/ATen/native/cuda/Copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-14T20:47:59.2252960Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized 2025-08-14T20:47:59.2253630Z copying torch/include/ATen/native/quantized/ConvUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized 2025-08-14T20:47:59.2255070Z copying torch/include/ATen/native/quantized/AffineQuantizer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized 2025-08-14T20:47:59.2256310Z copying torch/include/ATen/native/quantized/IndexKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized 2025-08-14T20:47:59.2257630Z copying torch/include/ATen/native/quantized/library.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized 2025-08-14T20:47:59.2258960Z copying torch/include/ATen/native/quantized/AffineQuantizerBase.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized 2025-08-14T20:47:59.2260250Z copying torch/include/ATen/native/quantized/FakeQuantAffine.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized 2025-08-14T20:47:59.2261550Z copying torch/include/ATen/native/quantized/PackedParams.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized 2025-08-14T20:47:59.2262750Z copying torch/include/ATen/native/quantized/Copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized 2025-08-14T20:47:59.2264090Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-08-14T20:47:59.2264750Z copying torch/include/ATen/native/quantized/cpu/XnnpackUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-08-14T20:47:59.2266040Z 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-08-14T20:47:59.2267340Z 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-08-14T20:47:59.2268540Z copying torch/include/ATen/native/quantized/cpu/ACLUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-08-14T20:47:59.2269930Z 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-08-14T20:47:59.2271180Z copying torch/include/ATen/native/quantized/cpu/qlinear.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-08-14T20:47:59.2272480Z copying torch/include/ATen/native/quantized/cpu/EmbeddingPackedParams.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-08-14T20:47:59.2273780Z copying torch/include/ATen/native/quantized/cpu/qembeddingbag.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-08-14T20:47:59.2275080Z copying torch/include/ATen/native/quantized/cpu/QnnpackUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-08-14T20:47:59.2276650Z 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-08-14T20:47:59.2277810Z copying torch/include/ATen/native/quantized/cpu/OnednnUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-08-14T20:47:59.2279130Z copying torch/include/ATen/native/quantized/cpu/QuantUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-08-14T20:47:59.2280320Z copying torch/include/ATen/native/quantized/cpu/RuyUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-08-14T20:47:59.2281720Z copying torch/include/ATen/native/quantized/cpu/qconv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-08-14T20:47:59.2283000Z copying torch/include/ATen/native/quantized/cpu/BinaryOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-08-14T20:47:59.2284300Z copying torch/include/ATen/native/quantized/cpu/QuantizedOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-08-14T20:47:59.2285540Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cudnn 2025-08-14T20:47:59.2286190Z copying torch/include/ATen/native/quantized/cudnn/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cudnn 2025-08-14T20:47:59.2287490Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/utils 2025-08-14T20:47:59.2288190Z copying torch/include/ATen/native/utils/ParamUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/utils 2025-08-14T20:47:59.2289540Z copying torch/include/ATen/native/utils/ParamsHash.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/utils 2025-08-14T20:47:59.2290680Z copying torch/include/ATen/native/utils/Factory.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/utils 2025-08-14T20:47:59.2292060Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers 2025-08-14T20:47:59.2292690Z copying torch/include/ATen/native/transformers/sdp_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers 2025-08-14T20:47:59.2293930Z copying torch/include/ATen/native/transformers/attention.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers 2025-08-14T20:47:59.2295230Z copying torch/include/ATen/native/transformers/sdp_utils_cpp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers 2025-08-14T20:47:59.2296630Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda 2025-08-14T20:47:59.2297270Z 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-08-14T20:47:59.2298570Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention 2025-08-14T20:47:59.2299360Z 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-08-14T20:47:59.2300670Z 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-08-14T20:47:59.2301970Z 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-08-14T20:47:59.2303630Z 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-08-14T20:47:59.2304970Z 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-08-14T20:47:59.2306770Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernels 2025-08-14T20:47:59.2307490Z 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-08-14T20:47:59.2309270Z 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-08-14T20:47:59.2310780Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm 2025-08-14T20:47:59.2311450Z 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-08-14T20:47:59.2312780Z 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-08-14T20:47:59.2314070Z 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-08-14T20:47:59.2315470Z 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-08-14T20:47:59.2317160Z 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-08-14T20:47:59.2318460Z 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-08-14T20:47:59.2319710Z 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-08-14T20:47:59.2320930Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue 2025-08-14T20:47:59.2321790Z 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-08-14T20:47:59.2323170Z 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-08-14T20:47:59.2324520Z 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-08-14T20:47:59.2325840Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/transform 2025-08-14T20:47:59.2326570Z 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-08-14T20:47:59.2327840Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators 2025-08-14T20:47:59.2328570Z 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-08-14T20:47:59.2329980Z 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-08-14T20:47:59.2331650Z 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-08-14T20:47:59.2333060Z 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-08-14T20:47:59.2334430Z 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-08-14T20:47:59.2335760Z 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-08-14T20:47:59.2337090Z 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-08-14T20:47:59.2338550Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/flash_attn 2025-08-14T20:47:59.2339220Z 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-08-14T20:47:59.2340600Z 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-08-14T20:47:59.2341800Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/hip 2025-08-14T20:47:59.2342460Z 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-08-14T20:47:59.2343810Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/hip/flash_attn 2025-08-14T20:47:59.2344440Z 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-08-14T20:47:59.2345880Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/hip/flash_attn/ck 2025-08-14T20:47:59.2346600Z 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-08-14T20:47:59.2347710Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/hip 2025-08-14T20:47:59.2348270Z copying torch/include/ATen/native/hip/ck_types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/hip 2025-08-14T20:47:59.2349600Z copying torch/include/ATen/native/hip/ck_bgemm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/hip 2025-08-14T20:47:59.2350820Z copying torch/include/ATen/native/hip/ck_gemm_template.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/hip 2025-08-14T20:47:59.2352080Z copying torch/include/ATen/native/hip/ck_gemm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/hip 2025-08-14T20:47:59.2353370Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/hip/bgemm_kernels 2025-08-14T20:47:59.2354040Z 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-08-14T20:47:59.2355390Z 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-08-14T20:47:59.2356630Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mtia 2025-08-14T20:47:59.2357210Z copying torch/include/ATen/native/mtia/EmptyTensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mtia 2025-08-14T20:47:59.2358470Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/kleidiai 2025-08-14T20:47:59.2359080Z copying torch/include/ATen/native/kleidiai/kai_pack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/kleidiai 2025-08-14T20:47:59.2360450Z copying torch/include/ATen/native/kleidiai/kai_ukernel_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/kleidiai 2025-08-14T20:47:59.2361760Z copying torch/include/ATen/native/kleidiai/kai_kernels.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/kleidiai 2025-08-14T20:47:59.2363050Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/nested 2025-08-14T20:47:59.2363670Z copying torch/include/ATen/native/nested/NestedTensorUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/nested 2025-08-14T20:47:59.2365020Z copying torch/include/ATen/native/nested/NestedTensorTransformerUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/nested 2025-08-14T20:47:59.2366270Z copying torch/include/ATen/native/nested/NestedTensorMath.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/nested 2025-08-14T20:47:59.2367600Z copying torch/include/ATen/native/nested/NestedTensorBinaryOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/nested 2025-08-14T20:47:59.2368900Z copying torch/include/ATen/native/nested/NestedTensorTransformerFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/nested 2025-08-14T20:47:59.2370120Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn 2025-08-14T20:47:59.2370640Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu 2025-08-14T20:47:59.2371320Z copying torch/include/ATen/native/mkldnn/xpu/FusionUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu 2025-08-14T20:47:59.2372530Z copying torch/include/ATen/native/mkldnn/xpu/Conv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu 2025-08-14T20:47:59.2373870Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu/detail 2025-08-14T20:47:59.2374470Z 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-08-14T20:47:59.2375850Z 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-08-14T20:47:59.2377220Z 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-08-14T20:47:59.2378570Z 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-08-14T20:47:59.2379980Z 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-08-14T20:47:59.2381420Z 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-08-14T20:47:59.2382890Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/metal 2025-08-14T20:47:59.2383600Z copying torch/include/ATen/metal/Context.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/metal 2025-08-14T20:47:59.2385070Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu 2025-08-14T20:47:59.2385680Z copying torch/include/ATen/cpu/Utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu 2025-08-14T20:47:59.2387190Z copying torch/include/ATen/cpu/FlushDenormal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu 2025-08-14T20:47:59.2388650Z copying torch/include/ATen/cpu/vml.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu 2025-08-14T20:47:59.2390520Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-08-14T20:47:59.2390890Z copying torch/include/ATen/cpu/vec/vec_quant.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-08-14T20:47:59.2392300Z copying torch/include/ATen/cpu/vec/vec_half.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-08-14T20:47:59.2393720Z copying torch/include/ATen/cpu/vec/vec_mask.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-08-14T20:47:59.2395260Z copying torch/include/ATen/cpu/vec/vec.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-08-14T20:47:59.2396860Z copying torch/include/ATen/cpu/vec/vec_convert.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-08-14T20:47:59.2398540Z copying torch/include/ATen/cpu/vec/intrinsics.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-08-14T20:47:59.2399950Z copying torch/include/ATen/cpu/vec/functional_bfloat16.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-08-14T20:47:59.2402100Z copying torch/include/ATen/cpu/vec/functional.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-08-14T20:47:59.2402990Z copying torch/include/ATen/cpu/vec/vec_n.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-08-14T20:47:59.2404340Z copying torch/include/ATen/cpu/vec/functional_base.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-08-14T20:47:59.2405510Z copying torch/include/ATen/cpu/vec/vec_base.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-08-14T20:47:59.2407530Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec128 2025-08-14T20:47:59.2407860Z 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-08-14T20:47:59.2409150Z 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-08-14T20:47:59.2410360Z copying torch/include/ATen/cpu/vec/vec128/vec128.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec128 2025-08-14T20:47:59.2411670Z 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-08-14T20:47:59.2413130Z 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-08-14T20:47:59.2414590Z 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-08-14T20:47:59.2415990Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256 2025-08-14T20:47:59.2416600Z 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-08-14T20:47:59.2417870Z 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-08-14T20:47:59.2419070Z 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-08-14T20:47:59.2420360Z 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-08-14T20:47:59.2421610Z 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-08-14T20:47:59.2423160Z 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-08-14T20:47:59.2424540Z 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-08-14T20:47:59.2425840Z 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-08-14T20:47:59.2427260Z 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-08-14T20:47:59.2428470Z copying torch/include/ATen/cpu/vec/vec256/vec256.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256 2025-08-14T20:47:59.2429730Z 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-08-14T20:47:59.2431150Z 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-08-14T20:47:59.2432410Z 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-08-14T20:47:59.2434500Z 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-08-14T20:47:59.2435470Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/zarch 2025-08-14T20:47:59.2436040Z 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-08-14T20:47:59.2438130Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx 2025-08-14T20:47:59.2438550Z 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-08-14T20:47:59.2439780Z 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-08-14T20:47:59.2441050Z 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-08-14T20:47:59.2442320Z 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-08-14T20:47:59.2443600Z 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-08-14T20:47:59.2445080Z 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-08-14T20:47:59.2446960Z 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-08-14T20:47:59.2447980Z 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-08-14T20:47:59.2449300Z 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-08-14T20:47:59.2450840Z 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-08-14T20:47:59.2452100Z 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-08-14T20:47:59.2453530Z 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-08-14T20:47:59.2454940Z 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-08-14T20:47:59.2456250Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512 2025-08-14T20:47:59.2456870Z 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-08-14T20:47:59.2458660Z 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-08-14T20:47:59.2459850Z 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-08-14T20:47:59.2461610Z 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-08-14T20:47:59.2462880Z 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-08-14T20:47:59.2464320Z 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-08-14T20:47:59.2465540Z 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-08-14T20:47:59.2467230Z 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-08-14T20:47:59.2468410Z 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-08-14T20:47:59.2469980Z 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-08-14T20:47:59.2471430Z copying torch/include/ATen/cpu/vec/vec512/vec512.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512 2025-08-14T20:47:59.2472680Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/sve 2025-08-14T20:47:59.2473340Z 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-08-14T20:47:59.2474790Z 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-08-14T20:47:59.2476220Z 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-08-14T20:47:59.2477510Z 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-08-14T20:47:59.2479030Z 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-08-14T20:47:59.2480340Z 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-08-14T20:47:59.2481440Z 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-08-14T20:47:59.2482820Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-14T20:47:59.2483450Z copying torch/include/ATen/cuda/CUDADevice.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-14T20:47:59.2484760Z copying torch/include/ATen/cuda/CUDAUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-14T20:47:59.2486080Z copying torch/include/ATen/cuda/CUDABlas.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-14T20:47:59.2487350Z copying torch/include/ATen/cuda/CUDAGeneratorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-14T20:47:59.2488710Z copying torch/include/ATen/cuda/Sleep.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-14T20:47:59.2490100Z copying torch/include/ATen/cuda/PinnedMemoryAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-14T20:47:59.2491310Z copying torch/include/ATen/cuda/jiterator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-14T20:47:59.2492720Z copying torch/include/ATen/cuda/CUDASparseDescriptors.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-14T20:47:59.2493920Z copying torch/include/ATen/cuda/EmptyTensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-14T20:47:59.2495210Z copying torch/include/ATen/cuda/PeerToPeerAccess.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-14T20:47:59.2496430Z copying torch/include/ATen/cuda/CUDAEvent.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-14T20:47:59.2497730Z copying torch/include/ATen/cuda/CUDAContext.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-14T20:47:59.2498950Z copying torch/include/ATen/cuda/Exceptions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-14T20:47:59.2500340Z copying torch/include/ATen/cuda/CachingHostAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-14T20:47:59.2501520Z copying torch/include/ATen/cuda/CUDADataType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-14T20:47:59.2502890Z copying torch/include/ATen/cuda/cub.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-14T20:47:59.2504210Z copying torch/include/ATen/cuda/CUDAContextLight.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-14T20:47:59.2505490Z copying torch/include/ATen/cuda/CUDAGraph.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-14T20:47:59.2506750Z copying torch/include/ATen/cuda/ThrustAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-14T20:47:59.2508080Z copying torch/include/ATen/cuda/llvm_jit_strings.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-14T20:47:59.2509250Z copying torch/include/ATen/cuda/CUDASparse.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-14T20:47:59.2510510Z copying torch/include/ATen/cuda/PhiloxCudaState.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-14T20:47:59.2511770Z copying torch/include/ATen/cuda/jiterator_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-14T20:47:59.2513010Z copying torch/include/ATen/cuda/ATenCUDAGeneral.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-14T20:47:59.2514330Z copying torch/include/ATen/cuda/CUDASparseBlas.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-14T20:47:59.2515560Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-08-14T20:47:59.2516220Z copying torch/include/ATen/cuda/detail/CUDAHooks.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-08-14T20:47:59.2517480Z copying torch/include/ATen/cuda/detail/KernelUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-08-14T20:47:59.2518980Z copying torch/include/ATen/cuda/detail/LazyNVRTC.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-08-14T20:47:59.2520290Z copying torch/include/ATen/cuda/detail/DeviceThreadHandles.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-08-14T20:47:59.2522320Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable 2025-08-14T20:47:59.2522610Z copying torch/include/ATen/cuda/tunable/TunableOp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable 2025-08-14T20:47:59.2523980Z copying torch/include/ATen/cuda/tunable/StreamTimer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable 2025-08-14T20:47:59.2525250Z copying torch/include/ATen/cuda/tunable/TunableGemm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable 2025-08-14T20:47:59.2526540Z copying torch/include/ATen/cuda/tunable/GemmCommon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable 2025-08-14T20:47:59.2527910Z copying torch/include/ATen/cuda/tunable/GemmHipblaslt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable 2025-08-14T20:47:59.2529410Z copying torch/include/ATen/cuda/tunable/GemmRocblas.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable 2025-08-14T20:47:59.2530770Z copying torch/include/ATen/cuda/tunable/Tunable.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable 2025-08-14T20:47:59.2532510Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/quantized 2025-08-14T20:47:59.2533070Z copying torch/include/ATen/quantized/QTensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/quantized 2025-08-14T20:47:59.2534600Z copying torch/include/ATen/quantized/Quantizer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/quantized 2025-08-14T20:47:59.2536070Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu 2025-08-14T20:47:59.2536650Z copying torch/include/ATen/xpu/XPUEvent.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu 2025-08-14T20:47:59.2538160Z copying torch/include/ATen/xpu/XPUDevice.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu 2025-08-14T20:47:59.2539610Z copying torch/include/ATen/xpu/PinnedMemoryAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu 2025-08-14T20:47:59.2541060Z copying torch/include/ATen/xpu/CachingHostAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu 2025-08-14T20:47:59.2542520Z copying torch/include/ATen/xpu/XPUGeneratorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu 2025-08-14T20:47:59.2543860Z copying torch/include/ATen/xpu/XPUContext.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu 2025-08-14T20:47:59.2545270Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu/detail 2025-08-14T20:47:59.2545910Z copying torch/include/ATen/xpu/detail/XPUHooks.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu/detail 2025-08-14T20:47:59.2547330Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/miopen 2025-08-14T20:47:59.2547970Z copying torch/include/ATen/miopen/Utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/miopen 2025-08-14T20:47:59.2549480Z copying torch/include/ATen/miopen/Types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/miopen 2025-08-14T20:47:59.2550800Z copying torch/include/ATen/miopen/Descriptors.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/miopen 2025-08-14T20:47:59.2552260Z copying torch/include/ATen/miopen/miopen-wrapper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/miopen 2025-08-14T20:47:59.2553420Z copying torch/include/ATen/miopen/Exceptions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/miopen 2025-08-14T20:47:59.2554720Z copying torch/include/ATen/miopen/Handle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/miopen 2025-08-14T20:47:59.2555980Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-08-14T20:47:59.2556600Z copying torch/include/ATen/detail/PrivateUse1HooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-08-14T20:47:59.2557980Z copying torch/include/ATen/detail/AcceleratorHooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-08-14T20:47:59.2559390Z copying torch/include/ATen/detail/CUDAHooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-08-14T20:47:59.2560640Z copying torch/include/ATen/detail/MAIAHooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-08-14T20:47:59.2561940Z copying torch/include/ATen/detail/XPUHooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-08-14T20:47:59.2563130Z copying torch/include/ATen/detail/FunctionTraits.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-08-14T20:47:59.2564410Z copying torch/include/ATen/detail/HIPHooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-08-14T20:47:59.2565710Z copying torch/include/ATen/detail/MPSHooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-08-14T20:47:59.2567030Z copying torch/include/ATen/detail/MTIAHooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-08-14T20:47:59.2568250Z copying torch/include/ATen/detail/HPUHooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-08-14T20:47:59.2569490Z copying torch/include/ATen/detail/IPUHooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-08-14T20:47:59.2570780Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/hip 2025-08-14T20:47:59.2571280Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/hip/impl 2025-08-14T20:47:59.2571970Z copying torch/include/ATen/hip/impl/HIPAllocatorMasqueradingAsCUDA.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/hip/impl 2025-08-14T20:47:59.2573310Z copying torch/include/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/hip/impl 2025-08-14T20:47:59.2574590Z copying torch/include/ATen/hip/impl/HIPCachingAllocatorMasqueradingAsCUDA.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/hip/impl 2025-08-14T20:47:59.2575830Z copying torch/include/ATen/hip/impl/HIPStreamMasqueradingAsCUDA.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/hip/impl 2025-08-14T20:47:59.2577560Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2577830Z copying torch/include/ATen/ops/is_vulkan_available.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2578860Z copying torch/include/ATen/ops/_foreach_atan.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2580330Z 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-08-14T20:47:59.2581550Z copying torch/include/ATen/ops/sigmoid_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2582860Z copying torch/include/ATen/ops/triplet_margin_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2584100Z copying torch/include/ATen/ops/mode_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2585390Z copying torch/include/ATen/ops/index_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2586560Z copying torch/include/ATen/ops/new_ones.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2587760Z copying torch/include/ATen/ops/pixel_shuffle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2589140Z copying torch/include/ATen/ops/clamp_min_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2590570Z copying torch/include/ATen/ops/softmax_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2591750Z copying torch/include/ATen/ops/acosh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2593000Z copying torch/include/ATen/ops/frexp_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2594310Z copying torch/include/ATen/ops/erf_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2595580Z copying torch/include/ATen/ops/repeat_interleave_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2596940Z copying torch/include/ATen/ops/special_i0e_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2598160Z copying torch/include/ATen/ops/pixel_unshuffle_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2599610Z copying torch/include/ATen/ops/upsample_trilinear3d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2600850Z copying torch/include/ATen/ops/cummin.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2602190Z copying torch/include/ATen/ops/choose_qparams_optimized_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2603410Z copying torch/include/ATen/ops/nonzero_static_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2604810Z copying torch/include/ATen/ops/where_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2606090Z copying torch/include/ATen/ops/slice_scatter_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2607430Z 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-08-14T20:47:59.2608670Z copying torch/include/ATen/ops/isfinite_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2610060Z copying torch/include/ATen/ops/slogdet_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2611270Z copying torch/include/ATen/ops/leaky_relu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2612540Z 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-08-14T20:47:59.2613730Z copying torch/include/ATen/ops/erfinv_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2615170Z copying torch/include/ATen/ops/linalg_vecdot_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2616610Z copying torch/include/ATen/ops/_test_functorch_fallback_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2617800Z 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-08-14T20:47:59.2619080Z copying torch/include/ATen/ops/bitwise_and_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2620420Z copying torch/include/ATen/ops/empty_strided_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2621660Z 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-08-14T20:47:59.2622970Z copying torch/include/ATen/ops/bitwise_right_shift_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2624140Z copying torch/include/ATen/ops/result_type.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2625530Z 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-08-14T20:47:59.2626910Z copying torch/include/ATen/ops/min_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2628260Z copying torch/include/ATen/ops/cumulative_trapezoid.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2629480Z copying torch/include/ATen/ops/nll_loss2d_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2630780Z copying torch/include/ATen/ops/soft_margin_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2631960Z copying torch/include/ATen/ops/hardswish_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2633350Z copying torch/include/ATen/ops/narrow_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2634440Z copying torch/include/ATen/ops/pow_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2635740Z copying torch/include/ATen/ops/atan_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2637030Z copying torch/include/ATen/ops/binomial_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2638280Z copying torch/include/ATen/ops/to_padded_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2639570Z copying torch/include/ATen/ops/cosine_embedding_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2640910Z copying torch/include/ATen/ops/_test_ambiguous_defaults_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2642130Z copying torch/include/ATen/ops/gelu_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2643550Z 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-08-14T20:47:59.2644740Z copying torch/include/ATen/ops/max_pool3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2646110Z copying torch/include/ATen/ops/threshold_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2647490Z copying torch/include/ATen/ops/signbit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2648710Z copying torch/include/ATen/ops/_propagate_xla_data.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2649980Z 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-08-14T20:47:59.2651360Z copying torch/include/ATen/ops/miopen_convolution_transpose_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2652510Z copying torch/include/ATen/ops/multilabel_margin_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2653870Z 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-08-14T20:47:59.2655440Z copying torch/include/ATen/ops/cumprod_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2656170Z copying torch/include/ATen/ops/_remove_batch_dim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2657480Z copying torch/include/ATen/ops/constant_pad_nd_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2658870Z copying torch/include/ATen/ops/softplus_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2660080Z 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-08-14T20:47:59.2661390Z copying torch/include/ATen/ops/_lstm_mps_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2662610Z copying torch/include/ATen/ops/_values_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2663890Z 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-08-14T20:47:59.2665140Z copying torch/include/ATen/ops/nan_to_num_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2666390Z copying torch/include/ATen/ops/_histogramdd_bin_edges_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2667600Z copying torch/include/ATen/ops/_int_mm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2668830Z copying torch/include/ATen/ops/i0_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2670050Z copying torch/include/ATen/ops/inverse_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2671380Z 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-08-14T20:47:59.2672630Z copying torch/include/ATen/ops/embedding_dense_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2673820Z copying torch/include/ATen/ops/index_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2675050Z copying torch/include/ATen/ops/qr_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2676320Z copying torch/include/ATen/ops/_log_softmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2677720Z copying torch/include/ATen/ops/quantized_batch_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2678980Z copying torch/include/ATen/ops/_fused_rms_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2680250Z copying torch/include/ATen/ops/_sample_dirichlet_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2681520Z copying torch/include/ATen/ops/_standard_gamma_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2682780Z copying torch/include/ATen/ops/floor_divide_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2684160Z copying torch/include/ATen/ops/_softmax_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2685420Z copying torch/include/ATen/ops/upsample_nearest1d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2686710Z copying torch/include/ATen/ops/special_modified_bessel_k1_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2687840Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2689110Z copying torch/include/ATen/ops/huber_loss_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2690510Z 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-08-14T20:47:59.2691700Z copying torch/include/ATen/ops/nll_loss_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2693150Z copying torch/include/ATen/ops/polygamma_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2694410Z copying torch/include/ATen/ops/mkldnn_max_pool3d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2695590Z copying torch/include/ATen/ops/fill_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2696910Z 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-08-14T20:47:59.2698130Z copying torch/include/ATen/ops/dist.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2699530Z 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-08-14T20:47:59.2700940Z 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-08-14T20:47:59.2702080Z copying torch/include/ATen/ops/index_copy_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2703410Z copying torch/include/ATen/ops/quantized_lstm_cell_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2704700Z copying torch/include/ATen/ops/_foreach_log10_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2706070Z copying torch/include/ATen/ops/special_psi_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2707260Z copying torch/include/ATen/ops/sub_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2708500Z copying torch/include/ATen/ops/mkldnn_linear_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2709730Z copying torch/include/ATen/ops/trace_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2711040Z copying torch/include/ATen/ops/adaptive_avg_pool3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2712280Z copying torch/include/ATen/ops/_efficientzerotensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2713610Z copying torch/include/ATen/ops/expm1_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2714810Z copying torch/include/ATen/ops/_efficient_attention_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2716150Z 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-08-14T20:47:59.2717360Z copying torch/include/ATen/ops/sinc_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2718760Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2720050Z copying torch/include/ATen/ops/special_bessel_y1_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2721240Z copying torch/include/ATen/ops/linalg_cholesky_ex_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2722580Z 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-08-14T20:47:59.2723860Z copying torch/include/ATen/ops/polygamma_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2725070Z copying torch/include/ATen/ops/logical_xor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2726390Z copying torch/include/ATen/ops/nextafter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2727710Z copying torch/include/ATen/ops/_sparse_log_softmax_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2728930Z copying torch/include/ATen/ops/log_sigmoid_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2730160Z copying torch/include/ATen/ops/special_bessel_y0_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2731340Z copying torch/include/ATen/ops/_cast_Long_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2732580Z copying torch/include/ATen/ops/_foreach_max_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2733750Z copying torch/include/ATen/ops/pdist_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2734980Z copying torch/include/ATen/ops/_sobol_engine_ff_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2736240Z copying torch/include/ATen/ops/_wrapped_linear_prepack_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2737450Z copying torch/include/ATen/ops/softmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2738650Z copying torch/include/ATen/ops/arctan2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2739910Z copying torch/include/ATen/ops/quantized_gru_cell_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2741390Z copying torch/include/ATen/ops/linalg_ldl_factor_ex_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2742730Z copying torch/include/ATen/ops/_nested_from_padded_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2744010Z 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-08-14T20:47:59.2745160Z copying torch/include/ATen/ops/absolute_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2746700Z copying torch/include/ATen/ops/reflection_pad1d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2747710Z 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-08-14T20:47:59.2749130Z 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-08-14T20:47:59.2750290Z copying torch/include/ATen/ops/logaddexp_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2751810Z copying torch/include/ATen/ops/thnn_conv2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2752960Z copying torch/include/ATen/ops/miopen_rnn_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2754180Z copying torch/include/ATen/ops/max_pool3d_with_indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2755370Z copying torch/include/ATen/ops/_ctc_loss_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2756680Z copying torch/include/ATen/ops/special_zeta_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2757940Z copying torch/include/ATen/ops/mkldnn_max_pool3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2759350Z copying torch/include/ATen/ops/atleast_2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2760530Z copying torch/include/ATen/ops/addmv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2761830Z copying torch/include/ATen/ops/bilinear_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2763010Z copying torch/include/ATen/ops/topk_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2764290Z copying torch/include/ATen/ops/adaptive_avg_pool1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2765520Z copying torch/include/ATen/ops/linalg_eig_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2766750Z copying torch/include/ATen/ops/matrix_exp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2768230Z copying torch/include/ATen/ops/row_indices_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2769370Z copying torch/include/ATen/ops/mkldnn_rnn_layer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2770790Z copying torch/include/ATen/ops/native_layer_norm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2771970Z copying torch/include/ATen/ops/softshrink_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2773250Z copying torch/include/ATen/ops/concatenate_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2774530Z copying torch/include/ATen/ops/view_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2775830Z copying torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2777240Z copying torch/include/ATen/ops/_unsafe_index_put_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2778440Z copying torch/include/ATen/ops/linalg_ldl_factor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2779750Z copying torch/include/ATen/ops/glu_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2780970Z copying torch/include/ATen/ops/is_inference_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2782200Z copying torch/include/ATen/ops/special_i1_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2783610Z 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-08-14T20:47:59.2784880Z copying torch/include/ATen/ops/hstack_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2786520Z copying torch/include/ATen/ops/mv_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2787710Z copying torch/include/ATen/ops/_ctc_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2789250Z copying torch/include/ATen/ops/_weight_norm_differentiable_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2790570Z 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-08-14T20:47:59.2792000Z copying torch/include/ATen/ops/miopen_convolution.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2793260Z copying torch/include/ATen/ops/is_nonzero_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2794570Z copying torch/include/ATen/ops/slice_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2796090Z copying torch/include/ATen/ops/dot_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2797650Z copying torch/include/ATen/ops/positive_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2798880Z copying torch/include/ATen/ops/adaptive_avg_pool3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2800260Z 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-08-14T20:47:59.2801460Z copying torch/include/ATen/ops/_cast_Float_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2802760Z 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-08-14T20:47:59.2803970Z copying torch/include/ATen/ops/lu_unpack_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2805280Z copying torch/include/ATen/ops/_foreach_atan_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2806640Z 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-08-14T20:47:59.2807900Z copying torch/include/ATen/ops/is_coalesced_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2809180Z copying torch/include/ATen/ops/narrow_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2810370Z copying torch/include/ATen/ops/atan2_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2811620Z copying torch/include/ATen/ops/rnn_relu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2812980Z copying torch/include/ATen/ops/lu_unpack_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2814140Z copying torch/include/ATen/ops/_mixed_dtypes_linear.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2815320Z copying torch/include/ATen/ops/_nested_get_max_seqlen.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2816610Z copying torch/include/ATen/ops/_linalg_slogdet_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2817800Z copying torch/include/ATen/ops/size.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2819070Z copying torch/include/ATen/ops/scatter_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2820380Z copying torch/include/ATen/ops/logcumsumexp_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2822020Z copying torch/include/ATen/ops/bernoulli_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2822840Z copying torch/include/ATen/ops/glu_jvp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2824050Z copying torch/include/ATen/ops/special_i1.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2825360Z copying torch/include/ATen/ops/matrix_exp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2826550Z copying torch/include/ATen/ops/miopen_rnn_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2827880Z copying torch/include/ATen/ops/_linalg_slogdet_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2829100Z 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-08-14T20:47:59.2830340Z copying torch/include/ATen/ops/log_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2831570Z copying torch/include/ATen/ops/hann_window_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2832950Z copying torch/include/ATen/ops/rrelu_with_noise.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2834260Z copying torch/include/ATen/ops/miopen_convolution_add_relu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2835530Z copying torch/include/ATen/ops/atan_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2836810Z copying torch/include/ATen/ops/coalesce_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2838250Z copying torch/include/ATen/ops/_sparse_log_softmax_backward_data.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2839510Z 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-08-14T20:47:59.2840760Z copying torch/include/ATen/ops/where_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2842070Z 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-08-14T20:47:59.2843330Z copying torch/include/ATen/ops/std_mean_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2844770Z copying torch/include/ATen/ops/atan2_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2846040Z copying torch/include/ATen/ops/unfold_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2847400Z 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-08-14T20:47:59.2848770Z 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-08-14T20:47:59.2850010Z copying torch/include/ATen/ops/reflection_pad3d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2851420Z copying torch/include/ATen/ops/atleast_3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2852800Z copying torch/include/ATen/ops/_resize_output_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2854020Z copying torch/include/ATen/ops/linalg_lu_factor_ex_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2855280Z copying torch/include/ATen/ops/_linalg_svd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2856660Z copying torch/include/ATen/ops/hstack_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2857980Z 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-08-14T20:47:59.2859170Z copying torch/include/ATen/ops/arctan_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2860940Z copying torch/include/ATen/ops/_efficient_attention_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2861910Z copying torch/include/ATen/ops/_fw_primal_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2863100Z copying torch/include/ATen/ops/view_as_real_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2864460Z copying torch/include/ATen/ops/miopen_batch_norm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2865750Z copying torch/include/ATen/ops/neg_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2867010Z copying torch/include/ATen/ops/argmax_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2868300Z copying torch/include/ATen/ops/_sparse_coo_tensor_unsafe_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2869590Z 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-08-14T20:47:59.2870770Z copying torch/include/ATen/ops/erfinv_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2872060Z copying torch/include/ATen/ops/nll_loss2d_forward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2873380Z copying torch/include/ATen/ops/chain_matmul.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2874620Z copying torch/include/ATen/ops/sign_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2876040Z 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-08-14T20:47:59.2877350Z copying torch/include/ATen/ops/affine_grid_generator_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2878670Z copying torch/include/ATen/ops/mkldnn_max_pool2d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2884430Z copying torch/include/ATen/ops/concat_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2884900Z copying torch/include/ATen/ops/vdot_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2885150Z copying torch/include/ATen/ops/sparse_resize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2885390Z copying torch/include/ATen/ops/_foreach_abs_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2885690Z copying torch/include/ATen/ops/slow_conv_transpose2d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2886280Z 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-08-14T20:47:59.2887390Z copying torch/include/ATen/ops/abs_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2888690Z copying torch/include/ATen/ops/col_indices_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2890040Z copying torch/include/ATen/ops/logical_xor_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2891140Z copying torch/include/ATen/ops/native_group_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2892370Z copying torch/include/ATen/ops/_fft_c2c_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2893830Z 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-08-14T20:47:59.2895080Z copying torch/include/ATen/ops/cosine_similarity_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2896350Z copying torch/include/ATen/ops/cat_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2897630Z copying torch/include/ATen/ops/conj_physical_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2898850Z copying torch/include/ATen/ops/argmin.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2900130Z copying torch/include/ATen/ops/_embedding_bag_sparse_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2901450Z copying torch/include/ATen/ops/adaptive_max_pool2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2902610Z copying torch/include/ATen/ops/logspace_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2903960Z copying torch/include/ATen/ops/avg_pool2d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2905130Z copying torch/include/ATen/ops/is_same_size_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2906440Z copying torch/include/ATen/ops/igammac_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2907680Z copying torch/include/ATen/ops/linalg_inv_ex_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2909120Z copying torch/include/ATen/ops/maximum_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2910250Z copying torch/include/ATen/ops/_cast_Double_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2911530Z copying torch/include/ATen/ops/prod_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2912720Z copying torch/include/ATen/ops/ceil_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2914140Z copying torch/include/ATen/ops/column_stack_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2915550Z 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-08-14T20:47:59.2916800Z copying torch/include/ATen/ops/hinge_embedding_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2918090Z copying torch/include/ATen/ops/_fused_adamw_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2919650Z 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-08-14T20:47:59.2920750Z copying torch/include/ATen/ops/and_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2922100Z 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-08-14T20:47:59.2923670Z copying torch/include/ATen/ops/atanh_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2924800Z copying torch/include/ATen/ops/batch_norm_backward_reduce_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2926040Z copying torch/include/ATen/ops/as_strided_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2927300Z copying torch/include/ATen/ops/linalg_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2928670Z 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-08-14T20:47:59.2929940Z copying torch/include/ATen/ops/sqrt_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2931180Z copying torch/include/ATen/ops/nan_to_num_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2932450Z copying torch/include/ATen/ops/vstack_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2933860Z copying torch/include/ATen/ops/fft_rfftn_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2935060Z copying torch/include/ATen/ops/normal_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2936250Z copying torch/include/ATen/ops/_sparse_csr_sum_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2937440Z copying torch/include/ATen/ops/linalg_inv_ex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2938790Z copying torch/include/ATen/ops/special_chebyshev_polynomial_u_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2940090Z copying torch/include/ATen/ops/leaky_relu_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2941450Z copying torch/include/ATen/ops/bitwise_and_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2942740Z 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-08-14T20:47:59.2944090Z 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-08-14T20:47:59.2945430Z copying torch/include/ATen/ops/fractional_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2946570Z copying torch/include/ATen/ops/linalg_lu_factor_ex_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2947910Z copying torch/include/ATen/ops/_fused_sgd_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2949300Z copying torch/include/ATen/ops/_convolution_mode_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2950530Z copying torch/include/ATen/ops/_linalg_eigh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2951800Z copying torch/include/ATen/ops/special_chebyshev_polynomial_t_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2953560Z copying torch/include/ATen/ops/dequantize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2954350Z copying torch/include/ATen/ops/_fft_c2c_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2955650Z copying torch/include/ATen/ops/align_to.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2956880Z copying torch/include/ATen/ops/max_unpool3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2958200Z copying torch/include/ATen/ops/replication_pad3d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2959460Z 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-08-14T20:47:59.2960720Z copying torch/include/ATen/ops/acosh_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2962050Z copying torch/include/ATen/ops/signbit_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2963250Z copying torch/include/ATen/ops/_assert_scalar.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2964510Z copying torch/include/ATen/ops/index.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2965710Z copying torch/include/ATen/ops/min_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2966980Z copying torch/include/ATen/ops/glu_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2968250Z copying torch/include/ATen/ops/is_same_size_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2969530Z copying torch/include/ATen/ops/index_select_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2970810Z copying torch/include/ATen/ops/_mkldnn_reshape_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2972250Z 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-08-14T20:47:59.2973440Z copying torch/include/ATen/ops/std_mean_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2974720Z copying torch/include/ATen/ops/softshrink_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2976020Z copying torch/include/ATen/ops/index_fill_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2977220Z copying torch/include/ATen/ops/repeat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2978390Z copying torch/include/ATen/ops/_foreach_floor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2979660Z copying torch/include/ATen/ops/_nested_tensor_from_mask_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2981030Z copying torch/include/ATen/ops/transpose_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2982260Z copying torch/include/ATen/ops/embedding_sparse_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2983440Z copying torch/include/ATen/ops/dropout_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2984640Z copying torch/include/ATen/ops/matmul.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2985960Z copying torch/include/ATen/ops/floor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2987230Z 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-08-14T20:47:59.2989240Z copying torch/include/ATen/ops/_unsafe_view_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2989920Z copying torch/include/ATen/ops/gelu_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2991120Z copying torch/include/ATen/ops/_standard_gamma_grad_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2992670Z copying torch/include/ATen/ops/_test_check_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2993870Z copying torch/include/ATen/ops/rot90_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2995110Z copying torch/include/ATen/ops/signbit_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2996470Z copying torch/include/ATen/ops/reciprocal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2997700Z copying torch/include/ATen/ops/clamp_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.2998870Z copying torch/include/ATen/ops/selu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3000140Z copying torch/include/ATen/ops/reflection_pad1d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3001560Z copying torch/include/ATen/ops/upsample_nearest1d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3002810Z copying torch/include/ATen/ops/squeeze_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3004060Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3005390Z copying torch/include/ATen/ops/bitwise_right_shift_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3006730Z copying torch/include/ATen/ops/special_spherical_bessel_j0_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3007960Z copying torch/include/ATen/ops/minimum_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3009280Z copying torch/include/ATen/ops/_flash_attention_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3010530Z copying torch/include/ATen/ops/hardsigmoid_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3011860Z copying torch/include/ATen/ops/_logcumsumexp_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3013100Z copying torch/include/ATen/ops/values_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3014390Z copying torch/include/ATen/ops/col2im_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3015630Z copying torch/include/ATen/ops/ge_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3016950Z 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-08-14T20:47:59.3018330Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3019610Z 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-08-14T20:47:59.3021090Z copying torch/include/ATen/ops/cosh_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3022270Z copying torch/include/ATen/ops/linalg_vector_norm_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3023730Z 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-08-14T20:47:59.3024840Z copying torch/include/ATen/ops/hardtanh_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3026240Z 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-08-14T20:47:59.3027570Z copying torch/include/ATen/ops/erfc_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3028810Z 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-08-14T20:47:59.3030190Z copying torch/include/ATen/ops/_sparse_sum_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3031450Z copying torch/include/ATen/ops/atan2_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3032650Z copying torch/include/ATen/ops/sub_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3034100Z copying torch/include/ATen/ops/view_as_real_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3035450Z copying torch/include/ATen/ops/_masked_scale_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3036720Z 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-08-14T20:47:59.3037900Z copying torch/include/ATen/ops/glu_jvp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3039270Z copying torch/include/ATen/ops/_sobol_engine_scramble.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3040500Z copying torch/include/ATen/ops/mish_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3041790Z copying torch/include/ATen/ops/fft_rfftfreq_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3042990Z copying torch/include/ATen/ops/elu_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3044330Z copying torch/include/ATen/ops/nanmean_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3045690Z copying torch/include/ATen/ops/miopen_batch_norm_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3046920Z copying torch/include/ATen/ops/linalg_cross_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3048200Z copying torch/include/ATen/ops/_fused_dropout.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3049650Z copying torch/include/ATen/ops/max_pool3d_with_indices_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3050950Z copying torch/include/ATen/ops/addbmm_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3052190Z 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-08-14T20:47:59.3053350Z copying torch/include/ATen/ops/gt_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3054880Z 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-08-14T20:47:59.3056240Z 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-08-14T20:47:59.3057510Z copying torch/include/ATen/ops/miopen_rnn_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3058710Z copying torch/include/ATen/ops/fractional_max_pool2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3059920Z copying torch/include/ATen/ops/detach_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3061300Z copying torch/include/ATen/ops/bitwise_and_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3062660Z copying torch/include/ATen/ops/type_as_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3063890Z copying torch/include/ATen/ops/randn_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3065160Z copying torch/include/ATen/ops/_linalg_solve_ex_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3066550Z 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-08-14T20:47:59.3067730Z copying torch/include/ATen/ops/_slow_conv2d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3069040Z copying torch/include/ATen/ops/conv_depthwise3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3070310Z copying torch/include/ATen/ops/norm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3071670Z copying torch/include/ATen/ops/masked_select_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3072910Z copying torch/include/ATen/ops/exponential_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3074070Z copying torch/include/ATen/ops/special_i0_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3075400Z copying torch/include/ATen/ops/or_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3076710Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3077900Z copying torch/include/ATen/ops/_autocast_to_full_precision_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3079110Z copying torch/include/ATen/ops/erfinv_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3080390Z copying torch/include/ATen/ops/lcm_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3081830Z copying torch/include/ATen/ops/argwhere_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3083040Z copying torch/include/ATen/ops/upsample_nearest2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3084220Z copying torch/include/ATen/ops/cross_entropy_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3085490Z copying torch/include/ATen/ops/_linalg_eigh_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3086790Z copying torch/include/ATen/ops/unsqueeze_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3088110Z 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-08-14T20:47:59.3089300Z copying torch/include/ATen/ops/rsub_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3090730Z 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-08-14T20:47:59.3092010Z 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-08-14T20:47:59.3093220Z copying torch/include/ATen/ops/median_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3094350Z copying torch/include/ATen/ops/linalg_cross_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3095590Z copying torch/include/ATen/ops/gelu_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3096900Z copying torch/include/ATen/ops/_weight_int8pack_mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3098110Z 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-08-14T20:47:59.3099360Z copying torch/include/ATen/ops/quantize_per_tensor_dynamic_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3100540Z copying torch/include/ATen/ops/permute.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3102000Z copying torch/include/ATen/ops/special_digamma_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3103160Z copying torch/include/ATen/ops/_upsample_nearest_exact1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3104560Z copying torch/include/ATen/ops/linalg_tensorinv_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3105770Z copying torch/include/ATen/ops/_sparse_semi_structured_linear.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3107000Z copying torch/include/ATen/ops/native_group_norm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3108300Z copying torch/include/ATen/ops/split_with_sizes_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3109580Z copying torch/include/ATen/ops/unflatten_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3110740Z copying torch/include/ATen/ops/_functional_assert_scalar_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3111920Z copying torch/include/ATen/ops/mse_loss_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3113380Z copying torch/include/ATen/ops/le_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3114590Z copying torch/include/ATen/ops/atleast_1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3115720Z copying torch/include/ATen/ops/roll.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3117030Z copying torch/include/ATen/ops/linalg_svdvals_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3118220Z copying torch/include/ATen/ops/orgqr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3119480Z copying torch/include/ATen/ops/sigmoid_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3120710Z copying torch/include/ATen/ops/conv_transpose2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3121950Z copying torch/include/ATen/ops/layer_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3123520Z 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-08-14T20:47:59.3124630Z copying torch/include/ATen/ops/special_chebyshev_polynomial_t_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3125800Z copying torch/include/ATen/ops/std_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3127090Z copying torch/include/ATen/ops/_sample_dirichlet_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3128370Z copying torch/include/ATen/ops/_sparse_bsr_tensor_unsafe.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3129580Z copying torch/include/ATen/ops/take.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3130830Z copying torch/include/ATen/ops/igammac_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3132070Z copying torch/include/ATen/ops/isin_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3133350Z copying torch/include/ATen/ops/record_stream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3134640Z copying torch/include/ATen/ops/resize_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3136010Z copying torch/include/ATen/ops/bitwise_and_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3137300Z copying torch/include/ATen/ops/upsample_bilinear2d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3138560Z copying torch/include/ATen/ops/native_group_norm_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3139830Z copying torch/include/ATen/ops/view_as_complex_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3141040Z copying torch/include/ATen/ops/fill_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3142300Z copying torch/include/ATen/ops/linear_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3143560Z copying torch/include/ATen/ops/isinf_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3144810Z copying torch/include/ATen/ops/expand_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3146050Z copying torch/include/ATen/ops/_batch_norm_with_update_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3147390Z copying torch/include/ATen/ops/_nested_get_min_seqlen_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3148770Z copying torch/include/ATen/ops/cudnn_convolution_relu_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3150090Z copying torch/include/ATen/ops/_cast_Char_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3151270Z copying torch/include/ATen/ops/native_dropout_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3152480Z copying torch/include/ATen/ops/hash_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3153860Z copying torch/include/ATen/ops/lstm_cell_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3155160Z 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-08-14T20:47:59.3156420Z copying torch/include/ATen/ops/multinomial.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3157630Z copying torch/include/ATen/ops/alias_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3158990Z copying torch/include/ATen/ops/_foreach_maximum_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3160230Z copying torch/include/ATen/ops/allclose_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3161580Z copying torch/include/ATen/ops/linalg_slogdet_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3162800Z copying torch/include/ATen/ops/nuclear_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3164180Z copying torch/include/ATen/ops/_slow_conv2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3165380Z copying torch/include/ATen/ops/multilabel_margin_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3166610Z copying torch/include/ATen/ops/grid_sampler_3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3167890Z copying torch/include/ATen/ops/pairwise_distance_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3169120Z copying torch/include/ATen/ops/broadcast_to_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3170360Z copying torch/include/ATen/ops/mse_loss_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3171580Z copying torch/include/ATen/ops/_nested_get_lengths_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3172870Z 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-08-14T20:47:59.3174100Z copying torch/include/ATen/ops/_foreach_log.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3175430Z copying torch/include/ATen/ops/sparse_csc_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3176660Z copying torch/include/ATen/ops/nextafter_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3178060Z copying torch/include/ATen/ops/slow_conv_transpose2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3179220Z copying torch/include/ATen/ops/_aminmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3180470Z copying torch/include/ATen/ops/complex_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3181740Z copying torch/include/ATen/ops/hardswish_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3182990Z copying torch/include/ATen/ops/digamma.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3184400Z copying torch/include/ATen/ops/mm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3186040Z copying torch/include/ATen/ops/mkldnn_convolution_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3188530Z copying torch/include/ATen/ops/empty_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3189990Z copying torch/include/ATen/ops/triangular_solve_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3191700Z copying torch/include/ATen/ops/_pdist_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3193150Z copying torch/include/ATen/ops/_ctc_loss_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3194740Z copying torch/include/ATen/ops/coalesce_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3196190Z copying torch/include/ATen/ops/log_sigmoid_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3197670Z copying torch/include/ATen/ops/adaptive_avg_pool2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3199190Z copying torch/include/ATen/ops/bitwise_or_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3200740Z copying torch/include/ATen/ops/geometric_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3202130Z copying torch/include/ATen/ops/_values_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3203680Z copying torch/include/ATen/ops/slow_conv_transpose2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3205210Z 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-08-14T20:47:59.3206510Z copying torch/include/ATen/ops/cumprod_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3207860Z 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-08-14T20:47:59.3209240Z copying torch/include/ATen/ops/sym_constrain_range_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3210360Z copying torch/include/ATen/ops/ldexp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3211770Z copying torch/include/ATen/ops/arccosh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3212930Z copying torch/include/ATen/ops/linalg_matrix_rank.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3214280Z copying torch/include/ATen/ops/_copy_from_and_resize_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3215510Z 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-08-14T20:47:59.3216750Z copying torch/include/ATen/ops/all_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3217970Z copying torch/include/ATen/ops/linalg_matrix_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3219340Z copying torch/include/ATen/ops/is_set_to_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3220540Z copying torch/include/ATen/ops/bitwise_left_shift_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3221790Z copying torch/include/ATen/ops/randn_like_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3223030Z copying torch/include/ATen/ops/rnn_relu_cell.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3224320Z copying torch/include/ATen/ops/max_pool2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3225680Z 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-08-14T20:47:59.3226900Z copying torch/include/ATen/ops/adjoint_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3228250Z copying torch/include/ATen/ops/_pack_padded_sequence_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3229450Z copying torch/include/ATen/ops/nonzero_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3230710Z 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-08-14T20:47:59.3231980Z 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-08-14T20:47:59.3233220Z copying torch/include/ATen/ops/mse_loss_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3234660Z 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-08-14T20:47:59.3235770Z copying torch/include/ATen/ops/eye_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3237030Z copying torch/include/ATen/ops/special_exp2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3238270Z copying torch/include/ATen/ops/_fused_adamw.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3239670Z copying torch/include/ATen/ops/permute_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3240800Z copying torch/include/ATen/ops/grid_sampler_3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3242090Z copying torch/include/ATen/ops/index_copy_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3243390Z copying torch/include/ATen/ops/frac_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3244620Z copying torch/include/ATen/ops/gelu_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3245850Z copying torch/include/ATen/ops/adaptive_max_pool3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3247120Z copying torch/include/ATen/ops/_dyn_quant_matmul_4bit_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3248450Z 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-08-14T20:47:59.3249640Z copying torch/include/ATen/ops/_pdist_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3250860Z copying torch/include/ATen/ops/avg_pool3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3252130Z copying torch/include/ATen/ops/broadcast_tensors.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3253470Z copying torch/include/ATen/ops/slow_conv3d_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3254720Z copying torch/include/ATen/ops/lt_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3255820Z copying torch/include/ATen/ops/_chunk_cat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3257110Z copying torch/include/ATen/ops/_sparse_softmax_backward_data_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3258400Z copying torch/include/ATen/ops/is_distributed_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3259580Z copying torch/include/ATen/ops/nll_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3260830Z copying torch/include/ATen/ops/_masked_softmax_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3262040Z copying torch/include/ATen/ops/fft_irfftn_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3263340Z copying torch/include/ATen/ops/reflection_pad2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3264580Z copying torch/include/ATen/ops/slice_scatter_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3265840Z copying torch/include/ATen/ops/rnn_tanh_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3267160Z copying torch/include/ATen/ops/fft_fftn_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3268430Z copying torch/include/ATen/ops/_fused_adagrad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3269670Z copying torch/include/ATen/ops/all_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3270860Z copying torch/include/ATen/ops/quantized_gru_cell.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3272060Z copying torch/include/ATen/ops/eye_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3273300Z copying torch/include/ATen/ops/hypot_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3274510Z copying torch/include/ATen/ops/sqrt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3275790Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3276960Z copying torch/include/ATen/ops/set_data_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3278250Z copying torch/include/ATen/ops/linalg_vecdot_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3279550Z 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-08-14T20:47:59.3281050Z copying torch/include/ATen/ops/acosh_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3282560Z copying torch/include/ATen/ops/_convolution_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3283960Z copying torch/include/ATen/ops/_add_batch_dim_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3285210Z copying torch/include/ATen/ops/sparse_csr_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3286460Z copying torch/include/ATen/ops/_foreach_sinh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3287750Z copying torch/include/ATen/ops/moveaxis_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3289040Z copying torch/include/ATen/ops/positive.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3290270Z copying torch/include/ATen/ops/sum_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3291540Z copying torch/include/ATen/ops/asin_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3292830Z 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-08-14T20:47:59.3294180Z 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-08-14T20:47:59.3295510Z copying torch/include/ATen/ops/new_empty.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3296750Z 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-08-14T20:47:59.3297930Z copying torch/include/ATen/ops/any_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3299340Z copying torch/include/ATen/ops/special_xlog1py_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3300790Z copying torch/include/ATen/ops/pad_sequence_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3301980Z copying torch/include/ATen/ops/_propagate_xla_data_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3303220Z copying torch/include/ATen/ops/cudnn_convolution_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3304450Z copying torch/include/ATen/ops/_log_softmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3305710Z copying torch/include/ATen/ops/_foreach_round_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3306880Z copying torch/include/ATen/ops/_conj.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3308070Z copying torch/include/ATen/ops/is_coalesced_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3309310Z copying torch/include/ATen/ops/flatten.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3310600Z copying torch/include/ATen/ops/_to_dense_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3311880Z copying torch/include/ATen/ops/bitwise_or_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3313050Z copying torch/include/ATen/ops/bincount_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3314290Z copying torch/include/ATen/ops/dot_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3315590Z copying torch/include/ATen/ops/sparse_resize_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3317050Z 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-08-14T20:47:59.3318200Z copying torch/include/ATen/ops/linspace_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3319520Z copying torch/include/ATen/ops/lerp_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3320790Z copying torch/include/ATen/ops/nanmedian.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3322060Z copying torch/include/ATen/ops/diag_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3323270Z copying torch/include/ATen/ops/diagonal_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3324520Z copying torch/include/ATen/ops/sgn_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3325810Z copying torch/include/ATen/ops/_gather_sparse_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3327010Z copying torch/include/ATen/ops/topk_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3328150Z copying torch/include/ATen/ops/flip_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3329480Z copying torch/include/ATen/ops/any_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3330730Z 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-08-14T20:47:59.3331940Z copying torch/include/ATen/ops/linalg_eigvals_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3333120Z copying torch/include/ATen/ops/special_entr_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3334430Z copying torch/include/ATen/ops/fbgemm_linear_quantize_weight_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3335640Z copying torch/include/ATen/ops/where_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3336860Z copying torch/include/ATen/ops/_sparse_mm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3338060Z copying torch/include/ATen/ops/igamma.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3339450Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3340660Z copying torch/include/ATen/ops/_choose_qparams_per_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3341800Z copying torch/include/ATen/ops/fft_ihfft2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3342990Z copying torch/include/ATen/ops/kl_div.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3344340Z copying torch/include/ATen/ops/special_legendre_polynomial_p_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3345500Z copying torch/include/ATen/ops/_mps_convolution.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3346750Z copying torch/include/ATen/ops/hardsigmoid_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3347920Z copying torch/include/ATen/ops/values_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3349210Z copying torch/include/ATen/ops/resize_as_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3350400Z copying torch/include/ATen/ops/bucketize_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3351720Z 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-08-14T20:47:59.3353790Z copying torch/include/ATen/ops/_linalg_svd_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3355080Z copying torch/include/ATen/ops/upsample_bicubic2d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3356320Z copying torch/include/ATen/ops/argmin_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3357600Z copying torch/include/ATen/ops/any_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3359110Z copying torch/include/ATen/ops/vsplit_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3360500Z copying torch/include/ATen/ops/_softmax_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3361830Z copying torch/include/ATen/ops/_thnn_fused_gru_cell_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3363150Z copying torch/include/ATen/ops/min_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3364330Z copying torch/include/ATen/ops/_mps_convolution_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3365760Z copying torch/include/ATen/ops/special_polygamma_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3367060Z copying torch/include/ATen/ops/value_selecting_reduction_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3368380Z copying torch/include/ATen/ops/_linalg_solve_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3369580Z copying torch/include/ATen/ops/special_log1p_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3370870Z copying torch/include/ATen/ops/special_bessel_j0_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3372130Z 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-08-14T20:47:59.3373560Z copying torch/include/ATen/ops/upsample_linear1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3374710Z copying torch/include/ATen/ops/put_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3376020Z copying torch/include/ATen/ops/cdist_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3377280Z copying torch/include/ATen/ops/quantized_rnn_tanh_cell_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3378630Z copying torch/include/ATen/ops/binary_cross_entropy_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3379820Z copying torch/include/ATen/ops/glu_jvp_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3381050Z copying torch/include/ATen/ops/atan_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3382310Z copying torch/include/ATen/ops/acos_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3383560Z copying torch/include/ATen/ops/log10_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3384830Z copying torch/include/ATen/ops/_weight_norm_interface_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3386150Z copying torch/include/ATen/ops/_mixed_dtypes_linear_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3387440Z copying torch/include/ATen/ops/mkldnn_max_pool3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3388610Z copying torch/include/ATen/ops/binomial.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3390000Z copying torch/include/ATen/ops/quantized_max_pool1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3391460Z copying torch/include/ATen/ops/linalg_qr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3392730Z copying torch/include/ATen/ops/ctc_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3394030Z copying torch/include/ATen/ops/_propagate_xla_data_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3395380Z copying torch/include/ATen/ops/_fused_adagrad_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3396650Z copying torch/include/ATen/ops/index_add_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3398040Z copying torch/include/ATen/ops/norm_except_dim_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3399280Z copying torch/include/ATen/ops/log_normal_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3400540Z copying torch/include/ATen/ops/miopen_convolution_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3401810Z copying torch/include/ATen/ops/max_pool3d_with_indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3403120Z copying torch/include/ATen/ops/hardshrink_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3404380Z copying torch/include/ATen/ops/transpose_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3405610Z copying torch/include/ATen/ops/_foreach_pow_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3406990Z 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-08-14T20:47:59.3408180Z copying torch/include/ATen/ops/smooth_l1_loss_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3409370Z copying torch/include/ATen/ops/cholesky_solve_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3410680Z 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-08-14T20:47:59.3411860Z copying torch/include/ATen/ops/embedding_renorm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3413170Z 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-08-14T20:47:59.3414340Z copying torch/include/ATen/ops/hardsigmoid.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3415650Z copying torch/include/ATen/ops/quantized_rnn_tanh_cell_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3416920Z 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-08-14T20:47:59.3418160Z copying torch/include/ATen/ops/remainder_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3419400Z copying torch/include/ATen/ops/_weight_norm_interface_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3420600Z copying torch/include/ATen/ops/deg2rad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3421960Z copying torch/include/ATen/ops/glu_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3423250Z copying torch/include/ATen/ops/_weight_int4pack_mm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3424580Z copying torch/include/ATen/ops/special_bessel_y1_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3425840Z copying torch/include/ATen/ops/zero_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3427020Z copying torch/include/ATen/ops/is_complex_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3428260Z copying torch/include/ATen/ops/floor_divide.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3429530Z copying torch/include/ATen/ops/soft_margin_loss_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3430730Z copying torch/include/ATen/ops/addr_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3432130Z copying torch/include/ATen/ops/arcsinh_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3433300Z copying torch/include/ATen/ops/upsample_bicubic2d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3434550Z copying torch/include/ATen/ops/_use_cudnn_ctc_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3435950Z 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-08-14T20:47:59.3437170Z copying torch/include/ATen/ops/special_bessel_y1_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3438400Z copying torch/include/ATen/ops/corrcoef.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3439750Z copying torch/include/ATen/ops/linalg_tensorsolve_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3441090Z copying torch/include/ATen/ops/select_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3442260Z copying torch/include/ATen/ops/special_gammaln_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3443670Z 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-08-14T20:47:59.3444800Z copying torch/include/ATen/ops/erfc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3446100Z copying torch/include/ATen/ops/ccol_indices_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3447390Z copying torch/include/ATen/ops/reflection_pad1d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3448630Z copying torch/include/ATen/ops/_foreach_asin_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3449850Z copying torch/include/ATen/ops/_fused_adam.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3451150Z copying torch/include/ATen/ops/zeros_like.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3452570Z copying torch/include/ATen/ops/mish_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3453830Z copying torch/include/ATen/ops/reshape_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3455110Z copying torch/include/ATen/ops/_foreach_cosh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3456390Z copying torch/include/ATen/ops/lt_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3457640Z copying torch/include/ATen/ops/slow_conv_transpose3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3459070Z copying torch/include/ATen/ops/_index_put_impl_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3460190Z copying torch/include/ATen/ops/gt_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3461520Z copying torch/include/ATen/ops/data_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3462800Z copying torch/include/ATen/ops/fft_rfft2_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3464090Z copying torch/include/ATen/ops/replication_pad3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3465400Z 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-08-14T20:47:59.3466690Z 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-08-14T20:47:59.3467830Z copying torch/include/ATen/ops/unbind.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3469190Z copying torch/include/ATen/ops/scatter_reduce_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3470400Z copying torch/include/ATen/ops/unique_dim_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3471690Z copying torch/include/ATen/ops/triangular_solve_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3472920Z copying torch/include/ATen/ops/_softmax_backward_data_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3474180Z copying torch/include/ATen/ops/baddbmm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3475340Z copying torch/include/ATen/ops/linear_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3476720Z 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-08-14T20:47:59.3477990Z copying torch/include/ATen/ops/matmul_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3479170Z copying torch/include/ATen/ops/geometric_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3480380Z copying torch/include/ATen/ops/multilabel_margin_loss_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3481590Z copying torch/include/ATen/ops/lstm_cell_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3482770Z copying torch/include/ATen/ops/_foreach_cos_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3484030Z copying torch/include/ATen/ops/max_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3485220Z copying torch/include/ATen/ops/outer_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3486500Z copying torch/include/ATen/ops/_nested_view_from_buffer_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3487680Z copying torch/include/ATen/ops/vdot_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3489040Z 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-08-14T20:47:59.3490190Z copying torch/include/ATen/ops/_fused_rms_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3491470Z copying torch/include/ATen/ops/topk.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3492790Z copying torch/include/ATen/ops/_foreach_trunc_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3494160Z copying torch/include/ATen/ops/lcm_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3495470Z 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-08-14T20:47:59.3496680Z copying torch/include/ATen/ops/_cast_Short_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3497990Z copying torch/include/ATen/ops/batch_norm_gather_stats_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3499320Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3500660Z copying torch/include/ATen/ops/hardshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3501730Z copying torch/include/ATen/ops/batch_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3503090Z copying torch/include/ATen/ops/_to_sparse_bsc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3504340Z 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-08-14T20:47:59.3505710Z copying torch/include/ATen/ops/reshape_as_compositeimplicitautogradnestedtensor_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3506990Z copying torch/include/ATen/ops/var_mean_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3508140Z copying torch/include/ATen/ops/empty_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3509380Z copying torch/include/ATen/ops/q_scale_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3510670Z copying torch/include/ATen/ops/lgamma_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3511860Z copying torch/include/ATen/ops/stft_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3513090Z copying torch/include/ATen/ops/_sparse_mask_projection.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3514320Z copying torch/include/ATen/ops/aminmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3515550Z copying torch/include/ATen/ops/_trilinear_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3516780Z copying torch/include/ATen/ops/mse_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3518070Z 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-08-14T20:47:59.3519390Z copying torch/include/ATen/ops/affine_grid_generator_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3520520Z copying torch/include/ATen/ops/sinc_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3521930Z copying torch/include/ATen/ops/elu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3523100Z copying torch/include/ATen/ops/unique_dim_consecutive_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3524400Z copying torch/include/ATen/ops/nll_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3525760Z copying torch/include/ATen/ops/quantized_lstm_cell_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3527180Z copying torch/include/ATen/ops/quantize_per_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3528350Z copying torch/include/ATen/ops/avg_pool2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3529640Z copying torch/include/ATen/ops/unsqueeze_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3531020Z copying torch/include/ATen/ops/random_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3532280Z copying torch/include/ATen/ops/repeat_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3533520Z copying torch/include/ATen/ops/fractional_max_pool2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3534760Z copying torch/include/ATen/ops/linalg_matrix_rank_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3536340Z copying torch/include/ATen/ops/norm_except_dim_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3537580Z copying torch/include/ATen/ops/output_nr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3538810Z copying torch/include/ATen/ops/slow_conv3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3540050Z copying torch/include/ATen/ops/not_equal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3541370Z copying torch/include/ATen/ops/cholesky_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3542620Z copying torch/include/ATen/ops/meshgrid.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3543880Z copying torch/include/ATen/ops/_softmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3545090Z copying torch/include/ATen/ops/sym_storage_offset_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3546370Z copying torch/include/ATen/ops/isneginf_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3547630Z copying torch/include/ATen/ops/hardsigmoid_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3548830Z copying torch/include/ATen/ops/unsqueeze_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3550030Z copying torch/include/ATen/ops/rand_like.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3551390Z copying torch/include/ATen/ops/dsplit_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3552540Z copying torch/include/ATen/ops/mse_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3553860Z copying torch/include/ATen/ops/_print_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3555160Z copying torch/include/ATen/ops/_foreach_maximum_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3556410Z copying torch/include/ATen/ops/grid_sampler_2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3557640Z copying torch/include/ATen/ops/arccosh_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3558830Z copying torch/include/ATen/ops/float_power_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3560130Z copying torch/include/ATen/ops/upsample_bilinear2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3561500Z copying torch/include/ATen/ops/lstm_mps_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3562630Z copying torch/include/ATen/ops/slow_conv_dilated3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3563990Z copying torch/include/ATen/ops/maximum_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3565330Z copying torch/include/ATen/ops/adaptive_max_pool3d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3566500Z copying torch/include/ATen/ops/multi_margin_loss_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3567720Z copying torch/include/ATen/ops/_sparse_semi_structured_tile_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3569110Z 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-08-14T20:47:59.3570450Z 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-08-14T20:47:59.3571590Z copying torch/include/ATen/ops/cudnn_batch_norm_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3577450Z copying torch/include/ATen/ops/cosh_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3577930Z 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-08-14T20:47:59.3578170Z copying torch/include/ATen/ops/asinh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3578520Z copying torch/include/ATen/ops/linalg_pinv_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3578750Z copying torch/include/ATen/ops/tanh_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3579790Z copying torch/include/ATen/ops/log_softmax_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3581280Z copying torch/include/ATen/ops/_masked_scale.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3582620Z 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-08-14T20:47:59.3583960Z 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-08-14T20:47:59.3585210Z copying torch/include/ATen/ops/diff_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3586700Z copying torch/include/ATen/ops/fmax_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3588190Z copying torch/include/ATen/ops/grid_sampler_2d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3589610Z copying torch/include/ATen/ops/item_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3591080Z copying torch/include/ATen/ops/eye_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3592510Z 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-08-14T20:47:59.3593910Z copying torch/include/ATen/ops/reflection_pad2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3595200Z copying torch/include/ATen/ops/ceil_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3596790Z 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-08-14T20:47:59.3598110Z copying torch/include/ATen/ops/native_dropout_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3599470Z copying torch/include/ATen/ops/sym_storage_offset.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3600690Z copying torch/include/ATen/ops/_unsafe_masked_index_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3601970Z copying torch/include/ATen/ops/fmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3603240Z copying torch/include/ATen/ops/pixel_unshuffle_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3604580Z copying torch/include/ATen/ops/replication_pad3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3605820Z copying torch/include/ATen/ops/_log_softmax_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3607130Z copying torch/include/ATen/ops/_masked_softmax_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3608480Z 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-08-14T20:47:59.3609860Z 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-08-14T20:47:59.3611020Z copying torch/include/ATen/ops/and.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3612300Z copying torch/include/ATen/ops/slow_conv_dilated2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3613590Z copying torch/include/ATen/ops/_sparse_csr_sum_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3614830Z copying torch/include/ATen/ops/replication_pad3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3616250Z copying torch/include/ATen/ops/nuclear_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3617470Z copying torch/include/ATen/ops/gru_cell_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3618700Z copying torch/include/ATen/ops/logaddexp2_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3620310Z copying torch/include/ATen/ops/cholesky_solve_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3621790Z copying torch/include/ATen/ops/index_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3623000Z copying torch/include/ATen/ops/searchsorted_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3624300Z copying torch/include/ATen/ops/addmv_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3625650Z 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-08-14T20:47:59.3626820Z copying torch/include/ATen/ops/masked_scatter_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3628140Z 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-08-14T20:47:59.3629430Z 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-08-14T20:47:59.3630610Z copying torch/include/ATen/ops/clamp_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3632000Z copying torch/include/ATen/ops/layer_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3633150Z copying torch/include/ATen/ops/hann_window.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3634400Z copying torch/include/ATen/ops/fbgemm_linear_int8_weight.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3635740Z copying torch/include/ATen/ops/amin_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3636930Z copying torch/include/ATen/ops/log1p_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3638120Z copying torch/include/ATen/ops/_cast_Int.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3639380Z copying torch/include/ATen/ops/nextafter_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3640670Z copying torch/include/ATen/ops/_conj_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3641820Z copying torch/include/ATen/ops/erf_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3643070Z copying torch/include/ATen/ops/as_strided_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3644340Z copying torch/include/ATen/ops/_flash_attention_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3645560Z copying torch/include/ATen/ops/mkldnn_rnn_layer_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3646950Z copying torch/include/ATen/ops/_histogramdd_bin_edges_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3648110Z copying torch/include/ATen/ops/isneginf_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3649370Z copying torch/include/ATen/ops/reflection_pad1d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3650650Z 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-08-14T20:47:59.3651840Z copying torch/include/ATen/ops/concatenate_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3653070Z copying torch/include/ATen/ops/bitwise_or_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3654370Z copying torch/include/ATen/ops/lerp_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3655560Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3656830Z copying torch/include/ATen/ops/clamp_min_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3658080Z copying torch/include/ATen/ops/argmin_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3659320Z copying torch/include/ATen/ops/_index_put_impl_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3660610Z copying torch/include/ATen/ops/unique_consecutive_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3661770Z copying torch/include/ATen/ops/erfc_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3663130Z 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-08-14T20:47:59.3664360Z copying torch/include/ATen/ops/lstm_mps_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3665580Z copying torch/include/ATen/ops/range.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3666820Z copying torch/include/ATen/ops/select_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3668080Z copying torch/include/ATen/ops/_foreach_erf_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3669380Z copying torch/include/ATen/ops/native_layer_norm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3670600Z copying torch/include/ATen/ops/sparse_resize_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3671840Z copying torch/include/ATen/ops/mkldnn_linear_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3673020Z copying torch/include/ATen/ops/sinc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3674320Z copying torch/include/ATen/ops/_conj_physical.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3675530Z copying torch/include/ATen/ops/square_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3676780Z copying torch/include/ATen/ops/copysign_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3678030Z copying torch/include/ATen/ops/amin_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3679430Z 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-08-14T20:47:59.3680660Z copying torch/include/ATen/ops/_foreach_tanh_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3681920Z copying torch/include/ATen/ops/margin_ranking_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3683140Z copying torch/include/ATen/ops/special_psi_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3684440Z copying torch/include/ATen/ops/special_ndtri_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3685740Z copying torch/include/ATen/ops/to_sparse.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3687030Z 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-08-14T20:47:59.3688190Z copying torch/include/ATen/ops/_foreach_erfc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3689470Z copying torch/include/ATen/ops/selu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3690780Z copying torch/include/ATen/ops/_cdist_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3692140Z copying torch/include/ATen/ops/sparse_dim_sparsecsrmps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3693380Z copying torch/include/ATen/ops/log_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3694650Z copying torch/include/ATen/ops/range_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3695880Z copying torch/include/ATen/ops/aminmax_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3697140Z copying torch/include/ATen/ops/linalg_solve_triangular.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3698480Z copying torch/include/ATen/ops/xlogy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3699740Z copying torch/include/ATen/ops/cov.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3700960Z 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-08-14T20:47:59.3702140Z copying torch/include/ATen/ops/relu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3703430Z copying torch/include/ATen/ops/unique_dim_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3704940Z copying torch/include/ATen/ops/_rowwise_prune_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3706020Z copying torch/include/ATen/ops/min.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3707310Z copying torch/include/ATen/ops/chain_matmul_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3708590Z copying torch/include/ATen/ops/tile_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3709820Z copying torch/include/ATen/ops/linalg_ldl_factor_ex_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3711100Z copying torch/include/ATen/ops/_foreach_reciprocal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3712390Z copying torch/include/ATen/ops/hardshrink_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3713620Z copying torch/include/ATen/ops/unique_dim_consecutive.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3714830Z copying torch/include/ATen/ops/is_nonzero_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3716120Z copying torch/include/ATen/ops/_prelu_kernel_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3717400Z copying torch/include/ATen/ops/cudnn_batch_norm_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3718640Z copying torch/include/ATen/ops/kthvalue_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3719880Z copying torch/include/ATen/ops/linspace_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3721230Z copying torch/include/ATen/ops/stride_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3722400Z copying torch/include/ATen/ops/slice_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3723770Z copying torch/include/ATen/ops/_test_parallel_materialize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3725070Z 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-08-14T20:47:59.3726520Z copying torch/include/ATen/ops/bitwise_right_shift_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3727810Z copying torch/include/ATen/ops/_test_ambiguous_defaults_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3729000Z copying torch/include/ATen/ops/int_repr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3730200Z copying torch/include/ATen/ops/ne_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3731530Z copying torch/include/ATen/ops/inverse_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3732880Z 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-08-14T20:47:59.3734110Z copying torch/include/ATen/ops/upsample_nearest2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3735350Z copying torch/include/ATen/ops/_foreach_mul.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3736640Z copying torch/include/ATen/ops/upsample_linear1d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3738080Z 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-08-14T20:47:59.3739130Z copying torch/include/ATen/ops/_int_mm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3740400Z copying torch/include/ATen/ops/upsample_linear1d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3741760Z copying torch/include/ATen/ops/upsample_bilinear2d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3743110Z 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-08-14T20:47:59.3744340Z copying torch/include/ATen/ops/fill.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3745610Z 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-08-14T20:47:59.3746920Z 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-08-14T20:47:59.3748240Z copying torch/include/ATen/ops/squeeze_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3749550Z copying torch/include/ATen/ops/alpha_dropout_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3750680Z copying torch/include/ATen/ops/log1p_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3751950Z copying torch/include/ATen/ops/triplet_margin_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3753130Z copying torch/include/ATen/ops/lcm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3754430Z copying torch/include/ATen/ops/argwhere_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3755690Z copying torch/include/ATen/ops/upsample_trilinear3d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3756920Z copying torch/include/ATen/ops/_foreach_frac.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3758160Z copying torch/include/ATen/ops/orgqr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3759490Z copying torch/include/ATen/ops/upsample_trilinear3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3760770Z copying torch/include/ATen/ops/mps_convolution_transpose_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3762020Z copying torch/include/ATen/ops/_foreach_sub_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3763260Z copying torch/include/ATen/ops/sgn_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3764540Z copying torch/include/ATen/ops/nanmedian_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3765910Z copying torch/include/ATen/ops/crow_indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3767020Z copying torch/include/ATen/ops/fft_ihfft_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3768260Z copying torch/include/ATen/ops/put_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3769590Z copying torch/include/ATen/ops/_standard_gamma_grad_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3770770Z copying torch/include/ATen/ops/std_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3772110Z copying torch/include/ATen/ops/cummax_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3773430Z copying torch/include/ATen/ops/choose_qparams_optimized_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3774560Z copying torch/include/ATen/ops/lerp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3775800Z copying torch/include/ATen/ops/clamp_max.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3777050Z copying torch/include/ATen/ops/_int_mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3778240Z copying torch/include/ATen/ops/var_mean_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3779620Z 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-08-14T20:47:59.3780810Z copying torch/include/ATen/ops/arctan_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3782120Z copying torch/include/ATen/ops/_embedding_bag_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3783310Z copying torch/include/ATen/ops/div_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3784580Z copying torch/include/ATen/ops/round_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3785880Z copying torch/include/ATen/ops/grid_sampler_3d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3787020Z copying torch/include/ATen/ops/hypot_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3788270Z copying torch/include/ATen/ops/nll_loss2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3789490Z copying torch/include/ATen/ops/to_mkldnn_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3790790Z 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-08-14T20:47:59.3792000Z copying torch/include/ATen/ops/empty_permuted_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3793400Z copying torch/include/ATen/ops/upsample_bicubic2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3794660Z 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-08-14T20:47:59.3795900Z copying torch/include/ATen/ops/lt_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3797240Z copying torch/include/ATen/ops/linalg_householder_product_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3798450Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3799830Z copying torch/include/ATen/ops/cudnn_grid_sampler_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3801320Z copying torch/include/ATen/ops/select_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3802560Z 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-08-14T20:47:59.3803660Z copying torch/include/ATen/ops/slice_scatter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3804990Z copying torch/include/ATen/ops/_sparse_semi_structured_apply_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3806260Z copying torch/include/ATen/ops/upsample_linear1d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3807360Z copying torch/include/ATen/ops/_nnz.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3808610Z copying torch/include/ATen/ops/grid_sampler_2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3810030Z copying torch/include/ATen/ops/special_erfc_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3811300Z 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-08-14T20:47:59.3812490Z copying torch/include/ATen/ops/sparse_compressed_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3813850Z 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-08-14T20:47:59.3815080Z copying torch/include/ATen/ops/_grouped_mm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3816320Z copying torch/include/ATen/ops/hamming_window_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3817590Z copying torch/include/ATen/ops/nll_loss_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3818880Z copying torch/include/ATen/ops/zeros_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3820230Z copying torch/include/ATen/ops/refine_names_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3821490Z copying torch/include/ATen/ops/special_modified_bessel_k0_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3822700Z copying torch/include/ATen/ops/_convolution.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3823990Z copying torch/include/ATen/ops/special_bessel_j1.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3825270Z copying torch/include/ATen/ops/conv3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3826490Z copying torch/include/ATen/ops/_conv_depthwise2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3827890Z copying torch/include/ATen/ops/_neg_view_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3829120Z copying torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3830430Z 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-08-14T20:47:59.3831610Z copying torch/include/ATen/ops/chunk_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3833080Z copying torch/include/ATen/ops/bitwise_or_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3834290Z copying torch/include/ATen/ops/upsample_nearest2d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3835550Z copying torch/include/ATen/ops/special_modified_bessel_k1_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3836800Z copying torch/include/ATen/ops/sgn_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3838120Z 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-08-14T20:47:59.3839540Z 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-08-14T20:47:59.3840660Z copying torch/include/ATen/ops/split_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3841930Z copying torch/include/ATen/ops/linalg_cholesky_ex_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3843090Z copying torch/include/ATen/ops/topk_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3844450Z copying torch/include/ATen/ops/special_ndtr_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3845590Z copying torch/include/ATen/ops/sym_numel_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3846910Z copying torch/include/ATen/ops/leaky_relu_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3848130Z copying torch/include/ATen/ops/mish_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3849360Z copying torch/include/ATen/ops/_values_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3850700Z copying torch/include/ATen/ops/_propagate_xla_data_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3851970Z copying torch/include/ATen/ops/diff_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3853170Z copying torch/include/ATen/ops/_coalesced_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3854410Z copying torch/include/ATen/ops/bitwise_or_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3855710Z copying torch/include/ATen/ops/sym_numel_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3857090Z 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-08-14T20:47:59.3858250Z copying torch/include/ATen/ops/log_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3859460Z copying torch/include/ATen/ops/_to_sparse.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3860860Z 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-08-14T20:47:59.3862120Z copying torch/include/ATen/ops/_logcumsumexp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3863330Z copying torch/include/ATen/ops/pow_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3864680Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3865830Z copying torch/include/ATen/ops/_fused_adagrad_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3867050Z copying torch/include/ATen/ops/_foreach_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3868390Z copying torch/include/ATen/ops/adaptive_avg_pool2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3869620Z copying torch/include/ATen/ops/linalg_solve_triangular_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3870860Z copying torch/include/ATen/ops/conj_physical_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3872070Z copying torch/include/ATen/ops/silu_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3873230Z copying torch/include/ATen/ops/asin.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3874550Z copying torch/include/ATen/ops/multinomial_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3875820Z copying torch/include/ATen/ops/_spsolve_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3877120Z copying torch/include/ATen/ops/trace_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3878280Z copying torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3879630Z copying torch/include/ATen/ops/squeeze_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3880880Z copying torch/include/ATen/ops/sspaddmm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3882100Z copying torch/include/ATen/ops/maximum_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3883520Z copying torch/include/ATen/ops/_batch_norm_impl_index.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3884670Z copying torch/include/ATen/ops/linalg_inv_ex_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3885900Z copying torch/include/ATen/ops/linalg_eigh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3887150Z 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-08-14T20:47:59.3888360Z copying torch/include/ATen/ops/quantized_max_pool3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3889630Z copying torch/include/ATen/ops/_fused_sgd_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3890990Z 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-08-14T20:47:59.3892210Z copying torch/include/ATen/ops/_cummax_helper_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3893470Z copying torch/include/ATen/ops/special_i1_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3894860Z copying torch/include/ATen/ops/conj_physical_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3896110Z copying torch/include/ATen/ops/sparse_compressed_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3897480Z copying torch/include/ATen/ops/cudnn_grid_sampler_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3898750Z copying torch/include/ATen/ops/empty_strided_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3900010Z copying torch/include/ATen/ops/sub_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3901180Z copying torch/include/ATen/ops/_cast_Half.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3902520Z copying torch/include/ATen/ops/nan_to_num_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3903940Z 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-08-14T20:47:59.3905140Z copying torch/include/ATen/ops/_functional_assert_async_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3906360Z copying torch/include/ATen/ops/elu_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3907570Z copying torch/include/ATen/ops/fmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3908880Z copying torch/include/ATen/ops/_to_sparse_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3910150Z copying torch/include/ATen/ops/addr_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3911450Z copying torch/include/ATen/ops/threshold_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3912640Z copying torch/include/ATen/ops/not_equal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3913990Z copying torch/include/ATen/ops/xlogy_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3915180Z copying torch/include/ATen/ops/special_exp2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3916610Z 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-08-14T20:47:59.3917800Z copying torch/include/ATen/ops/special_bessel_j0_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3919100Z copying torch/include/ATen/ops/_mixed_dtypes_linear_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3920360Z copying torch/include/ATen/ops/bitwise_left_shift_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3921630Z copying torch/include/ATen/ops/view_as_complex_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3922880Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3924200Z copying torch/include/ATen/ops/special_chebyshev_polynomial_u.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3925450Z copying torch/include/ATen/ops/_linalg_eigvals_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3926670Z copying torch/include/ATen/ops/special_bessel_j1_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3927910Z copying torch/include/ATen/ops/_unsafe_index_put.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3929210Z copying torch/include/ATen/ops/row_indices_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3930470Z copying torch/include/ATen/ops/multiply_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3931730Z copying torch/include/ATen/ops/kthvalue_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3932910Z copying torch/include/ATen/ops/_dim_arange_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3934280Z copying torch/include/ATen/ops/rand_like_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3935430Z copying torch/include/ATen/ops/to_sparse_csc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3936700Z copying torch/include/ATen/ops/indices_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3937980Z copying torch/include/ATen/ops/sort_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3939250Z copying torch/include/ATen/ops/upsample_nearest2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3940540Z 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-08-14T20:47:59.3941780Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3942990Z copying torch/include/ATen/ops/equal_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3944330Z copying torch/include/ATen/ops/adaptive_avg_pool3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3945420Z copying torch/include/ATen/ops/xor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3946690Z copying torch/include/ATen/ops/_nnz_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3947900Z copying torch/include/ATen/ops/special_softmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3949150Z copying torch/include/ATen/ops/scatter_reduce.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3950360Z copying torch/include/ATen/ops/slogdet_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3951840Z copying torch/include/ATen/ops/ccol_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3952940Z copying torch/include/ATen/ops/std_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3954320Z 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-08-14T20:47:59.3955540Z copying torch/include/ATen/ops/_foreach_log1p_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3956820Z copying torch/include/ATen/ops/_cudnn_rnn_flatten_weight_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3958220Z 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-08-14T20:47:59.3959630Z copying torch/include/ATen/ops/floor_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3960840Z copying torch/include/ATen/ops/fractional_max_pool2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3961990Z copying torch/include/ATen/ops/hspmm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3963420Z copying torch/include/ATen/ops/vdot_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3964560Z copying torch/include/ATen/ops/take_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3965870Z copying torch/include/ATen/ops/segment_reduce_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3967260Z 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-08-14T20:47:59.3968510Z copying torch/include/ATen/ops/_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3969730Z copying torch/include/ATen/ops/squeeze_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3971100Z 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-08-14T20:47:59.3972350Z copying torch/include/ATen/ops/less_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3973670Z copying torch/include/ATen/ops/_shape_as_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3974900Z copying torch/include/ATen/ops/mv_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3976300Z 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-08-14T20:47:59.3977820Z copying torch/include/ATen/ops/special_legendre_polynomial_p_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3979190Z 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-08-14T20:47:59.3980690Z copying torch/include/ATen/ops/threshold_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3982080Z copying torch/include/ATen/ops/clamp_min_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3983590Z 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-08-14T20:47:59.3985050Z copying torch/include/ATen/ops/mkldnn_max_pool3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3986460Z copying torch/include/ATen/ops/_mps_convolution_transpose_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3988010Z copying torch/include/ATen/ops/cat_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3989380Z copying torch/include/ATen/ops/swapdims_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3990960Z copying torch/include/ATen/ops/rrelu_with_noise_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3992350Z 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-08-14T20:47:59.3993600Z copying torch/include/ATen/ops/_to_sparse_csc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3995050Z copying torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3996260Z copying torch/include/ATen/ops/rnn_tanh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3997580Z copying torch/include/ATen/ops/hardtanh_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.3998990Z copying torch/include/ATen/ops/special_multigammaln_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4000140Z 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-08-14T20:47:59.4001610Z copying torch/include/ATen/ops/amax_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4002950Z copying torch/include/ATen/ops/tan_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4004110Z copying torch/include/ATen/ops/to_dense_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4005330Z copying torch/include/ATen/ops/reflection_pad3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4006540Z copying torch/include/ATen/ops/nan_to_num_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4007850Z copying torch/include/ATen/ops/_cummin_helper_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4009220Z copying torch/include/ATen/ops/_unique_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4010590Z copying torch/include/ATen/ops/softshrink_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4011820Z copying torch/include/ATen/ops/_efficientzerotensor_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4013030Z copying torch/include/ATen/ops/log10_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4014330Z copying torch/include/ATen/ops/_test_parallel_materialize_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4015810Z 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-08-14T20:47:59.4017010Z copying torch/include/ATen/ops/bitwise_left_shift.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4018230Z copying torch/include/ATen/ops/_pad_circular_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4019600Z copying torch/include/ATen/ops/mm_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4020780Z copying torch/include/ATen/ops/_dyn_quant_pack_4bit_weight.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4022100Z copying torch/include/ATen/ops/upsample_nearest3d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4023530Z copying torch/include/ATen/ops/frobenius_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4024940Z copying torch/include/ATen/ops/count_nonzero_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4026140Z copying torch/include/ATen/ops/rsub_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4027310Z copying torch/include/ATen/ops/linalg_qr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4028620Z copying torch/include/ATen/ops/slow_conv_transpose2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4029880Z copying torch/include/ATen/ops/_linalg_det_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4031400Z copying torch/include/ATen/ops/tanh_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4032750Z copying torch/include/ATen/ops/_foreach_lgamma_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4033910Z copying torch/include/ATen/ops/isin_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4035150Z copying torch/include/ATen/ops/ne_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4036500Z copying torch/include/ATen/ops/_linalg_slogdet_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4037840Z copying torch/include/ATen/ops/multinomial_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4039310Z copying torch/include/ATen/ops/_foreach_max_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4040500Z copying torch/include/ATen/ops/tan_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4041830Z copying torch/include/ATen/ops/multinomial_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4043280Z copying torch/include/ATen/ops/new_empty_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4044410Z copying torch/include/ATen/ops/_prelu_kernel_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4045820Z copying torch/include/ATen/ops/all_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4047130Z copying torch/include/ATen/ops/rms_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4048410Z copying torch/include/ATen/ops/to_dense_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4049850Z copying torch/include/ATen/ops/fractional_max_pool3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4051400Z copying torch/include/ATen/ops/flip_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4052450Z copying torch/include/ATen/ops/svd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4053770Z copying torch/include/ATen/ops/mm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4055050Z copying torch/include/ATen/ops/mkldnn_max_pool2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4056380Z copying torch/include/ATen/ops/fft_rfft_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4057550Z copying torch/include/ATen/ops/special_polygamma_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4058800Z copying torch/include/ATen/ops/rshift_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4060250Z copying torch/include/ATen/ops/log2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4061480Z copying torch/include/ATen/ops/special_i1e_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4062810Z copying torch/include/ATen/ops/_fused_adam_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4064090Z copying torch/include/ATen/ops/squeeze_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4065460Z copying torch/include/ATen/ops/_thnn_fused_gru_cell_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4066740Z copying torch/include/ATen/ops/einsum_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4068090Z copying torch/include/ATen/ops/is_leaf_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4069310Z copying torch/include/ATen/ops/maximum_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4070540Z copying torch/include/ATen/ops/asinh_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4071760Z copying torch/include/ATen/ops/broadcast_to_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4073070Z copying torch/include/ATen/ops/_nested_get_lengths_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4074430Z copying torch/include/ATen/ops/_sparse_broadcast_to_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4075550Z copying torch/include/ATen/ops/tril_indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4076810Z copying torch/include/ATen/ops/sqrt_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4078050Z copying torch/include/ATen/ops/_transformer_encoder_layer_fwd_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4079310Z copying torch/include/ATen/ops/randint_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4080530Z copying torch/include/ATen/ops/slogdet.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4081990Z 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-08-14T20:47:59.4083130Z copying torch/include/ATen/ops/_foreach_erf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4084390Z copying torch/include/ATen/ops/_functional_assert_scalar.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4085550Z copying torch/include/ATen/ops/_lazy_clone.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4086840Z copying torch/include/ATen/ops/mps_convolution_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4088090Z 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-08-14T20:47:59.4089430Z copying torch/include/ATen/ops/equal_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4090640Z copying torch/include/ATen/ops/empty_quantized_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4091880Z copying torch/include/ATen/ops/special_digamma.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4093090Z copying torch/include/ATen/ops/fractional_max_pool3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4094450Z copying torch/include/ATen/ops/unfold_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4095730Z copying torch/include/ATen/ops/_flash_attention_forward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4096960Z copying torch/include/ATen/ops/all_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4098190Z copying torch/include/ATen/ops/cross.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4099570Z copying torch/include/ATen/ops/_convolution_double_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4100770Z copying torch/include/ATen/ops/gelu_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4102100Z 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-08-14T20:47:59.4103460Z 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-08-14T20:47:59.4104640Z copying torch/include/ATen/ops/cudnn_grid_sampler_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4105860Z copying torch/include/ATen/ops/fmin_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4107100Z copying torch/include/ATen/ops/log1p.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4108390Z copying torch/include/ATen/ops/less.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4109630Z copying torch/include/ATen/ops/tensordot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4111040Z copying torch/include/ATen/ops/index_add_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4112240Z copying torch/include/ATen/ops/_sample_dirichlet_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4113570Z copying torch/include/ATen/ops/_gather_sparse_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4114730Z copying torch/include/ATen/ops/log2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4116050Z copying torch/include/ATen/ops/dot_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4117290Z copying torch/include/ATen/ops/linalg_cholesky_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4118490Z copying torch/include/ATen/ops/div_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4119880Z copying torch/include/ATen/ops/log10_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4121120Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4122230Z copying torch/include/ATen/ops/nll_loss_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4123530Z copying torch/include/ATen/ops/bitwise_not_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4124860Z copying torch/include/ATen/ops/_indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4126180Z copying torch/include/ATen/ops/upsample_bicubic2d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4127480Z copying torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4128790Z copying torch/include/ATen/ops/slow_conv_dilated2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4130070Z copying torch/include/ATen/ops/_foreach_acos_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4131290Z copying torch/include/ATen/ops/gradient_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4132550Z copying torch/include/ATen/ops/conv_transpose1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4133750Z copying torch/include/ATen/ops/or_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4135080Z copying torch/include/ATen/ops/smooth_l1_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4136370Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4137690Z copying torch/include/ATen/ops/_fused_sgd_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4138930Z copying torch/include/ATen/ops/_fused_rms_norm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4140140Z copying torch/include/ATen/ops/median_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4141580Z copying torch/include/ATen/ops/sym_numel_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4142870Z copying torch/include/ATen/ops/slice_scatter_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4144110Z copying torch/include/ATen/ops/atleast_3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4145290Z copying torch/include/ATen/ops/_chunk_cat_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4146610Z copying torch/include/ATen/ops/_functional_sym_constrain_range_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4147810Z copying torch/include/ATen/ops/im2col.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4149230Z copying torch/include/ATen/ops/upsample_nearest3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4150430Z copying torch/include/ATen/ops/adaptive_max_pool2d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4151670Z copying torch/include/ATen/ops/_linalg_eigh_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4152950Z copying torch/include/ATen/ops/_mps_convolution_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4154240Z copying torch/include/ATen/ops/fractional_max_pool2d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4155430Z copying torch/include/ATen/ops/retains_grad_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4156770Z 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-08-14T20:47:59.4158000Z copying torch/include/ATen/ops/sign_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4159230Z copying torch/include/ATen/ops/empty_like.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4160430Z copying torch/include/ATen/ops/gelu_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4161740Z copying torch/include/ATen/ops/upsample_linear1d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4162990Z copying torch/include/ATen/ops/elu_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4164270Z copying torch/include/ATen/ops/output_nr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4165440Z copying torch/include/ATen/ops/sqrt_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4166650Z copying torch/include/ATen/ops/linalg_lstsq.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4168950Z copying torch/include/ATen/ops/count_nonzero.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4169550Z copying torch/include/ATen/ops/feature_alpha_dropout.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4170680Z copying torch/include/ATen/ops/contiguous_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4171870Z copying torch/include/ATen/ops/softplus_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4173140Z copying torch/include/ATen/ops/trunc_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4174460Z copying torch/include/ATen/ops/_cummin_helper_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4175810Z copying torch/include/ATen/ops/atan_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4177120Z copying torch/include/ATen/ops/conv_depthwise3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4178290Z copying torch/include/ATen/ops/as_strided_scatter_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4180000Z copying torch/include/ATen/ops/special_i0e_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4181430Z copying torch/include/ATen/ops/norm_except_dim_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4182760Z copying torch/include/ATen/ops/sort_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4184190Z copying torch/include/ATen/ops/logit_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4185430Z copying torch/include/ATen/ops/_stack_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4186660Z copying torch/include/ATen/ops/fft_hfftn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4188020Z copying torch/include/ATen/ops/quantized_rnn_relu_cell_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4189340Z copying torch/include/ATen/ops/quantize_per_tensor_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4190520Z copying torch/include/ATen/ops/view_as_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4191800Z copying torch/include/ATen/ops/grid_sampler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4193050Z copying torch/include/ATen/ops/linalg_lu_solve.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4198890Z copying torch/include/ATen/ops/divide.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4199490Z copying torch/include/ATen/ops/_unsafe_masked_index.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4200250Z copying torch/include/ATen/ops/special_gammainc_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4200900Z copying torch/include/ATen/ops/is_neg.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4201450Z copying torch/include/ATen/ops/replication_pad2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4202040Z copying torch/include/ATen/ops/_resize_output_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4202620Z copying torch/include/ATen/ops/_fused_adamw_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4203180Z copying torch/include/ATen/ops/slice_inverse_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4204350Z copying torch/include/ATen/ops/hardswish_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4205640Z copying torch/include/ATen/ops/fft_ihfft2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4206950Z copying torch/include/ATen/ops/_cufft_get_plan_cache_size.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4208180Z copying torch/include/ATen/ops/values_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4209400Z copying torch/include/ATen/ops/feature_dropout.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4210590Z copying torch/include/ATen/ops/resize_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4211920Z copying torch/include/ATen/ops/adaptive_max_pool2d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4213090Z copying torch/include/ATen/ops/gt_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4214430Z copying torch/include/ATen/ops/slice_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4215640Z copying torch/include/ATen/ops/special_xlog1py_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4216980Z copying torch/include/ATen/ops/linalg_inv_ex_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4218380Z copying torch/include/ATen/ops/pin_memory_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4219640Z copying torch/include/ATen/ops/tril_indices_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4220930Z copying torch/include/ATen/ops/threshold_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4222270Z copying torch/include/ATen/ops/sparse_bsr_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4223390Z copying torch/include/ATen/ops/max_pool2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4224650Z copying torch/include/ATen/ops/tensor_split_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4225880Z copying torch/include/ATen/ops/diagonal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4227180Z copying torch/include/ATen/ops/std_mean_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4228460Z copying torch/include/ATen/ops/sparse_bsc_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4229800Z copying torch/include/ATen/ops/bitwise_left_shift_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4231060Z copying torch/include/ATen/ops/special_i0e_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4232300Z copying torch/include/ATen/ops/expand_as.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4233410Z copying torch/include/ATen/ops/adaptive_max_pool2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4234680Z copying torch/include/ATen/ops/le_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4235900Z copying torch/include/ATen/ops/batch_norm_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4237200Z 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-08-14T20:47:59.4238430Z copying torch/include/ATen/ops/hardshrink_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4239730Z copying torch/include/ATen/ops/addmv_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4240840Z copying torch/include/ATen/ops/to_sparse_bsc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4242240Z copying torch/include/ATen/ops/max_pool2d_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4243400Z copying torch/include/ATen/ops/_sobol_engine_scramble_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4244720Z copying torch/include/ATen/ops/slogdet_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4245960Z copying torch/include/ATen/ops/native_dropout_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4247180Z copying torch/include/ATen/ops/hardswish_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4248420Z copying torch/include/ATen/ops/lshift_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4249590Z copying torch/include/ATen/ops/set_data_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4250840Z copying torch/include/ATen/ops/_linalg_det_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4252160Z copying torch/include/ATen/ops/alias_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4253330Z copying torch/include/ATen/ops/tril_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4254570Z copying torch/include/ATen/ops/_scaled_dot_product_efficient_attention.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4255860Z 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-08-14T20:47:59.4257120Z copying torch/include/ATen/ops/special_log_ndtr_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4258380Z copying torch/include/ATen/ops/linalg_cholesky_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4259560Z copying torch/include/ATen/ops/sinh_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4260810Z copying torch/include/ATen/ops/sub_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4262080Z copying torch/include/ATen/ops/glu_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4263310Z copying torch/include/ATen/ops/fmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4264580Z copying torch/include/ATen/ops/_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4265830Z copying torch/include/ATen/ops/cudnn_batch_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4267050Z copying torch/include/ATen/ops/lcm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4268320Z copying torch/include/ATen/ops/atan_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4269650Z 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-08-14T20:47:59.4270790Z copying torch/include/ATen/ops/_unique2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4272300Z copying torch/include/ATen/ops/reshape_as_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4273490Z copying torch/include/ATen/ops/_sparse_csr_tensor_unsafe.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4274840Z copying torch/include/ATen/ops/new_full_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4276220Z copying torch/include/ATen/ops/_fused_sdp_choice_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4277540Z copying torch/include/ATen/ops/logspace.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4278960Z copying torch/include/ATen/ops/replication_pad3d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4280350Z copying torch/include/ATen/ops/special_bessel_y0_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4281650Z copying torch/include/ATen/ops/to_mkldnn_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4282970Z copying torch/include/ATen/ops/linalg_eigvalsh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4284450Z copying torch/include/ATen/ops/index_select_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4285600Z copying torch/include/ATen/ops/linalg_inv_ex_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4286810Z copying torch/include/ATen/ops/unsqueeze.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4288060Z copying torch/include/ATen/ops/isinf_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4289430Z copying torch/include/ATen/ops/_foreach_max.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4290640Z copying torch/include/ATen/ops/floor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4291850Z copying torch/include/ATen/ops/where_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4293230Z copying torch/include/ATen/ops/sigmoid_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4294450Z copying torch/include/ATen/ops/special_log_softmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4295720Z copying torch/include/ATen/ops/_addmm_activation_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4296930Z copying torch/include/ATen/ops/clamp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4298220Z copying torch/include/ATen/ops/special_hermite_polynomial_h.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4299400Z copying torch/include/ATen/ops/set_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4300720Z copying torch/include/ATen/ops/bucketize_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4301900Z copying torch/include/ATen/ops/asinh_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4303280Z copying torch/include/ATen/ops/logsumexp_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4304550Z copying torch/include/ATen/ops/chunk_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4305770Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4307070Z copying torch/include/ATen/ops/_conj_physical_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4308290Z copying torch/include/ATen/ops/_sparse_sum_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4309640Z 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-08-14T20:47:59.4310860Z copying torch/include/ATen/ops/alias.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4312430Z copying torch/include/ATen/ops/_linalg_eigvals_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4313670Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4314920Z copying torch/include/ATen/ops/fft_fft_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4316340Z copying torch/include/ATen/ops/constant_pad_nd_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4317820Z copying torch/include/ATen/ops/special_i1e_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4319300Z copying torch/include/ATen/ops/replication_pad2d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4320610Z copying torch/include/ATen/ops/poisson.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4321940Z copying torch/include/ATen/ops/special_hermite_polynomial_h_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4323300Z copying torch/include/ATen/ops/softplus_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4324680Z copying torch/include/ATen/ops/replication_pad1d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4326060Z copying torch/include/ATen/ops/chain_matmul_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4327340Z copying torch/include/ATen/ops/nan_to_num_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4328700Z copying torch/include/ATen/ops/adaptive_avg_pool1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4329990Z copying torch/include/ATen/ops/logspace_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4331310Z copying torch/include/ATen/ops/mT_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4332680Z copying torch/include/ATen/ops/conj_physical_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4333920Z copying torch/include/ATen/ops/heaviside.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4335200Z copying torch/include/ATen/ops/arccosh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4336520Z copying torch/include/ATen/ops/_mkldnn_reshape.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4337790Z copying torch/include/ATen/ops/linalg_slogdet_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4339080Z copying torch/include/ATen/ops/upsample_bicubic2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4340400Z copying torch/include/ATen/ops/special_bessel_j1_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4341820Z copying torch/include/ATen/ops/addcdiv_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4343190Z copying torch/include/ATen/ops/upsample_nearest3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4344640Z copying torch/include/ATen/ops/_cast_Double_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4346100Z copying torch/include/ATen/ops/histogramdd_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4347370Z copying torch/include/ATen/ops/aminmax_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4348760Z copying torch/include/ATen/ops/hash_tensor_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4350230Z copying torch/include/ATen/ops/lstm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4351570Z copying torch/include/ATen/ops/_linalg_det_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4352880Z copying torch/include/ATen/ops/conv_transpose2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4354280Z copying torch/include/ATen/ops/_coalesce_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4356280Z copying torch/include/ATen/ops/_triton_scaled_dot_attention_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4357720Z copying torch/include/ATen/ops/batch_norm_backward_elemt_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4359320Z copying torch/include/ATen/ops/_saturate_weight_to_fp16_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4360640Z copying torch/include/ATen/ops/log_sigmoid_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4362200Z copying torch/include/ATen/ops/tril_indices_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4363620Z copying torch/include/ATen/ops/special_i1_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4364880Z copying torch/include/ATen/ops/index_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4366210Z copying torch/include/ATen/ops/equal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4367560Z copying torch/include/ATen/ops/_unique2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4368910Z copying torch/include/ATen/ops/adaptive_avg_pool2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4370310Z copying torch/include/ATen/ops/acos_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4371720Z copying torch/include/ATen/ops/heaviside_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4373250Z copying torch/include/ATen/ops/hardshrink_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4374470Z copying torch/include/ATen/ops/fbgemm_pack_quantized_matrix_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4375730Z copying torch/include/ATen/ops/heaviside_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4377100Z copying torch/include/ATen/ops/_nested_view_from_jagged_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4378310Z copying torch/include/ATen/ops/_embedding_bag_dense_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4379450Z copying torch/include/ATen/ops/_fw_primal_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4380680Z copying torch/include/ATen/ops/_nested_tensor_from_mask.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4381990Z copying torch/include/ATen/ops/sparse_bsr_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4383510Z copying torch/include/ATen/ops/fill_diagonal_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4384850Z copying torch/include/ATen/ops/sum_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4386140Z copying torch/include/ATen/ops/searchsorted.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4387780Z copying torch/include/ATen/ops/upsample_bilinear2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4389010Z copying torch/include/ATen/ops/linalg_solve_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4390390Z copying torch/include/ATen/ops/linalg_solve_ex_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4391980Z copying torch/include/ATen/ops/bitwise_and.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4393270Z copying torch/include/ATen/ops/instance_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4394670Z copying torch/include/ATen/ops/_foreach_cosh_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4395900Z 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-08-14T20:47:59.4397090Z copying torch/include/ATen/ops/_slow_conv2d_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4398510Z copying torch/include/ATen/ops/embedding_dense_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4399890Z copying torch/include/ATen/ops/geqrf_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4401070Z copying torch/include/ATen/ops/tile.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4402360Z 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-08-14T20:47:59.4403710Z copying torch/include/ATen/ops/slow_conv_dilated3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4404930Z copying torch/include/ATen/ops/_foreach_clamp_min_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4406110Z copying torch/include/ATen/ops/nanmean.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4407490Z copying torch/include/ATen/ops/_cholesky_solve_helper_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4408830Z copying torch/include/ATen/ops/l1_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4410150Z 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-08-14T20:47:59.4411590Z 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-08-14T20:47:59.4412840Z copying torch/include/ATen/ops/reflection_pad1d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4414070Z copying torch/include/ATen/ops/upsample_nearest3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4415450Z copying torch/include/ATen/ops/sub_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4416620Z copying torch/include/ATen/ops/topk_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4418000Z copying torch/include/ATen/ops/tanh_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4419300Z copying torch/include/ATen/ops/xlogy_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4420680Z copying torch/include/ATen/ops/_histogramdd_from_bin_tensors_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4422030Z copying torch/include/ATen/ops/sparse_coo_tensor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4423380Z copying torch/include/ATen/ops/softplus_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4424710Z copying torch/include/ATen/ops/special_gammaln_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4425890Z copying torch/include/ATen/ops/scalar_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4427340Z copying torch/include/ATen/ops/embedding_bag_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4428660Z copying torch/include/ATen/ops/rnn_relu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4430050Z copying torch/include/ATen/ops/special_i1e_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4431310Z copying torch/include/ATen/ops/adaptive_avg_pool3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4432620Z copying torch/include/ATen/ops/as_strided_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4433940Z copying torch/include/ATen/ops/_cudnn_attention_forward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4435140Z copying torch/include/ATen/ops/ones_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4436470Z copying torch/include/ATen/ops/linalg_lstsq_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4437790Z copying torch/include/ATen/ops/cholesky_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4439030Z copying torch/include/ATen/ops/triu_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4440360Z copying torch/include/ATen/ops/count_nonzero_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4441630Z copying torch/include/ATen/ops/eq_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4442930Z copying torch/include/ATen/ops/fft_rfftn_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4444280Z copying torch/include/ATen/ops/reflection_pad2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4445610Z copying torch/include/ATen/ops/hypot_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4446910Z 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-08-14T20:47:59.4448220Z copying torch/include/ATen/ops/feature_dropout_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4449320Z copying torch/include/ATen/ops/gelu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4450820Z 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-08-14T20:47:59.4452080Z copying torch/include/ATen/ops/q_per_channel_zero_points.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4453450Z 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-08-14T20:47:59.4454760Z copying torch/include/ATen/ops/_pad_enum_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4455910Z copying torch/include/ATen/ops/isclose.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4457170Z copying torch/include/ATen/ops/view_as_complex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4458390Z copying torch/include/ATen/ops/lstm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4459760Z copying torch/include/ATen/ops/_linalg_eigvals_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4461130Z copying torch/include/ATen/ops/_mps_convolution_transpose_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4462400Z copying torch/include/ATen/ops/kthvalue.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4463660Z copying torch/include/ATen/ops/_euclidean_dist_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4464920Z copying torch/include/ATen/ops/replication_pad1d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4466190Z copying torch/include/ATen/ops/sin_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4467480Z copying torch/include/ATen/ops/unsafe_chunk_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4468790Z copying torch/include/ATen/ops/_foreach_minimum_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4470150Z 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-08-14T20:47:59.4471440Z copying torch/include/ATen/ops/select_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4472580Z copying torch/include/ATen/ops/clamp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4474040Z copying torch/include/ATen/ops/greater_equal_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4475270Z copying torch/include/ATen/ops/_foreach_maximum_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4476560Z copying torch/include/ATen/ops/linalg_cholesky_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4477760Z copying torch/include/ATen/ops/hamming_window.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4479100Z copying torch/include/ATen/ops/flatten_dense_tensors_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4480400Z 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-08-14T20:47:59.4481770Z copying torch/include/ATen/ops/rot90_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4483020Z copying torch/include/ATen/ops/log_sigmoid_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4484240Z copying torch/include/ATen/ops/softshrink_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4485500Z copying torch/include/ATen/ops/max_pool2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4486840Z 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-08-14T20:47:59.4488150Z copying torch/include/ATen/ops/promote_types_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4489360Z copying torch/include/ATen/ops/linalg_lu_factor_ex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4490770Z copying torch/include/ATen/ops/reflection_pad3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4491980Z copying torch/include/ATen/ops/unique_consecutive_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4493400Z copying torch/include/ATen/ops/unique_dim_consecutive_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4494810Z copying torch/include/ATen/ops/upsample_bicubic2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4496010Z copying torch/include/ATen/ops/_neg_view_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4497390Z copying torch/include/ATen/ops/trapezoid_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4498790Z copying torch/include/ATen/ops/bitwise_xor_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4500050Z copying torch/include/ATen/ops/tanh_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4501400Z copying torch/include/ATen/ops/avg_pool3d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4502630Z copying torch/include/ATen/ops/special_bessel_j0_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4503900Z copying torch/include/ATen/ops/logical_not_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4505200Z 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-08-14T20:47:59.4506390Z copying torch/include/ATen/ops/avg_pool1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4507600Z copying torch/include/ATen/ops/tril_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4508920Z copying torch/include/ATen/ops/is_nonzero_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4510160Z copying torch/include/ATen/ops/dsplit_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4511460Z copying torch/include/ATen/ops/is_vulkan_available_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4512640Z copying torch/include/ATen/ops/resolve_neg.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4513940Z copying torch/include/ATen/ops/is_neg_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4515190Z copying torch/include/ATen/ops/rad2deg.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4516350Z copying torch/include/ATen/ops/_mps_convolution_transpose.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4517580Z copying torch/include/ATen/ops/_segment_reduce_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4518890Z copying torch/include/ATen/ops/special_logit_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4520110Z copying torch/include/ATen/ops/_cummin_helper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4521550Z copying torch/include/ATen/ops/smooth_l1_loss_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4522940Z copying torch/include/ATen/ops/_log_softmax_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4524190Z copying torch/include/ATen/ops/_foreach_addcmul_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4525470Z copying torch/include/ATen/ops/split_with_sizes_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4526690Z copying torch/include/ATen/ops/nll_loss_nd_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4528170Z 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-08-14T20:47:59.4529420Z copying torch/include/ATen/ops/conv_transpose3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4530550Z copying torch/include/ATen/ops/type_as.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4531770Z copying torch/include/ATen/ops/dot_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4533060Z copying torch/include/ATen/ops/hardswish_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4534310Z copying torch/include/ATen/ops/fill_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4535440Z copying torch/include/ATen/ops/leaky_relu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4536720Z copying torch/include/ATen/ops/_masked_softmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4538180Z copying torch/include/ATen/ops/select_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4539430Z copying torch/include/ATen/ops/matrix_exp_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4540500Z copying torch/include/ATen/ops/sign_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4541790Z copying torch/include/ATen/ops/linalg_tensorsolve.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4542990Z copying torch/include/ATen/ops/argwhere_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4544310Z copying torch/include/ATen/ops/erfinv_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4545560Z copying torch/include/ATen/ops/resolve_neg_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4546820Z copying torch/include/ATen/ops/scatter_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4548150Z copying torch/include/ATen/ops/_triton_multi_head_attention.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4549240Z copying torch/include/ATen/ops/alpha_dropout.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4550600Z copying torch/include/ATen/ops/linalg_solve_ex_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4551980Z 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-08-14T20:47:59.4553260Z copying torch/include/ATen/ops/stride_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4554560Z copying torch/include/ATen/ops/soft_margin_loss_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4555820Z copying torch/include/ATen/ops/col2im_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4557100Z copying torch/include/ATen/ops/lift.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4558350Z copying torch/include/ATen/ops/_fft_c2r_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4559660Z copying torch/include/ATen/ops/atan2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4560990Z copying torch/include/ATen/ops/_sparse_broadcast_to_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4567270Z copying torch/include/ATen/ops/_foreach_floor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4567870Z copying torch/include/ATen/ops/acos_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4568450Z copying torch/include/ATen/ops/_fused_dropout_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4569060Z copying torch/include/ATen/ops/mkldnn_rnn_layer_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4569760Z copying torch/include/ATen/ops/frobenius_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4570510Z copying torch/include/ATen/ops/_unsafe_view_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4571200Z copying torch/include/ATen/ops/stride.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4571740Z copying torch/include/ATen/ops/addmv_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4572480Z copying torch/include/ATen/ops/logspace_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4573690Z copying torch/include/ATen/ops/log_normal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4575090Z copying torch/include/ATen/ops/align_to_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4576420Z copying torch/include/ATen/ops/relu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4577770Z copying torch/include/ATen/ops/unfold_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4579290Z copying torch/include/ATen/ops/row_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4580370Z copying torch/include/ATen/ops/_sample_dirichlet.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4581600Z copying torch/include/ATen/ops/special_ndtr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4582840Z copying torch/include/ATen/ops/special_airy_ai_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4584140Z copying torch/include/ATen/ops/_nested_tensor_storage_offsets_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4585490Z 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-08-14T20:47:59.4586700Z copying torch/include/ATen/ops/clone_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4588170Z 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-08-14T20:47:59.4589450Z copying torch/include/ATen/ops/sym_size_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4590740Z copying torch/include/ATen/ops/_to_dense_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4591890Z copying torch/include/ATen/ops/_to_cpu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4593170Z copying torch/include/ATen/ops/adaptive_max_pool3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4594450Z copying torch/include/ATen/ops/_nested_view_from_jagged.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4595720Z copying torch/include/ATen/ops/upsample_nearest3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4597050Z 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-08-14T20:47:59.4598470Z 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-08-14T20:47:59.4599740Z copying torch/include/ATen/ops/_unique2_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4601100Z copying torch/include/ATen/ops/miopen_rnn_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4602440Z copying torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4603670Z copying torch/include/ATen/ops/trunc_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4604920Z copying torch/include/ATen/ops/retain_grad_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4606150Z copying torch/include/ATen/ops/max_pool1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4607430Z copying torch/include/ATen/ops/histogramdd_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4608790Z copying torch/include/ATen/ops/_sparse_csr_sum_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4609970Z copying torch/include/ATen/ops/tanh_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4611230Z copying torch/include/ATen/ops/nanquantile_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4612520Z copying torch/include/ATen/ops/sinc_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4613700Z copying torch/include/ATen/ops/cumsum_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4615040Z copying torch/include/ATen/ops/instance_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4616240Z copying torch/include/ATen/ops/scatter_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4617600Z copying torch/include/ATen/ops/_mixed_dtypes_linear_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4618900Z copying torch/include/ATen/ops/index_select_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4620260Z copying torch/include/ATen/ops/rsqrt_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4621420Z copying torch/include/ATen/ops/refine_names_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4622640Z copying torch/include/ATen/ops/_remove_batch_dim_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4624060Z copying torch/include/ATen/ops/_copy_from_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4625230Z copying torch/include/ATen/ops/_foreach_lgamma_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4626560Z copying torch/include/ATen/ops/special_logsumexp_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4627640Z copying torch/include/ATen/ops/acos.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4628950Z copying torch/include/ATen/ops/_foreach_frac_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4630320Z copying torch/include/ATen/ops/replication_pad1d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4631590Z copying torch/include/ATen/ops/adaptive_avg_pool3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4632870Z copying torch/include/ATen/ops/elu_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4634140Z 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-08-14T20:47:59.4635470Z copying torch/include/ATen/ops/chunk.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4636820Z copying torch/include/ATen/ops/_functional_assert_async.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4638020Z copying torch/include/ATen/ops/arange_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4639370Z copying torch/include/ATen/ops/log_softmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4640610Z copying torch/include/ATen/ops/unsqueeze_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4641810Z copying torch/include/ATen/ops/triangular_solve.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4643070Z copying torch/include/ATen/ops/view_as_real_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4644410Z copying torch/include/ATen/ops/native_layer_norm_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4645680Z copying torch/include/ATen/ops/_foreach_reciprocal_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4646810Z copying torch/include/ATen/ops/renorm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4648020Z copying torch/include/ATen/ops/_local_scalar_dense.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4649390Z copying torch/include/ATen/ops/absolute.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4650550Z copying torch/include/ATen/ops/_assert_async_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4651840Z copying torch/include/ATen/ops/cudnn_affine_grid_generator_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4653180Z copying torch/include/ATen/ops/threshold_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4654310Z copying torch/include/ATen/ops/mT_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4655710Z copying torch/include/ATen/ops/_nested_from_padded_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4656840Z copying torch/include/ATen/ops/_amp_update_scale.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4658230Z copying torch/include/ATen/ops/bitwise_xor_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4659490Z 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-08-14T20:47:59.4660720Z copying torch/include/ATen/ops/index_copy_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4661990Z copying torch/include/ATen/ops/_test_ambiguous_defaults_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4663560Z copying torch/include/ATen/ops/mul_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4664660Z copying torch/include/ATen/ops/conv_transpose3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4665860Z copying torch/include/ATen/ops/rrelu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4667120Z copying torch/include/ATen/ops/logical_or_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4668350Z copying torch/include/ATen/ops/unsqueeze_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4669590Z copying torch/include/ATen/ops/huber_loss_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4670810Z copying torch/include/ATen/ops/renorm_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4672100Z copying torch/include/ATen/ops/record_stream_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4673340Z copying torch/include/ATen/ops/promote_types_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4674700Z copying torch/include/ATen/ops/_masked_softmax_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4676050Z 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-08-14T20:47:59.4677310Z copying torch/include/ATen/ops/topk_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4678530Z copying torch/include/ATen/ops/linalg_vecdot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4679740Z copying torch/include/ATen/ops/_sample_dirichlet_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4681030Z copying torch/include/ATen/ops/rand_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4682340Z copying torch/include/ATen/ops/hardsigmoid_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4683530Z copying torch/include/ATen/ops/_segment_reduce_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4684920Z copying torch/include/ATen/ops/fft_hfft2_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4686090Z copying torch/include/ATen/ops/special_bessel_y1_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4687340Z copying torch/include/ATen/ops/masked_scatter_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4688570Z copying torch/include/ATen/ops/to_sparse_csc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4689810Z copying torch/include/ATen/ops/upsample_nearest2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4690990Z copying torch/include/ATen/ops/_cummin_helper_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4692270Z copying torch/include/ATen/ops/replication_pad2d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4693520Z copying torch/include/ATen/ops/upsample_linear1d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4694670Z copying torch/include/ATen/ops/detach_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4695850Z copying torch/include/ATen/ops/cauchy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4697230Z 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-08-14T20:47:59.4698510Z 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-08-14T20:47:59.4699660Z copying torch/include/ATen/ops/row_indices_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4700910Z copying torch/include/ATen/ops/add_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4702060Z copying torch/include/ATen/ops/unfold_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4703210Z copying torch/include/ATen/ops/gelu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4704490Z copying torch/include/ATen/ops/linalg_svd_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4705710Z copying torch/include/ATen/ops/_fused_sdp_choice.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4707100Z copying torch/include/ATen/ops/convolution_backward_overrideable_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4708230Z copying torch/include/ATen/ops/log2_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4709450Z copying torch/include/ATen/ops/selu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4710760Z copying torch/include/ATen/ops/cudnn_grid_sampler_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4712020Z copying torch/include/ATen/ops/nll_loss2d_forward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4713230Z copying torch/include/ATen/ops/_foreach_frac_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4714560Z copying torch/include/ATen/ops/vander_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4715740Z copying torch/include/ATen/ops/segment_reduce_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4716980Z copying torch/include/ATen/ops/_conv_depthwise2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4718210Z copying torch/include/ATen/ops/linalg_diagonal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4719410Z copying torch/include/ATen/ops/set_data.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4720700Z copying torch/include/ATen/ops/alpha_dropout_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4721890Z copying torch/include/ATen/ops/take_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4723170Z 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-08-14T20:47:59.4724610Z 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-08-14T20:47:59.4725770Z copying torch/include/ATen/ops/adjoint_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4727070Z copying torch/include/ATen/ops/scatter_reduce_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4728370Z copying torch/include/ATen/ops/special_expit_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4729610Z copying torch/include/ATen/ops/_cudnn_attention_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4730850Z copying torch/include/ATen/ops/convolution_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4732160Z copying torch/include/ATen/ops/is_floating_point_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4733450Z copying torch/include/ATen/ops/mish_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4734620Z copying torch/include/ATen/ops/multi_margin_loss_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4735870Z copying torch/include/ATen/ops/hardsigmoid_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4737170Z copying torch/include/ATen/ops/cudnn_convolution_add_relu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4738400Z copying torch/include/ATen/ops/special_sinc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4739670Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4740930Z copying torch/include/ATen/ops/logical_and_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4742200Z copying torch/include/ATen/ops/_linalg_svd_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4743370Z copying torch/include/ATen/ops/_foreach_maximum_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4744640Z copying torch/include/ATen/ops/_sparse_csr_prod_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4746000Z copying torch/include/ATen/ops/_autocast_to_reduced_precision_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4747350Z copying torch/include/ATen/ops/special_gammaln_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4748540Z copying torch/include/ATen/ops/embedding_bag.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4749720Z copying torch/include/ATen/ops/silu_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4750940Z copying torch/include/ATen/ops/greater_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4752290Z 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-08-14T20:47:59.4753470Z copying torch/include/ATen/ops/rrelu_with_noise_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4754640Z copying torch/include/ATen/ops/sort_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4755850Z copying torch/include/ATen/ops/fill_diagonal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4757150Z copying torch/include/ATen/ops/special_chebyshev_polynomial_v_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4758300Z copying torch/include/ATen/ops/_to_sparse_csc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4759490Z copying torch/include/ATen/ops/zeros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4760730Z copying torch/include/ATen/ops/_embedding_bag_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4761980Z copying torch/include/ATen/ops/smooth_l1_loss_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4763270Z copying torch/include/ATen/ops/_foreach_log_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4764510Z copying torch/include/ATen/ops/softshrink_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4765690Z copying torch/include/ATen/ops/fmod_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4766950Z copying torch/include/ATen/ops/sigmoid_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4768280Z copying torch/include/ATen/ops/replication_pad1d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4769470Z copying torch/include/ATen/ops/_sobol_engine_draw_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4770780Z copying torch/include/ATen/ops/linalg_lu_factor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4772050Z copying torch/include/ATen/ops/tril_indices_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4773280Z copying torch/include/ATen/ops/bitwise_left_shift_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4774470Z copying torch/include/ATen/ops/arctanh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4775760Z copying torch/include/ATen/ops/triu_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4777000Z copying torch/include/ATen/ops/reciprocal_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4778450Z copying torch/include/ATen/ops/aminmax_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4779720Z copying torch/include/ATen/ops/_nnz_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4781220Z copying torch/include/ATen/ops/unfold_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4782520Z copying torch/include/ATen/ops/_weight_int8pack_mm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4783860Z copying torch/include/ATen/ops/exp2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4785310Z copying torch/include/ATen/ops/_lstm_mps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4786640Z copying torch/include/ATen/ops/hardsigmoid_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4788170Z copying torch/include/ATen/ops/bucketize_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4789570Z copying torch/include/ATen/ops/_foreach_floor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4790890Z copying torch/include/ATen/ops/_spsolve_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4792130Z copying torch/include/ATen/ops/is_set_to_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4793320Z copying torch/include/ATen/ops/log10_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4794530Z copying torch/include/ATen/ops/flip.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4795920Z 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-08-14T20:47:59.4797320Z copying torch/include/ATen/ops/_sparse_semi_structured_linear_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4798470Z copying torch/include/ATen/ops/roll_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4799900Z copying torch/include/ATen/ops/eq_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4801110Z copying torch/include/ATen/ops/_cdist_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4802450Z copying torch/include/ATen/ops/put_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4803680Z copying torch/include/ATen/ops/_cudnn_rnn_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4804940Z copying torch/include/ATen/ops/linalg_lu_factor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4806290Z 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-08-14T20:47:59.4807540Z copying torch/include/ATen/ops/cudnn_convolution_relu_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4808770Z copying torch/include/ATen/ops/round_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4810040Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4811320Z 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-08-14T20:47:59.4812550Z copying torch/include/ATen/ops/fbgemm_linear_fp16_weight_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4813930Z copying torch/include/ATen/ops/frexp_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4815090Z copying torch/include/ATen/ops/as_strided_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4816360Z 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-08-14T20:47:59.4817590Z copying torch/include/ATen/ops/_standard_gamma_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4818830Z copying torch/include/ATen/ops/neg_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4820210Z 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-08-14T20:47:59.4821390Z copying torch/include/ATen/ops/pinverse.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4822770Z copying torch/include/ATen/ops/diagonal_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4823910Z copying torch/include/ATen/ops/select_scatter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4825290Z copying torch/include/ATen/ops/masked_fill_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4826420Z copying torch/include/ATen/ops/conv1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4827690Z copying torch/include/ATen/ops/random_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4829120Z copying torch/include/ATen/ops/expand_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4830380Z copying torch/include/ATen/ops/upsample_linear1d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4831540Z copying torch/include/ATen/ops/arccosh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4832790Z copying torch/include/ATen/ops/gelu_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4834020Z copying torch/include/ATen/ops/sigmoid_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4835270Z copying torch/include/ATen/ops/_foreach_clamp_max_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4836520Z copying torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4837660Z copying torch/include/ATen/ops/fft_fftfreq.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4838910Z copying torch/include/ATen/ops/im2col_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4840070Z copying torch/include/ATen/ops/_sparse_mm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4841310Z copying torch/include/ATen/ops/narrow_copy_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4842520Z copying torch/include/ATen/ops/not_equal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4843750Z copying torch/include/ATen/ops/prod_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4845130Z copying torch/include/ATen/ops/linalg_matrix_rank_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4846270Z copying torch/include/ATen/ops/index_select.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4847590Z copying torch/include/ATen/ops/special_ndtr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4848850Z copying torch/include/ATen/ops/fractional_max_pool3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4850030Z copying torch/include/ATen/ops/mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4851270Z copying torch/include/ATen/ops/addcmul_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4852540Z copying torch/include/ATen/ops/special_hermite_polynomial_h_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4853800Z copying torch/include/ATen/ops/_convolution_mode_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4855140Z copying torch/include/ATen/ops/embedding_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4856470Z copying torch/include/ATen/ops/conv_transpose1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4857600Z copying torch/include/ATen/ops/mps_convolution_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4858930Z copying torch/include/ATen/ops/grid_sampler_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4860200Z copying torch/include/ATen/ops/_standard_gamma_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4861360Z copying torch/include/ATen/ops/special_erfcx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4862640Z copying torch/include/ATen/ops/_linalg_solve_ex_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4863820Z copying torch/include/ATen/ops/ge_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4865060Z copying torch/include/ATen/ops/polar_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4866310Z 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-08-14T20:47:59.4867600Z copying torch/include/ATen/ops/copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4868930Z copying torch/include/ATen/ops/_mps_convolution_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4870110Z copying torch/include/ATen/ops/_to_sparse_csr_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4871290Z copying torch/include/ATen/ops/data_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4872540Z copying torch/include/ATen/ops/adaptive_avg_pool3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4873710Z copying torch/include/ATen/ops/randn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4875230Z copying torch/include/ATen/ops/nll_loss2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4876600Z copying torch/include/ATen/ops/native_group_norm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4877790Z copying torch/include/ATen/ops/unbind_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4879130Z copying torch/include/ATen/ops/channel_shuffle_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4880290Z copying torch/include/ATen/ops/eq_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4881940Z copying torch/include/ATen/ops/set_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4883220Z copying torch/include/ATen/ops/_native_multi_head_attention_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4884550Z copying torch/include/ATen/ops/_test_functorch_fallback.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4885820Z 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-08-14T20:47:59.4887120Z 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-08-14T20:47:59.4888310Z copying torch/include/ATen/ops/_cufft_clear_plan_cache.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4889550Z copying torch/include/ATen/ops/_fused_adagrad_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4890880Z copying torch/include/ATen/ops/nanquantile_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4892090Z copying torch/include/ATen/ops/mkldnn_linear_backward_input_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4893410Z copying torch/include/ATen/ops/fft_ihfft_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4894710Z copying torch/include/ATen/ops/_weight_norm_differentiable_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4895890Z copying torch/include/ATen/ops/ger_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4897190Z 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-08-14T20:47:59.4898410Z copying torch/include/ATen/ops/_values_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4899720Z 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-08-14T20:47:59.4900960Z copying torch/include/ATen/ops/set_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4902310Z copying torch/include/ATen/ops/_foreach_sin_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4903620Z copying torch/include/ATen/ops/is_conj_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4904900Z copying torch/include/ATen/ops/normal_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4906040Z copying torch/include/ATen/ops/max_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4907280Z 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-08-14T20:47:59.4908550Z copying torch/include/ATen/ops/grid_sampler_2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4909790Z copying torch/include/ATen/ops/_linalg_det_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4911010Z copying torch/include/ATen/ops/triangular_solve_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4912250Z copying torch/include/ATen/ops/_linalg_slogdet_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4913570Z 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-08-14T20:47:59.4914850Z copying torch/include/ATen/ops/tensor_split_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4916090Z copying torch/include/ATen/ops/lshift_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4917360Z copying torch/include/ATen/ops/empty_quantized.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4918610Z copying torch/include/ATen/ops/cudnn_grid_sampler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4920010Z copying torch/include/ATen/ops/repeat_interleave_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4921220Z 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-08-14T20:47:59.4922500Z copying torch/include/ATen/ops/gather_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4923920Z copying torch/include/ATen/ops/reshape_compositeimplicitautogradnestedtensor_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4925070Z copying torch/include/ATen/ops/logical_and_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4926310Z 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-08-14T20:47:59.4927500Z copying torch/include/ATen/ops/roll_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4928850Z copying torch/include/ATen/ops/remainder_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4930070Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4931340Z copying torch/include/ATen/ops/log10_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4932720Z copying torch/include/ATen/ops/upsample_nearest2d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4933970Z copying torch/include/ATen/ops/upsample_bilinear2d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4935160Z 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-08-14T20:47:59.4936340Z copying torch/include/ATen/ops/convolution.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4937560Z copying torch/include/ATen/ops/kl_div_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4938910Z copying torch/include/ATen/ops/roll_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4940130Z copying torch/include/ATen/ops/upsample_bicubic2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4941410Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4942580Z copying torch/include/ATen/ops/amax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4943860Z copying torch/include/ATen/ops/multinomial_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4945000Z copying torch/include/ATen/ops/special_log_ndtr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4946400Z copying torch/include/ATen/ops/_to_cpu_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4947540Z copying torch/include/ATen/ops/batch_norm_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4948730Z copying torch/include/ATen/ops/addmv_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4950120Z copying torch/include/ATen/ops/clamp_max_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4951200Z copying torch/include/ATen/ops/_values_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4952430Z copying torch/include/ATen/ops/clone.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4953760Z 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-08-14T20:47:59.4955040Z copying torch/include/ATen/ops/avg_pool2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4956260Z copying torch/include/ATen/ops/_choose_qparams_per_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4957570Z copying torch/include/ATen/ops/_sparse_semi_structured_mm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4958690Z copying torch/include/ATen/ops/reciprocal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4959970Z copying torch/include/ATen/ops/special_bessel_y0_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4961330Z copying torch/include/ATen/ops/unflatten_dense_tensors_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4962460Z copying torch/include/ATen/ops/mkldnn_rnn_layer_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4963720Z copying torch/include/ATen/ops/replication_pad3d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4964960Z copying torch/include/ATen/ops/logical_or_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4966290Z 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-08-14T20:47:59.4967490Z copying torch/include/ATen/ops/values_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4968760Z copying torch/include/ATen/ops/corrcoef_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4970130Z copying torch/include/ATen/ops/digamma_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4971220Z copying torch/include/ATen/ops/swapdims.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4972570Z 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-08-14T20:47:59.4973830Z copying torch/include/ATen/ops/reflection_pad3d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4975030Z copying torch/include/ATen/ops/cauchy_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4976340Z copying torch/include/ATen/ops/reflection_pad1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4977670Z 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-08-14T20:47:59.4979120Z copying torch/include/ATen/ops/replication_pad2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4980180Z copying torch/include/ATen/ops/huber_loss_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4981380Z copying torch/include/ATen/ops/permute_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4982680Z 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-08-14T20:47:59.4983970Z copying torch/include/ATen/ops/sub_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4985220Z copying torch/include/ATen/ops/_reshape_alias_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4986350Z copying torch/include/ATen/ops/mm_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4987530Z copying torch/include/ATen/ops/sinh_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4988800Z copying torch/include/ATen/ops/log2_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4990020Z copying torch/include/ATen/ops/glu_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4991360Z 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-08-14T20:47:59.4992600Z copying torch/include/ATen/ops/linalg_solve_ex_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4993800Z copying torch/include/ATen/ops/logsumexp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4995040Z copying torch/include/ATen/ops/all.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4996370Z copying torch/include/ATen/ops/_foobar.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4997650Z copying torch/include/ATen/ops/cudnn_grid_sampler_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.4998970Z 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-08-14T20:47:59.5000070Z copying torch/include/ATen/ops/log_normal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5001320Z copying torch/include/ATen/ops/quantized_lstm_cell_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5002600Z copying torch/include/ATen/ops/mvlgamma_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5003910Z copying torch/include/ATen/ops/log1p_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5005140Z copying torch/include/ATen/ops/glu_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5006370Z copying torch/include/ATen/ops/mish_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5007600Z copying torch/include/ATen/ops/_rowwise_prune_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5008780Z copying torch/include/ATen/ops/_foreach_acos_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5010050Z copying torch/include/ATen/ops/linalg_lu_solve_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5011420Z 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-08-14T20:47:59.5012540Z copying torch/include/ATen/ops/size_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5013950Z copying torch/include/ATen/ops/linalg_eigvals_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5015140Z copying torch/include/ATen/ops/special_erf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5016430Z copying torch/include/ATen/ops/amax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5017580Z copying torch/include/ATen/ops/_foreach_lerp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5024170Z 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-08-14T20:47:59.5024660Z copying torch/include/ATen/ops/scatter_reduce_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5024930Z copying torch/include/ATen/ops/nll_loss_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5025230Z copying torch/include/ATen/ops/log_sigmoid_forward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5025550Z 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-08-14T20:47:59.5025880Z copying torch/include/ATen/ops/rms_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5027070Z copying torch/include/ATen/ops/movedim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5028330Z copying torch/include/ATen/ops/mps_convolution_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5029630Z copying torch/include/ATen/ops/arccos.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5030970Z 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-08-14T20:47:59.5032180Z copying torch/include/ATen/ops/linear.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5033500Z copying torch/include/ATen/ops/bucketize_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5034850Z copying torch/include/ATen/ops/asinh_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5036090Z copying torch/include/ATen/ops/_dim_arange.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5037360Z copying torch/include/ATen/ops/special_erfc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5038780Z copying torch/include/ATen/ops/empty_like_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5040010Z copying torch/include/ATen/ops/nll_loss_nd_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5041350Z copying torch/include/ATen/ops/tan_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5042650Z copying torch/include/ATen/ops/_cdist_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5043930Z copying torch/include/ATen/ops/hardtanh_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5045260Z copying torch/include/ATen/ops/matmul_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5046510Z copying torch/include/ATen/ops/_cast_Half_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5047800Z copying torch/include/ATen/ops/_prelu_kernel_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5049070Z copying torch/include/ATen/ops/gather.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5050410Z copying torch/include/ATen/ops/_reshape_alias_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5051750Z copying torch/include/ATen/ops/logaddexp2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5053010Z copying torch/include/ATen/ops/multi_margin_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5054310Z copying torch/include/ATen/ops/_foreach_sin_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5055520Z copying torch/include/ATen/ops/fft_rfft_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5056770Z copying torch/include/ATen/ops/slow_conv3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5058020Z copying torch/include/ATen/ops/leaky_relu_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5059350Z 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-08-14T20:47:59.5060960Z copying torch/include/ATen/ops/acosh_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5062220Z copying torch/include/ATen/ops/special_bessel_j1_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5063410Z copying torch/include/ATen/ops/addcdiv_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5064760Z copying torch/include/ATen/ops/permute_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5066040Z copying torch/include/ATen/ops/to_sparse_csr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5067350Z 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-08-14T20:47:59.5068630Z copying torch/include/ATen/ops/replication_pad2d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5070090Z copying torch/include/ATen/ops/linalg_pinv_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5071300Z 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-08-14T20:47:59.5072570Z 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-08-14T20:47:59.5075250Z copying torch/include/ATen/ops/fractional_max_pool2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5075620Z 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-08-14T20:47:59.5076420Z 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-08-14T20:47:59.5077600Z copying torch/include/ATen/ops/data.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5079030Z copying torch/include/ATen/ops/matrix_power_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5080220Z copying torch/include/ATen/ops/cudnn_convolution_transpose_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5081450Z copying torch/include/ATen/ops/_local_scalar_dense_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5082820Z 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-08-14T20:47:59.5084080Z copying torch/include/ATen/ops/gather_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5085320Z copying torch/include/ATen/ops/_cast_Long.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5086730Z 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-08-14T20:47:59.5088050Z copying torch/include/ATen/ops/hardshrink_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5089290Z copying torch/include/ATen/ops/hstack_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5090530Z copying torch/include/ATen/ops/miopen_convolution_relu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5091830Z 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-08-14T20:47:59.5093110Z 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-08-14T20:47:59.5094480Z copying torch/include/ATen/ops/gelu_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5095730Z 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-08-14T20:47:59.5097010Z copying torch/include/ATen/ops/hann_window_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5098330Z copying torch/include/ATen/ops/ger_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5099600Z copying torch/include/ATen/ops/div_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5100820Z 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-08-14T20:47:59.5102060Z copying torch/include/ATen/ops/deg2rad_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5103310Z 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-08-14T20:47:59.5104600Z copying torch/include/ATen/ops/native_group_norm_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5105770Z copying torch/include/ATen/ops/triu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5107080Z copying torch/include/ATen/ops/rename_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5108450Z copying torch/include/ATen/ops/linalg_inv_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5109870Z copying torch/include/ATen/ops/_fused_dropout_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5111370Z 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-08-14T20:47:59.5112490Z copying torch/include/ATen/ops/_foreach_expm1_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5113710Z copying torch/include/ATen/ops/mkldnn_max_pool3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5114870Z copying torch/include/ATen/ops/tan_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5116130Z copying torch/include/ATen/ops/softshrink_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5117480Z copying torch/include/ATen/ops/as_strided_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5118670Z copying torch/include/ATen/ops/linalg_lu_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5119900Z copying torch/include/ATen/ops/_rowwise_prune.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5121170Z copying torch/include/ATen/ops/rshift_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5122410Z copying torch/include/ATen/ops/miopen_depthwise_convolution_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5123680Z copying torch/include/ATen/ops/linalg_lu_factor_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5124850Z copying torch/include/ATen/ops/arctan2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5126150Z copying torch/include/ATen/ops/dequantize_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5127380Z copying torch/include/ATen/ops/_nested_tensor_size.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5128660Z 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-08-14T20:47:59.5129940Z copying torch/include/ATen/ops/_local_scalar_dense_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5131150Z copying torch/include/ATen/ops/_mkldnn_transpose_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5132490Z copying torch/include/ATen/ops/crow_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5133640Z copying torch/include/ATen/ops/roll_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5134850Z copying torch/include/ATen/ops/unfold_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5136070Z copying torch/include/ATen/ops/fft_rfft2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5137290Z copying torch/include/ATen/ops/gru.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5138680Z copying torch/include/ATen/ops/sign_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5139880Z copying torch/include/ATen/ops/atleast_1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5141240Z copying torch/include/ATen/ops/masked_fill_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5142400Z copying torch/include/ATen/ops/fft_ifft2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5143630Z copying torch/include/ATen/ops/isneginf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5145030Z copying torch/include/ATen/ops/sign_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5146240Z copying torch/include/ATen/ops/nanquantile.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5147500Z copying torch/include/ATen/ops/_foreach_log10_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5148820Z copying torch/include/ATen/ops/fft_rfftfreq_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5150000Z copying torch/include/ATen/ops/zeros_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5151310Z copying torch/include/ATen/ops/_nested_select_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5152600Z copying torch/include/ATen/ops/nested_to_padded_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5153830Z copying torch/include/ATen/ops/hardtanh_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5155220Z copying torch/include/ATen/ops/upsample_bicubic2d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5156490Z copying torch/include/ATen/ops/_foreach_exp_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5157700Z copying torch/include/ATen/ops/linalg_lu_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5158910Z copying torch/include/ATen/ops/fft_irfft2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5160240Z copying torch/include/ATen/ops/miopen_convolution_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5161570Z copying torch/include/ATen/ops/infinitely_differentiable_gelu_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5162910Z 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-08-14T20:47:59.5164090Z copying torch/include/ATen/ops/scatter_add_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5165480Z copying torch/include/ATen/ops/max_unpool2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5166730Z copying torch/include/ATen/ops/_indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5168000Z copying torch/include/ATen/ops/adaptive_avg_pool2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5169220Z copying torch/include/ATen/ops/embedding_sparse_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5170640Z copying torch/include/ATen/ops/special_psi_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5172110Z copying torch/include/ATen/ops/hardswish_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5173460Z copying torch/include/ATen/ops/_indices_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5174950Z copying torch/include/ATen/ops/tile_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5177370Z copying torch/include/ATen/ops/std_mean_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5178900Z copying torch/include/ATen/ops/softplus_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5180480Z copying torch/include/ATen/ops/special_expm1_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5181830Z copying torch/include/ATen/ops/elu_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5183220Z 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-08-14T20:47:59.5184540Z copying torch/include/ATen/ops/_foreach_trunc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5185990Z copying torch/include/ATen/ops/mode_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5187210Z copying torch/include/ATen/ops/bitwise_not.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5188460Z copying torch/include/ATen/ops/_foreach_mul_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5189850Z copying torch/include/ATen/ops/bartlett_window_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5191160Z copying torch/include/ATen/ops/_cummin_helper_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5192410Z copying torch/include/ATen/ops/is_complex_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5193660Z copying torch/include/ATen/ops/log_sigmoid_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5195130Z copying torch/include/ATen/ops/minimum_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5196350Z copying torch/include/ATen/ops/ccol_indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5197560Z copying torch/include/ATen/ops/scatter_add_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5198840Z copying torch/include/ATen/ops/multilabel_margin_loss_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5200090Z copying torch/include/ATen/ops/std_mean_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5201330Z copying torch/include/ATen/ops/reciprocal_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5202570Z 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-08-14T20:47:59.5203830Z copying torch/include/ATen/ops/cdist_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5205090Z copying torch/include/ATen/ops/sparse_sampled_addmm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5206250Z copying torch/include/ATen/ops/_add_relu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5207630Z copying torch/include/ATen/ops/linalg_vecdot_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5208960Z copying torch/include/ATen/ops/pad_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5210160Z copying torch/include/ATen/ops/randperm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5211480Z copying torch/include/ATen/ops/_foreach_neg_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5212760Z 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-08-14T20:47:59.5214100Z copying torch/include/ATen/ops/output_nr_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5215330Z copying torch/include/ATen/ops/_nested_sum_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5216440Z copying torch/include/ATen/ops/i0.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5217700Z copying torch/include/ATen/ops/_foreach_sinh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5219010Z copying torch/include/ATen/ops/native_dropout_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5220260Z copying torch/include/ATen/ops/_test_functorch_fallback_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5221490Z copying torch/include/ATen/ops/linalg_ldl_solve_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5222730Z copying torch/include/ATen/ops/flipud_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5224050Z copying torch/include/ATen/ops/_ctc_loss_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5225350Z copying torch/include/ATen/ops/t_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5226600Z copying torch/include/ATen/ops/_int_mm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5227950Z copying torch/include/ATen/ops/index_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5229110Z copying torch/include/ATen/ops/erf_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5230330Z copying torch/include/ATen/ops/igammac_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5231610Z copying torch/include/ATen/ops/linalg_qr_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5232810Z copying torch/include/ATen/ops/_foreach_erf_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5234050Z copying torch/include/ATen/ops/max_pool2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5235270Z copying torch/include/ATen/ops/_cast_Char_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5236590Z copying torch/include/ATen/ops/_foreach_acos_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5237800Z copying torch/include/ATen/ops/diag_embed_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5239030Z copying torch/include/ATen/ops/_spdiags_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5240370Z copying torch/include/ATen/ops/fix_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5241550Z copying torch/include/ATen/ops/cov_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5242780Z copying torch/include/ATen/ops/q_scale_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5244160Z copying torch/include/ATen/ops/new_full_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5245500Z 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-08-14T20:47:59.5246690Z copying torch/include/ATen/ops/var.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5247960Z copying torch/include/ATen/ops/_foreach_floor_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5249280Z copying torch/include/ATen/ops/bitwise_not_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5250410Z copying torch/include/ATen/ops/index_put.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5251630Z copying torch/include/ATen/ops/dequantize_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5252870Z copying torch/include/ATen/ops/convolution_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5254200Z copying torch/include/ATen/ops/_chunk_cat_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5255360Z copying torch/include/ATen/ops/grid_sampler_2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5256620Z copying torch/include/ATen/ops/special_i0e.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5257810Z copying torch/include/ATen/ops/special_log1p_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5259130Z copying torch/include/ATen/ops/logaddexp_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5260430Z copying torch/include/ATen/ops/_wrapped_quantized_linear_prepacked.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5261620Z copying torch/include/ATen/ops/arange_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5262800Z copying torch/include/ATen/ops/logaddexp2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5264110Z copying torch/include/ATen/ops/upsample_nearest3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5265470Z copying torch/include/ATen/ops/isnan_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5266650Z copying torch/include/ATen/ops/index_fill_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5267820Z copying torch/include/ATen/ops/remainder.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5269030Z copying torch/include/ATen/ops/batch_norm_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5270220Z copying torch/include/ATen/ops/repeat_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5271540Z copying torch/include/ATen/ops/cummin_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5272810Z 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-08-14T20:47:59.5274020Z copying torch/include/ATen/ops/avg_pool3d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5275210Z copying torch/include/ATen/ops/_foreach_lerp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5276570Z copying torch/include/ATen/ops/_sparse_softmax_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5277780Z 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-08-14T20:47:59.5279020Z copying torch/include/ATen/ops/indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5280280Z copying torch/include/ATen/ops/_histogramdd_from_bin_cts.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5281670Z copying torch/include/ATen/ops/mvlgamma_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5283000Z copying torch/include/ATen/ops/_cudnn_rnn_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5284250Z copying torch/include/ATen/ops/amax_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5285650Z copying torch/include/ATen/ops/_assert_tensor_metadata_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5286820Z copying torch/include/ATen/ops/nll_loss2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5288200Z copying torch/include/ATen/ops/linalg_matrix_rank_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5289490Z copying torch/include/ATen/ops/_masked_scale_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5290750Z copying torch/include/ATen/ops/_stack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5292040Z copying torch/include/ATen/ops/histc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5293400Z copying torch/include/ATen/ops/combinations_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5294690Z 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-08-14T20:47:59.5295980Z copying torch/include/ATen/ops/tanh_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5297240Z copying torch/include/ATen/ops/fft_hfft.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5298630Z copying torch/include/ATen/ops/embedding_bag_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5299860Z copying torch/include/ATen/ops/to_padded_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5301130Z copying torch/include/ATen/ops/fft_fft.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5302500Z 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-08-14T20:47:59.5303700Z copying torch/include/ATen/ops/requires_grad_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5304910Z copying torch/include/ATen/ops/gradient.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5306220Z copying torch/include/ATen/ops/fft_ihfft.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5307630Z 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-08-14T20:47:59.5308890Z copying torch/include/ATen/ops/upsample_trilinear3d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5310260Z copying torch/include/ATen/ops/linalg_vector_norm_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5311430Z copying torch/include/ATen/ops/view_as_real_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5312700Z copying torch/include/ATen/ops/copysign_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5313920Z copying torch/include/ATen/ops/values_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5315230Z copying torch/include/ATen/ops/_prelu_kernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5316420Z copying torch/include/ATen/ops/fractional_max_pool3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5317650Z copying torch/include/ATen/ops/upsample_linear1d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5318910Z copying torch/include/ATen/ops/_add_batch_dim_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5320340Z copying torch/include/ATen/ops/cudnn_is_acceptable_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5321490Z copying torch/include/ATen/ops/mH_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5322770Z copying torch/include/ATen/ops/lift_fresh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5323990Z copying torch/include/ATen/ops/ne_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5325350Z copying torch/include/ATen/ops/argsort_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5326570Z copying torch/include/ATen/ops/multinomial_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5327800Z copying torch/include/ATen/ops/special_modified_bessel_k0.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5329030Z copying torch/include/ATen/ops/atan2_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5330220Z copying torch/include/ATen/ops/_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5331590Z 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-08-14T20:47:59.5332920Z copying torch/include/ATen/ops/special_multigammaln_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5334150Z copying torch/include/ATen/ops/unsafe_chunk_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5335440Z copying torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5336740Z copying torch/include/ATen/ops/native_channel_shuffle_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5338160Z 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-08-14T20:47:59.5339310Z copying torch/include/ATen/ops/addmv_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5340530Z copying torch/include/ATen/ops/rshift_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5341910Z 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-08-14T20:47:59.5343070Z copying torch/include/ATen/ops/special_erfinv_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5344350Z copying torch/include/ATen/ops/_fused_sdp_choice_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5345730Z copying torch/include/ATen/ops/_copy_from_and_resize_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5346880Z copying torch/include/ATen/ops/_sparse_log_softmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5348130Z copying torch/include/ATen/ops/select_scatter_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5349560Z copying torch/include/ATen/ops/pixel_unshuffle_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5350730Z copying torch/include/ATen/ops/broadcast_to_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5352040Z copying torch/include/ATen/ops/huber_loss_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5353320Z copying torch/include/ATen/ops/count_nonzero_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5354620Z copying torch/include/ATen/ops/linalg_eigh_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5355910Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5357150Z copying torch/include/ATen/ops/true_divide_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5358530Z copying torch/include/ATen/ops/_ctc_loss_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5359760Z copying torch/include/ATen/ops/upsample_bilinear2d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5361000Z copying torch/include/ATen/ops/ccol_indices_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5362200Z copying torch/include/ATen/ops/addcmul_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5363430Z copying torch/include/ATen/ops/_fused_adagrad_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5364700Z copying torch/include/ATen/ops/erfc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5366000Z copying torch/include/ATen/ops/slow_conv_transpose3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5367250Z copying torch/include/ATen/ops/resolve_conj.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5368520Z copying torch/include/ATen/ops/quantized_gru_cell_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5369810Z copying torch/include/ATen/ops/sparse_bsr_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5370990Z copying torch/include/ATen/ops/_foreach_erfc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5372250Z copying torch/include/ATen/ops/glu_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5373440Z copying torch/include/ATen/ops/_to_sparse_bsr_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5374730Z copying torch/include/ATen/ops/new_ones_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5375920Z copying torch/include/ATen/ops/cosh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5377270Z copying torch/include/ATen/ops/eye_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5378520Z copying torch/include/ATen/ops/nll_loss_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5380000Z copying torch/include/ATen/ops/istft_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5381270Z 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-08-14T20:47:59.5382480Z copying torch/include/ATen/ops/addcmul_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5383740Z copying torch/include/ATen/ops/avg_pool3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5385020Z copying torch/include/ATen/ops/_prelu_kernel_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5386290Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5387560Z copying torch/include/ATen/ops/kron_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5388750Z copying torch/include/ATen/ops/fmod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5390130Z copying torch/include/ATen/ops/scatter_add_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5391300Z copying torch/include/ATen/ops/inverse.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5392560Z copying torch/include/ATen/ops/_foreach_round_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5393990Z copying torch/include/ATen/ops/to_dense_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5395160Z copying torch/include/ATen/ops/rshift_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5396520Z copying torch/include/ATen/ops/cumsum_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5397720Z copying torch/include/ATen/ops/item.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5399320Z 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-08-14T20:47:59.5400640Z 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-08-14T20:47:59.5401740Z copying torch/include/ATen/ops/hypot_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5402980Z copying torch/include/ATen/ops/_foreach_zero.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5404250Z copying torch/include/ATen/ops/zeros_like_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5405560Z copying torch/include/ATen/ops/_mkldnn_reshape_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5406770Z copying torch/include/ATen/ops/index_select_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5408040Z copying torch/include/ATen/ops/to_sparse_bsr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5409430Z copying torch/include/ATen/ops/_foreach_round_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5410660Z copying torch/include/ATen/ops/linalg_cholesky_ex_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5411850Z copying torch/include/ATen/ops/nll_loss_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5413130Z 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-08-14T20:47:59.5414490Z copying torch/include/ATen/ops/linalg_eig_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5415610Z copying torch/include/ATen/ops/sgn_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5416870Z copying torch/include/ATen/ops/replication_pad1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5418070Z copying torch/include/ATen/ops/linalg_eigh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5419370Z copying torch/include/ATen/ops/linalg_matrix_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5420560Z copying torch/include/ATen/ops/lu_unpack_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5421810Z copying torch/include/ATen/ops/fmax_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5423040Z 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-08-14T20:47:59.5424290Z copying torch/include/ATen/ops/linalg_vector_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5425610Z copying torch/include/ATen/ops/native_layer_norm_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5426930Z 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-08-14T20:47:59.5428210Z 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-08-14T20:47:59.5429470Z copying torch/include/ATen/ops/_foreach_sigmoid_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5430680Z copying torch/include/ATen/ops/quantized_batch_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5432050Z copying torch/include/ATen/ops/_to_sparse_csr_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5433310Z copying torch/include/ATen/ops/_pack_padded_sequence_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5434660Z copying torch/include/ATen/ops/_to_sparse_csc_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5435900Z copying torch/include/ATen/ops/matrix_power.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5437140Z copying torch/include/ATen/ops/sgn_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5438350Z copying torch/include/ATen/ops/ne_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5439670Z copying torch/include/ATen/ops/_foreach_cos_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5440970Z copying torch/include/ATen/ops/split_with_sizes_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5442280Z copying torch/include/ATen/ops/transpose_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5443570Z copying torch/include/ATen/ops/conj_physical_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5444780Z copying torch/include/ATen/ops/silu_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5446130Z copying torch/include/ATen/ops/linalg_matrix_power_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5447350Z copying torch/include/ATen/ops/unsafe_split_with_sizes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5448810Z 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-08-14T20:47:59.5449970Z 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-08-14T20:47:59.5451410Z 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-08-14T20:47:59.5452580Z copying torch/include/ATen/ops/frac_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5453830Z copying torch/include/ATen/ops/less_equal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5455090Z copying torch/include/ATen/ops/rrelu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5456500Z 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-08-14T20:47:59.5457690Z copying torch/include/ATen/ops/rnn_tanh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5458970Z copying torch/include/ATen/ops/upsample_nearest1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5460320Z copying torch/include/ATen/ops/pinverse_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5461480Z copying torch/include/ATen/ops/mean_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5462710Z copying torch/include/ATen/ops/new_empty_strided.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5464020Z 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-08-14T20:47:59.5465230Z copying torch/include/ATen/ops/pow_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5466480Z copying torch/include/ATen/ops/channel_shuffle_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5467700Z copying torch/include/ATen/ops/log_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5468990Z copying torch/include/ATen/ops/unique_consecutive_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5470260Z copying torch/include/ATen/ops/unbind_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5471600Z copying torch/include/ATen/ops/alpha_dropout_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5472810Z copying torch/include/ATen/ops/_foreach_abs_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5474090Z copying torch/include/ATen/ops/replication_pad2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5475420Z copying torch/include/ATen/ops/kaiser_window.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5476950Z copying torch/include/ATen/ops/split_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5478370Z copying torch/include/ATen/ops/nansum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5479790Z copying torch/include/ATen/ops/threshold_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5481190Z copying torch/include/ATen/ops/soft_margin_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5482470Z copying torch/include/ATen/ops/det_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5483710Z copying torch/include/ATen/ops/_foreach_sin.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5485010Z copying torch/include/ATen/ops/addr_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5486360Z copying torch/include/ATen/ops/_fused_adagrad_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5487630Z copying torch/include/ATen/ops/split_with_sizes_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5489010Z 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-08-14T20:47:59.5490190Z copying torch/include/ATen/ops/log_sigmoid_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5491480Z copying torch/include/ATen/ops/_foreach_div_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5492680Z copying torch/include/ATen/ops/prelu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5494010Z copying torch/include/ATen/ops/maximum_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5495220Z copying torch/include/ATen/ops/grid_sampler_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5496440Z copying torch/include/ATen/ops/_cslt_compress_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5497760Z copying torch/include/ATen/ops/_validate_compressed_sparse_indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5498930Z copying torch/include/ATen/ops/_foreach_ceil_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5500180Z copying torch/include/ATen/ops/to_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5501360Z copying torch/include/ATen/ops/fmod_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5502780Z copying torch/include/ATen/ops/special_xlog1py_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5503970Z 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-08-14T20:47:59.5505180Z copying torch/include/ATen/ops/_unsafe_index_put_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5506450Z copying torch/include/ATen/ops/logical_not_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5507700Z copying torch/include/ATen/ops/crow_indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5508900Z copying torch/include/ATen/ops/logspace_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5510230Z 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-08-14T20:47:59.5511500Z 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-08-14T20:47:59.5512740Z copying torch/include/ATen/ops/_fused_sgd_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5514070Z copying torch/include/ATen/ops/miopen_convolution_transpose_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5515260Z copying torch/include/ATen/ops/lift_fresh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5516690Z 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-08-14T20:47:59.5517930Z copying torch/include/ATen/ops/indices_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5519210Z copying torch/include/ATen/ops/sym_stride_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5520380Z copying torch/include/ATen/ops/isreal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5521630Z copying torch/include/ATen/ops/unbind_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5522920Z copying torch/include/ATen/ops/_spdiags_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5524210Z copying torch/include/ATen/ops/_pad_enum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5525500Z copying torch/include/ATen/ops/equal_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5526830Z copying torch/include/ATen/ops/_autocast_to_reduced_precision.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5528100Z copying torch/include/ATen/ops/mse_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5529410Z copying torch/include/ATen/ops/_addmm_activation_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5530600Z copying torch/include/ATen/ops/pin_memory_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5531890Z copying torch/include/ATen/ops/max_unpool2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5533350Z copying torch/include/ATen/ops/flatten_dense_tensors_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5534660Z copying torch/include/ATen/ops/avg_pool1d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5535900Z copying torch/include/ATen/ops/_reshape_alias_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5537160Z copying torch/include/ATen/ops/_histogramdd_from_bin_cts_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5538400Z copying torch/include/ATen/ops/einsum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5539700Z copying torch/include/ATen/ops/_ctc_loss_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5540950Z copying torch/include/ATen/ops/xlogy_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5542340Z copying torch/include/ATen/ops/diagonal_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5543440Z copying torch/include/ATen/ops/is_conj.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5544830Z 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-08-14T20:47:59.5546110Z copying torch/include/ATen/ops/miopen_convolution_relu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5547430Z copying torch/include/ATen/ops/permute_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5548660Z copying torch/include/ATen/ops/multiply.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5549960Z copying torch/include/ATen/ops/batch_norm_stats_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5551350Z copying torch/include/ATen/ops/tensordot_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5552580Z copying torch/include/ATen/ops/silu_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5554020Z 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-08-14T20:47:59.5555290Z copying torch/include/ATen/ops/nll_loss_forward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5556580Z copying torch/include/ATen/ops/trapezoid.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5557820Z copying torch/include/ATen/ops/prelu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5559240Z copying torch/include/ATen/ops/_convolution_double_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5560400Z copying torch/include/ATen/ops/_nested_tensor_strides_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5561580Z copying torch/include/ATen/ops/q_zero_point.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5562890Z copying torch/include/ATen/ops/_resize_output_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5564130Z copying torch/include/ATen/ops/isfinite_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5565390Z copying torch/include/ATen/ops/masked_fill_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5566880Z copying torch/include/ATen/ops/sparse_resize_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5568220Z copying torch/include/ATen/ops/unfold_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5569950Z copying torch/include/ATen/ops/_weight_int8pack_mm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5571310Z copying torch/include/ATen/ops/rrelu_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5572640Z copying torch/include/ATen/ops/addcdiv_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5574190Z copying torch/include/ATen/ops/mkldnn_linear_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5575610Z copying torch/include/ATen/ops/_sparse_softmax_backward_data.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5576880Z copying torch/include/ATen/ops/mkldnn_max_pool2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5578240Z 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-08-14T20:47:59.5579460Z copying torch/include/ATen/ops/special_bessel_j1_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5580900Z 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-08-14T20:47:59.5582050Z copying torch/include/ATen/ops/_nested_from_padded_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5583230Z copying torch/include/ATen/ops/isin_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5584640Z 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-08-14T20:47:59.5585760Z 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-08-14T20:47:59.5587070Z 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-08-14T20:47:59.5588260Z copying torch/include/ATen/ops/linalg_matmul.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5589550Z 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-08-14T20:47:59.5590880Z copying torch/include/ATen/ops/special_bessel_y1_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5592110Z copying torch/include/ATen/ops/reciprocal_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5593350Z copying torch/include/ATen/ops/tril_indices_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5594570Z copying torch/include/ATen/ops/isposinf_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5595790Z copying torch/include/ATen/ops/_nested_get_max_seqlen_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5597030Z copying torch/include/ATen/ops/gcd_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5598270Z copying torch/include/ATen/ops/_convolution_double_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5599530Z copying torch/include/ATen/ops/softshrink_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5600770Z copying torch/include/ATen/ops/_sparse_mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5602070Z copying torch/include/ATen/ops/_cudnn_ctc_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5603260Z copying torch/include/ATen/ops/_foreach_neg_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5604510Z copying torch/include/ATen/ops/leaky_relu_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5605820Z copying torch/include/ATen/ops/nested_to_padded_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5607050Z copying torch/include/ATen/ops/_add_relu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5608280Z copying torch/include/ATen/ops/round_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5609570Z copying torch/include/ATen/ops/resolve_conj_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5610860Z copying torch/include/ATen/ops/mkldnn_linear_backward_input_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5612230Z copying torch/include/ATen/ops/fft_fftshift_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5613380Z copying torch/include/ATen/ops/ones_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5614660Z copying torch/include/ATen/ops/_foreach_clamp_max.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5615970Z copying torch/include/ATen/ops/log_sigmoid_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5617380Z copying torch/include/ATen/ops/_slow_conv2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5618550Z copying torch/include/ATen/ops/neg_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5619870Z 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-08-14T20:47:59.5621250Z 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-08-14T20:47:59.5622530Z copying torch/include/ATen/ops/replication_pad2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5623710Z copying torch/include/ATen/ops/lerp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5624990Z copying torch/include/ATen/ops/exp_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5626350Z copying torch/include/ATen/ops/is_set_to_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5627550Z copying torch/include/ATen/ops/logsumexp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5629050Z copying torch/include/ATen/ops/scatter_add_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5630360Z copying torch/include/ATen/ops/_pad_packed_sequence.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5632540Z copying torch/include/ATen/ops/round.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5633810Z copying torch/include/ATen/ops/_sparse_coo_tensor_unsafe_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5635230Z copying torch/include/ATen/ops/roll_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5636510Z copying torch/include/ATen/ops/i0_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5637840Z copying torch/include/ATen/ops/alias_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5639080Z copying torch/include/ATen/ops/mish_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5640400Z copying torch/include/ATen/ops/replication_pad2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5641630Z copying torch/include/ATen/ops/addcmul_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5642880Z copying torch/include/ATen/ops/std_mean_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5644310Z copying torch/include/ATen/ops/multilabel_margin_loss_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5645490Z copying torch/include/ATen/ops/prod_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5646780Z copying torch/include/ATen/ops/pow_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5648090Z copying torch/include/ATen/ops/resize_as_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5649380Z copying torch/include/ATen/ops/gcd_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5650820Z copying torch/include/ATen/ops/convolution_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5652070Z copying torch/include/ATen/ops/_to_sparse_sparsecsrmps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5653510Z copying torch/include/ATen/ops/linalg_det_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5654760Z copying torch/include/ATen/ops/_foreach_log10.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5655920Z copying torch/include/ATen/ops/select_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5657220Z copying torch/include/ATen/ops/_masked_softmax_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5658550Z copying torch/include/ATen/ops/upsample_bilinear2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5659850Z copying torch/include/ATen/ops/mean_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5661050Z copying torch/include/ATen/ops/upsample_linear1d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5662330Z copying torch/include/ATen/ops/scalar_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5663690Z copying torch/include/ATen/ops/_embedding_bag_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5664880Z copying torch/include/ATen/ops/nonzero_static.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5666100Z copying torch/include/ATen/ops/im2col_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5667390Z copying torch/include/ATen/ops/special_spherical_bessel_j0_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5668680Z copying torch/include/ATen/ops/_cslt_sparse_mm_search_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5669910Z copying torch/include/ATen/ops/im2col_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5671250Z copying torch/include/ATen/ops/rrelu_with_noise_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5672500Z copying torch/include/ATen/ops/sparse_dim_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5673820Z copying torch/include/ATen/ops/vsplit_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5674960Z copying torch/include/ATen/ops/copysign_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5676270Z copying torch/include/ATen/ops/_reshape_from_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5677500Z copying torch/include/ATen/ops/_fw_primal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5678820Z copying torch/include/ATen/ops/qscheme_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5680150Z copying torch/include/ATen/ops/randint_like_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5681340Z copying torch/include/ATen/ops/_print.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5682620Z 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-08-14T20:47:59.5683900Z copying torch/include/ATen/ops/set_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5685110Z copying torch/include/ATen/ops/is_coalesced_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5686430Z copying torch/include/ATen/ops/_foreach_ceil_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5687660Z copying torch/include/ATen/ops/_cudnn_init_dropout_state.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5689020Z copying torch/include/ATen/ops/index_fill_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5690290Z copying torch/include/ATen/ops/_cudnn_rnn_flatten_weight_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5691470Z copying torch/include/ATen/ops/polygamma.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5692880Z copying torch/include/ATen/ops/nextafter_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5694230Z 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-08-14T20:47:59.5695420Z copying torch/include/ATen/ops/upsample_bilinear2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5696690Z copying torch/include/ATen/ops/gt_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5697900Z copying torch/include/ATen/ops/swapaxes_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5699190Z 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-08-14T20:47:59.5700450Z 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-08-14T20:47:59.5701740Z copying torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5703180Z copying torch/include/ATen/ops/sparse_compressed_tensor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5704310Z copying torch/include/ATen/ops/quantile.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5705690Z copying torch/include/ATen/ops/argmin_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5706910Z copying torch/include/ATen/ops/_linalg_solve_ex_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5708340Z copying torch/include/ATen/ops/narrow_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5715060Z copying torch/include/ATen/ops/convolution_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5715500Z copying torch/include/ATen/ops/masked_scatter_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5715760Z copying torch/include/ATen/ops/_nnpack_available.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5716080Z copying torch/include/ATen/ops/mps_convolution_transpose_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5716500Z copying torch/include/ATen/ops/new_zeros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5716870Z copying torch/include/ATen/ops/cudnn_grid_sampler_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5717270Z copying torch/include/ATen/ops/replication_pad1d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5718670Z copying torch/include/ATen/ops/replication_pad2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5719830Z copying torch/include/ATen/ops/miopen_convolution_relu_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5720980Z copying torch/include/ATen/ops/uniform_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5722340Z copying torch/include/ATen/ops/fft_hfftn_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5723850Z copying torch/include/ATen/ops/_log_softmax_backward_data_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5724910Z copying torch/include/ATen/ops/_foreach_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5726150Z copying torch/include/ATen/ops/mT_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5727450Z copying torch/include/ATen/ops/nonzero_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5728730Z copying torch/include/ATen/ops/_pack_padded_sequence.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5729980Z copying torch/include/ATen/ops/_foreach_neg.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5731270Z copying torch/include/ATen/ops/linalg_multi_dot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5732600Z copying torch/include/ATen/ops/_convert_weight_to_int4pack_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5733870Z copying torch/include/ATen/ops/_cummax_helper_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5735110Z copying torch/include/ATen/ops/arange_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5736430Z copying torch/include/ATen/ops/_mkldnn_transpose_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5737590Z copying torch/include/ATen/ops/ne.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5738880Z copying torch/include/ATen/ops/threshold_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5740150Z copying torch/include/ATen/ops/rrelu_with_noise_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5741550Z 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-08-14T20:47:59.5742900Z copying torch/include/ATen/ops/cumprod_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5744110Z copying torch/include/ATen/ops/lu_unpack_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5745340Z copying torch/include/ATen/ops/special_erfc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5746580Z copying torch/include/ATen/ops/_nested_sum_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5747850Z copying torch/include/ATen/ops/quantized_max_pool1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5749070Z copying torch/include/ATen/ops/linalg_lstsq_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5750350Z copying torch/include/ATen/ops/ormqr_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5751750Z 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-08-14T20:47:59.5752940Z copying torch/include/ATen/ops/is_nonzero.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5754100Z copying torch/include/ATen/ops/glu_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5755370Z copying torch/include/ATen/ops/_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5756710Z copying torch/include/ATen/ops/bitwise_xor_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5757940Z copying torch/include/ATen/ops/sigmoid_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5759110Z copying torch/include/ATen/ops/_foreach_cos.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5760440Z copying torch/include/ATen/ops/randn_like_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5761740Z copying torch/include/ATen/ops/_slow_conv2d_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5763060Z copying torch/include/ATen/ops/subtract_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5764420Z copying torch/include/ATen/ops/sparse_compressed_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5765700Z copying torch/include/ATen/ops/_foreach_ceil_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5767010Z copying torch/include/ATen/ops/div_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5768400Z copying torch/include/ATen/ops/_choose_qparams_per_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5769720Z copying torch/include/ATen/ops/_foreach_div_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5771010Z copying torch/include/ATen/ops/logical_or_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5772290Z 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-08-14T20:47:59.5773600Z copying torch/include/ATen/ops/mul_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5775020Z copying torch/include/ATen/ops/pixel_unshuffle_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5776150Z copying torch/include/ATen/ops/swapaxes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5777350Z copying torch/include/ATen/ops/divide_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5778760Z copying torch/include/ATen/ops/_foreach_zero_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5779970Z copying torch/include/ATen/ops/sub.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5781310Z copying torch/include/ATen/ops/rsub_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5782670Z copying torch/include/ATen/ops/_linalg_check_errors_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5783980Z copying torch/include/ATen/ops/_foreach_sinh_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5785260Z copying torch/include/ATen/ops/rrelu_with_noise_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5786490Z copying torch/include/ATen/ops/_fft_r2c_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5787860Z copying torch/include/ATen/ops/special_entr_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5789000Z copying torch/include/ATen/ops/conv1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5790220Z copying torch/include/ATen/ops/view_as_real_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5791450Z copying torch/include/ATen/ops/linalg_svd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5792740Z copying torch/include/ATen/ops/native_batch_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5794100Z copying torch/include/ATen/ops/negative_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5795260Z copying torch/include/ATen/ops/constant_pad_nd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5796540Z copying torch/include/ATen/ops/index_copy_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5797800Z copying torch/include/ATen/ops/logical_or_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5799040Z copying torch/include/ATen/ops/quantized_lstm_cell.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5800270Z copying torch/include/ATen/ops/glu_jvp_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5801520Z copying torch/include/ATen/ops/linalg_lu_factor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5802850Z copying torch/include/ATen/ops/to_sparse_csr_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5804070Z copying torch/include/ATen/ops/is_leaf_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5805280Z copying torch/include/ATen/ops/binomial_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5806590Z 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-08-14T20:47:59.5807860Z copying torch/include/ATen/ops/to_sparse_csc_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5809040Z copying torch/include/ATen/ops/log2_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5810320Z 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-08-14T20:47:59.5811590Z copying torch/include/ATen/ops/resolve_conj_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5812870Z 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-08-14T20:47:59.5814070Z copying torch/include/ATen/ops/row_indices_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5815320Z copying torch/include/ATen/ops/_foreach_exp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5816530Z copying torch/include/ATen/ops/layer_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5817680Z copying torch/include/ATen/ops/sum_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5819160Z copying torch/include/ATen/ops/_sobol_engine_draw_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5820450Z copying torch/include/ATen/ops/_sparse_mask_projection_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5821680Z 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-08-14T20:47:59.5822960Z copying torch/include/ATen/ops/special_zeta_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5824270Z copying torch/include/ATen/ops/upsample_trilinear3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5825540Z copying torch/include/ATen/ops/special_log_ndtr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5826830Z copying torch/include/ATen/ops/_foreach_erf_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5828040Z copying torch/include/ATen/ops/copy_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5829300Z copying torch/include/ATen/ops/linalg_lu_solve_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5830630Z copying torch/include/ATen/ops/log_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5831790Z copying torch/include/ATen/ops/linalg_eigvalsh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5833070Z copying torch/include/ATen/ops/upsample_linear1d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5834440Z copying torch/include/ATen/ops/_test_optional_intlist_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5835560Z copying torch/include/ATen/ops/argmin_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5836990Z copying torch/include/ATen/ops/_masked_softmax_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5838230Z copying torch/include/ATen/ops/linear_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5839480Z copying torch/include/ATen/ops/upsample_nearest2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5840680Z copying torch/include/ATen/ops/special_zeta_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5841930Z copying torch/include/ATen/ops/is_complex_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5843280Z copying torch/include/ATen/ops/_to_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5844490Z copying torch/include/ATen/ops/_cdist_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5845730Z copying torch/include/ATen/ops/add_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5846960Z copying torch/include/ATen/ops/diagonal_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5848180Z copying torch/include/ATen/ops/_linalg_check_errors.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5849420Z copying torch/include/ATen/ops/angle_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5850670Z copying torch/include/ATen/ops/from_file_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5851930Z copying torch/include/ATen/ops/_nested_get_min_seqlen_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5853210Z copying torch/include/ATen/ops/_nested_get_values_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5854420Z copying torch/include/ATen/ops/_masked_softmax_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5855750Z copying torch/include/ATen/ops/bincount_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5857390Z 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-08-14T20:47:59.5858950Z copying torch/include/ATen/ops/sort_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5860270Z copying torch/include/ATen/ops/_lazy_clone_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5861730Z copying torch/include/ATen/ops/align_tensors_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5863110Z copying torch/include/ATen/ops/scatter_reduce_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5864330Z copying torch/include/ATen/ops/thnn_conv2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5865680Z copying torch/include/ATen/ops/baddbmm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5867130Z copying torch/include/ATen/ops/feature_alpha_dropout_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5868430Z copying torch/include/ATen/ops/embedding_renorm_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5869780Z copying torch/include/ATen/ops/avg_pool3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5871170Z copying torch/include/ATen/ops/multilabel_margin_loss_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5872690Z copying torch/include/ATen/ops/reciprocal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5874060Z copying torch/include/ATen/ops/contiguous_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5875400Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5876770Z copying torch/include/ATen/ops/sparse_mask_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5878290Z 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-08-14T20:47:59.5879870Z copying torch/include/ATen/ops/col_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5881080Z copying torch/include/ATen/ops/unique_dim_consecutive_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5882390Z copying torch/include/ATen/ops/_dim_arange_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5883680Z copying torch/include/ATen/ops/tril_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5885090Z copying torch/include/ATen/ops/logical_not_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5886540Z copying torch/include/ATen/ops/_histogramdd_from_bin_cts_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5887950Z 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-08-14T20:47:59.5889130Z copying torch/include/ATen/ops/bitwise_xor_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5890370Z copying torch/include/ATen/ops/arcsin.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5891530Z copying torch/include/ATen/ops/qr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5892810Z copying torch/include/ATen/ops/view_as_real_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5894400Z copying torch/include/ATen/ops/softshrink_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5895670Z copying torch/include/ATen/ops/frac_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5897020Z 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-08-14T20:47:59.5898240Z copying torch/include/ATen/ops/miopen_rnn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5899560Z copying torch/include/ATen/ops/_native_multi_head_attention_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5901190Z copying torch/include/ATen/ops/_segment_reduce_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5902450Z copying torch/include/ATen/ops/_linalg_eigvals_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5903780Z copying torch/include/ATen/ops/_test_string_default_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5904990Z copying torch/include/ATen/ops/sparse_csr_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5906290Z copying torch/include/ATen/ops/logaddexp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5907670Z copying torch/include/ATen/ops/grid_sampler_2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5909020Z copying torch/include/ATen/ops/pairwise_distance.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5910390Z copying torch/include/ATen/ops/avg_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5911580Z copying torch/include/ATen/ops/hardswish_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5912810Z copying torch/include/ATen/ops/_cast_Long_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5914030Z copying torch/include/ATen/ops/nll_loss2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5915370Z copying torch/include/ATen/ops/fft_ifftshift_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5916760Z copying torch/include/ATen/ops/triangular_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5918080Z 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-08-14T20:47:59.5919350Z copying torch/include/ATen/ops/cos_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5920690Z copying torch/include/ATen/ops/adaptive_max_pool1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5921990Z copying torch/include/ATen/ops/_mkldnn_transpose_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5923450Z copying torch/include/ATen/ops/_nested_tensor_strides_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5924670Z 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-08-14T20:47:59.5925930Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5927240Z copying torch/include/ATen/ops/cudnn_convolution.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5928480Z copying torch/include/ATen/ops/mkldnn_linear_backward_weights_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5929700Z copying torch/include/ATen/ops/atleast_2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5931000Z copying torch/include/ATen/ops/choose_qparams_optimized.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5932310Z copying torch/include/ATen/ops/_linalg_slogdet.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5933610Z copying torch/include/ATen/ops/_slow_conv2d_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5934900Z copying torch/include/ATen/ops/real_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5936170Z copying torch/include/ATen/ops/special_bessel_y1.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5937380Z copying torch/include/ATen/ops/slice.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5938680Z copying torch/include/ATen/ops/_nested_tensor_size_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5940160Z copying torch/include/ATen/ops/_sparse_csr_tensor_unsafe_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5941370Z copying torch/include/ATen/ops/_spdiags.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5942720Z copying torch/include/ATen/ops/linalg_matmul_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5944160Z copying torch/include/ATen/ops/hamming_window_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5945390Z copying torch/include/ATen/ops/_neg_view.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5946670Z copying torch/include/ATen/ops/unsafe_split.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5947970Z copying torch/include/ATen/ops/sign_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5949360Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5950570Z copying torch/include/ATen/ops/logaddexp2_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5951910Z copying torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5953180Z copying torch/include/ATen/ops/div_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5954490Z copying torch/include/ATen/ops/trace_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5956200Z copying torch/include/ATen/ops/trapezoid_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5957360Z copying torch/include/ATen/ops/fft_hfft_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5958760Z copying torch/include/ATen/ops/chalf_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5959940Z copying torch/include/ATen/ops/linear_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5961190Z copying torch/include/ATen/ops/nll_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5962650Z copying torch/include/ATen/ops/_nested_tensor_strides_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5963900Z copying torch/include/ATen/ops/_foreach_clamp_min_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5965050Z copying torch/include/ATen/ops/fft_ifft_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5966520Z copying torch/include/ATen/ops/value_selecting_reduction_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5967870Z copying torch/include/ATen/ops/triplet_margin_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5969430Z copying torch/include/ATen/ops/_slow_conv2d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5970920Z copying torch/include/ATen/ops/mH_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5973200Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5974450Z 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-08-14T20:47:59.5976010Z copying torch/include/ATen/ops/col2im_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5977540Z copying torch/include/ATen/ops/_fft_c2r_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5978830Z copying torch/include/ATen/ops/arcsinh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5980040Z copying torch/include/ATen/ops/type_as_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5981390Z copying torch/include/ATen/ops/linalg_eigvals_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5982720Z copying torch/include/ATen/ops/exp2_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5984130Z copying torch/include/ATen/ops/adaptive_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5985580Z copying torch/include/ATen/ops/special_laguerre_polynomial_l_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5986680Z copying torch/include/ATen/ops/_safe_softmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5987890Z copying torch/include/ATen/ops/_copy_from_and_resize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5989170Z copying torch/include/ATen/ops/linalg_ldl_solve_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5990390Z copying torch/include/ATen/ops/logdet.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5991780Z copying torch/include/ATen/ops/align_as_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5992980Z copying torch/include/ATen/ops/tanh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5994450Z copying torch/include/ATen/ops/unique_dim_consecutive_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5995640Z copying torch/include/ATen/ops/special_erfinv_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5996910Z copying torch/include/ATen/ops/_batch_norm_impl_index_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5998320Z copying torch/include/ATen/ops/tanh_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.5999630Z copying torch/include/ATen/ops/_unsafe_masked_index_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6000930Z copying torch/include/ATen/ops/trunc_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6002320Z copying torch/include/ATen/ops/_cholesky_solve_helper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6003630Z copying torch/include/ATen/ops/special_laguerre_polynomial_l.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6004970Z copying torch/include/ATen/ops/mv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6006310Z copying torch/include/ATen/ops/logit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6007660Z copying torch/include/ATen/ops/min_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6008920Z copying torch/include/ATen/ops/isnan_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6010140Z copying torch/include/ATen/ops/_unique2_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6011450Z copying torch/include/ATen/ops/_mkldnn_reshape_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6012830Z 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-08-14T20:47:59.6014010Z copying torch/include/ATen/ops/_pack_padded_sequence_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6015410Z copying torch/include/ATen/ops/upsample_trilinear3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6016570Z copying torch/include/ATen/ops/normal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6017950Z copying torch/include/ATen/ops/col_indices_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6019310Z copying torch/include/ATen/ops/cumprod_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6020440Z copying torch/include/ATen/ops/smm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6021840Z copying torch/include/ATen/ops/_transformer_encoder_layer_fwd_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6023190Z copying torch/include/ATen/ops/less_equal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6024420Z copying torch/include/ATen/ops/new_ones_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6025690Z copying torch/include/ATen/ops/nonzero_static_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6026890Z copying torch/include/ATen/ops/sinc_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6028210Z copying torch/include/ATen/ops/binary_cross_entropy_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6029480Z copying torch/include/ATen/ops/rename_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6030740Z copying torch/include/ATen/ops/expand_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6032050Z copying torch/include/ATen/ops/complex_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6033340Z copying torch/include/ATen/ops/_weight_norm_interface_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6034730Z copying torch/include/ATen/ops/cross_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6035970Z copying torch/include/ATen/ops/adaptive_avg_pool2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6037150Z copying torch/include/ATen/ops/isin_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6038360Z copying torch/include/ATen/ops/special_i1_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6039620Z copying torch/include/ATen/ops/pinverse_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6040850Z copying torch/include/ATen/ops/_foreach_atan_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6042430Z copying torch/include/ATen/ops/swapaxes_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6043570Z copying torch/include/ATen/ops/lstm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6044900Z copying torch/include/ATen/ops/_mps_convolution_transpose_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6046120Z copying torch/include/ATen/ops/xlogy_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6047260Z copying torch/include/ATen/ops/expm1.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6048540Z copying torch/include/ATen/ops/dist_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6049930Z copying torch/include/ATen/ops/to_dense_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6051050Z copying torch/include/ATen/ops/maximum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6052370Z copying torch/include/ATen/ops/remainder_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6053530Z copying torch/include/ATen/ops/ones.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6055030Z 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-08-14T20:47:59.6056190Z copying torch/include/ATen/ops/_foreach_maximum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6057570Z copying torch/include/ATen/ops/slow_conv3d_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6058920Z copying torch/include/ATen/ops/aminmax_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6060200Z copying torch/include/ATen/ops/special_modified_bessel_i1.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6061700Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6063010Z copying torch/include/ATen/ops/mse_loss_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6064230Z copying torch/include/ATen/ops/_cummax_helper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6065580Z copying torch/include/ATen/ops/pad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6066690Z copying torch/include/ATen/ops/linalg_cross_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6067980Z copying torch/include/ATen/ops/_resize_output_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6069200Z copying torch/include/ATen/ops/gru_cell_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6070500Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6071820Z copying torch/include/ATen/ops/std_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6073080Z copying torch/include/ATen/ops/round_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6074330Z copying torch/include/ATen/ops/_to_cpu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6075740Z copying torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6077190Z copying torch/include/ATen/ops/fft_irfft2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6078630Z copying torch/include/ATen/ops/block_diag.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6079920Z copying torch/include/ATen/ops/_nested_get_offsets.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6081470Z copying torch/include/ATen/ops/logaddexp_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6082590Z copying torch/include/ATen/ops/atanh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6083940Z copying torch/include/ATen/ops/scatter_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6085100Z copying torch/include/ATen/ops/to_sparse_bsc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6086380Z copying torch/include/ATen/ops/exponential_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6087630Z copying torch/include/ATen/ops/miopen_depthwise_convolution_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6088870Z copying torch/include/ATen/ops/gather_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6090190Z copying torch/include/ATen/ops/_values_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6091390Z copying torch/include/ATen/ops/geqrf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6092640Z copying torch/include/ATen/ops/_pdist_forward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6093900Z copying torch/include/ATen/ops/bitwise_xor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6095180Z 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-08-14T20:47:59.6096460Z copying torch/include/ATen/ops/_fused_rms_norm_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6097830Z copying torch/include/ATen/ops/select_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6098960Z copying torch/include/ATen/ops/_aminmax_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6100230Z copying torch/include/ATen/ops/native_layer_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6101470Z copying torch/include/ATen/ops/sym_constrain_range_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6102780Z copying torch/include/ATen/ops/rad2deg_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6103880Z copying torch/include/ATen/ops/frexp_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6105210Z copying torch/include/ATen/ops/_foreach_log1p_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6106500Z copying torch/include/ATen/ops/special_gammaincc_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6107650Z copying torch/include/ATen/ops/linalg_vander_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6109000Z 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-08-14T20:47:59.6110280Z 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-08-14T20:47:59.6111430Z copying torch/include/ATen/ops/split_with_sizes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6112730Z copying torch/include/ATen/ops/selu_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6113890Z copying torch/include/ATen/ops/special_i1_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6115100Z copying torch/include/ATen/ops/sum_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6116410Z copying torch/include/ATen/ops/vdot_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6117710Z copying torch/include/ATen/ops/special_erfcx_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6118880Z copying torch/include/ATen/ops/pinverse_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6120090Z copying torch/include/ATen/ops/fbgemm_linear_fp16_weight_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6121560Z copying torch/include/ATen/ops/reflection_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6122700Z copying torch/include/ATen/ops/add.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6124070Z copying torch/include/ATen/ops/unsqueeze_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6125290Z copying torch/include/ATen/ops/_cummax_helper_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6126600Z copying torch/include/ATen/ops/rand_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6127880Z copying torch/include/ATen/ops/flatten_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6129090Z copying torch/include/ATen/ops/eq_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6130290Z copying torch/include/ATen/ops/_batch_norm_impl_index_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6131590Z copying torch/include/ATen/ops/less_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6132790Z copying torch/include/ATen/ops/cholesky_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6134010Z copying torch/include/ATen/ops/upsample_nearest1d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6135350Z 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-08-14T20:47:59.6136620Z copying torch/include/ATen/ops/sort_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6137870Z copying torch/include/ATen/ops/avg_pool2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6139140Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6140550Z 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-08-14T20:47:59.6141750Z copying torch/include/ATen/ops/upsample_nearest3d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6143070Z 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-08-14T20:47:59.6144300Z copying torch/include/ATen/ops/reflection_pad1d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6145610Z copying torch/include/ATen/ops/true_divide_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6146830Z copying torch/include/ATen/ops/max_pool1d_with_indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6148090Z copying torch/include/ATen/ops/special_erf_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6149260Z copying torch/include/ATen/ops/avg_pool3d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6150620Z copying torch/include/ATen/ops/upsample_nearest1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6151860Z copying torch/include/ATen/ops/sin_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6153130Z copying torch/include/ATen/ops/sum_to_size.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6154510Z copying torch/include/ATen/ops/slice_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6155850Z copying torch/include/ATen/ops/gather_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6157070Z copying torch/include/ATen/ops/special_hermite_polynomial_he_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6158260Z copying torch/include/ATen/ops/gradient_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6159510Z copying torch/include/ATen/ops/_cslt_compress.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6160810Z 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-08-14T20:47:59.6162050Z copying torch/include/ATen/ops/fractional_max_pool2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6163300Z 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-08-14T20:47:59.6164520Z copying torch/include/ATen/ops/_test_optional_intlist_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6165740Z copying torch/include/ATen/ops/log_normal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6166970Z copying torch/include/ATen/ops/hypot_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6168160Z copying torch/include/ATen/ops/hypot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6169400Z copying torch/include/ATen/ops/nll_loss_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6170610Z copying torch/include/ATen/ops/_nested_tensor_size_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6171900Z copying torch/include/ATen/ops/reflection_pad3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6173160Z 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-08-14T20:47:59.6174410Z copying torch/include/ATen/ops/linalg_qr_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6175660Z copying torch/include/ATen/ops/_nnz_sparsecsrmps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6176980Z copying torch/include/ATen/ops/masked_scatter_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6178230Z copying torch/include/ATen/ops/isclose_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6179510Z copying torch/include/ATen/ops/sqrt_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6180720Z copying torch/include/ATen/ops/_unique2_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6182030Z copying torch/include/ATen/ops/hypot_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6183260Z copying torch/include/ATen/ops/requires_grad_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6184470Z 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-08-14T20:47:59.6185650Z copying torch/include/ATen/ops/linalg_cross_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6186920Z copying torch/include/ATen/ops/special_bessel_j0_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6188140Z copying torch/include/ATen/ops/rsub_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6189350Z copying torch/include/ATen/ops/sort_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6190580Z copying torch/include/ATen/ops/sparse_resize_and_clear_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6191820Z copying torch/include/ATen/ops/_grouped_mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6193120Z copying torch/include/ATen/ops/put_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6194270Z copying torch/include/ATen/ops/eq_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6195540Z 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-08-14T20:47:59.6196820Z 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-08-14T20:47:59.6197960Z copying torch/include/ATen/ops/_foreach_floor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6199250Z 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-08-14T20:47:59.6200460Z copying torch/include/ATen/ops/signbit_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6201720Z copying torch/include/ATen/ops/erfinv_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6202900Z copying torch/include/ATen/ops/diag_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6204200Z copying torch/include/ATen/ops/_functional_sym_constrain_range_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6205450Z 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-08-14T20:47:59.6206660Z copying torch/include/ATen/ops/_logcumsumexp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6208320Z copying torch/include/ATen/ops/fractional_max_pool3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6209730Z copying torch/include/ATen/ops/logical_or.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6211250Z copying torch/include/ATen/ops/prod_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6212750Z copying torch/include/ATen/ops/_foreach_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6214200Z copying torch/include/ATen/ops/_pdist_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6215670Z copying torch/include/ATen/ops/empty_permuted_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6217050Z copying torch/include/ATen/ops/topk_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6218620Z copying torch/include/ATen/ops/zeros_like_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6220580Z copying torch/include/ATen/ops/linalg_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6221290Z copying torch/include/ATen/ops/bincount_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6222790Z copying torch/include/ATen/ops/set_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6224210Z copying torch/include/ATen/ops/i0_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6225390Z copying torch/include/ATen/ops/linalg_cholesky_ex_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6226780Z copying torch/include/ATen/ops/asinh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6228300Z copying torch/include/ATen/ops/not_equal_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6229590Z copying torch/include/ATen/ops/resize_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6231080Z copying torch/include/ATen/ops/logcumsumexp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6232230Z copying torch/include/ATen/ops/ravel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6233690Z copying torch/include/ATen/ops/upsample_bilinear2d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6234890Z copying torch/include/ATen/ops/bitwise_and_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6236230Z 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-08-14T20:47:59.6237480Z copying torch/include/ATen/ops/_index_put_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6238970Z copying torch/include/ATen/ops/isin_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6239960Z copying torch/include/ATen/ops/_foreach_expm1_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6241130Z copying torch/include/ATen/ops/_cast_Short.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6242350Z copying torch/include/ATen/ops/_sparse_broadcast_to_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6243650Z copying torch/include/ATen/ops/select_scatter_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6245120Z copying torch/include/ATen/ops/fmod_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6246380Z copying torch/include/ATen/ops/masked_scatter_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6247880Z 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-08-14T20:47:59.6249240Z copying torch/include/ATen/ops/hardtanh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6250820Z copying torch/include/ATen/ops/lshift_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6252050Z copying torch/include/ATen/ops/index_reduce_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6253390Z copying torch/include/ATen/ops/_linalg_solve_ex_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6254830Z 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-08-14T20:47:59.6256080Z copying torch/include/ATen/ops/std_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6257350Z copying torch/include/ATen/ops/vsplit_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6258830Z copying torch/include/ATen/ops/_add_relu_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6260140Z copying torch/include/ATen/ops/_foreach_tan_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6261420Z copying torch/include/ATen/ops/linalg_lu_solve_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6262640Z copying torch/include/ATen/ops/_sparse_csr_sum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6264380Z copying torch/include/ATen/ops/view_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6265600Z copying torch/include/ATen/ops/ccol_indices_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6266980Z copying torch/include/ATen/ops/resize_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6268440Z copying torch/include/ATen/ops/max_pool2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6269850Z copying torch/include/ATen/ops/constant_pad_nd_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6271410Z copying torch/include/ATen/ops/sparse_mask_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6272620Z copying torch/include/ATen/ops/silu_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6273920Z copying torch/include/ATen/ops/choose_qparams_optimized_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6275110Z copying torch/include/ATen/ops/log_softmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6276580Z 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-08-14T20:47:59.6277770Z copying torch/include/ATen/ops/_foreach_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6279040Z copying torch/include/ATen/ops/_version_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6280240Z copying torch/include/ATen/ops/_pdist_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6281490Z copying torch/include/ATen/ops/mse_loss_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6282720Z copying torch/include/ATen/ops/corrcoef_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6284090Z copying torch/include/ATen/ops/_neg_view_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6285240Z copying torch/include/ATen/ops/_to_sparse_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6286450Z copying torch/include/ATen/ops/sin_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6287710Z copying torch/include/ATen/ops/_cast_Half_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6289070Z copying torch/include/ATen/ops/resize_as_sparse_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6290310Z copying torch/include/ATen/ops/_unpack_dual_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6291540Z copying torch/include/ATen/ops/glu_backward_jvp_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6292810Z copying torch/include/ATen/ops/hardswish_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6294110Z 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-08-14T20:47:59.6295380Z copying torch/include/ATen/ops/_foreach_sinh_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6296850Z copying torch/include/ATen/ops/_foreach_sub_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6298000Z copying torch/include/ATen/ops/_flash_attention_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6299310Z copying torch/include/ATen/ops/is_signed_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6300540Z 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-08-14T20:47:59.6301760Z copying torch/include/ATen/ops/hardsigmoid_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6302980Z copying torch/include/ATen/ops/linalg_matmul_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6304220Z copying torch/include/ATen/ops/_to_sparse_bsr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6305750Z copying torch/include/ATen/ops/int_repr_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6306690Z copying torch/include/ATen/ops/_pad_circular.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6308020Z copying torch/include/ATen/ops/embedding_dense_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6309370Z copying torch/include/ATen/ops/_fw_primal_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6310480Z copying torch/include/ATen/ops/_foreach_div.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6311860Z copying torch/include/ATen/ops/fft_hfft_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6313110Z 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-08-14T20:47:59.6314290Z copying torch/include/ATen/ops/to_sparse_bsr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6315510Z copying torch/include/ATen/ops/bmm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6316710Z copying torch/include/ATen/ops/conv3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6317940Z copying torch/include/ATen/ops/addcdiv_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6319170Z copying torch/include/ATen/ops/add_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6320490Z copying torch/include/ATen/ops/multi_margin_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6321640Z copying torch/include/ATen/ops/bitwise_xor_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6322830Z copying torch/include/ATen/ops/exp2_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6324060Z copying torch/include/ATen/ops/_nested_from_padded.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6325280Z copying torch/include/ATen/ops/sparse_bsr_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6326520Z copying torch/include/ATen/ops/combinations_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6327680Z copying torch/include/ATen/ops/fmod_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6328950Z copying torch/include/ATen/ops/broadcast_to.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6330350Z 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-08-14T20:47:59.6331560Z copying torch/include/ATen/ops/hardswish_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6332770Z 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-08-14T20:47:59.6334010Z copying torch/include/ATen/ops/_amp_update_scale_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6335220Z copying torch/include/ATen/ops/linalg_lu_solve_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6336430Z copying torch/include/ATen/ops/bitwise_or_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6337610Z copying torch/include/ATen/ops/special_i0e_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6338890Z 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-08-14T20:47:59.6340220Z copying torch/include/ATen/ops/ldexp_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6341380Z copying torch/include/ATen/ops/vdot_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6342530Z copying torch/include/ATen/ops/_conj_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6343750Z copying torch/include/ATen/ops/gt_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6345020Z copying torch/include/ATen/ops/diag_embed.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6346270Z copying torch/include/ATen/ops/sqrt_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6347530Z copying torch/include/ATen/ops/nan_to_num_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6348750Z copying torch/include/ATen/ops/conv2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6350040Z copying torch/include/ATen/ops/_batch_norm_with_update.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6351320Z copying torch/include/ATen/ops/_foreach_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6352650Z 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-08-14T20:47:59.6353830Z copying torch/include/ATen/ops/hardshrink_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6355050Z copying torch/include/ATen/ops/heaviside_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6356320Z copying torch/include/ATen/ops/pdist.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6357550Z copying torch/include/ATen/ops/fbgemm_pack_quantized_matrix_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6358800Z copying torch/include/ATen/ops/cholesky_solve_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6360010Z copying torch/include/ATen/ops/is_signed.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6361330Z 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-08-14T20:47:59.6362520Z copying torch/include/ATen/ops/ne_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6363920Z copying torch/include/ATen/ops/index_reduce.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6365230Z copying torch/include/ATen/ops/logit_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6366600Z copying torch/include/ATen/ops/linalg_multi_dot_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6368180Z 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-08-14T20:47:59.6369540Z copying torch/include/ATen/ops/linalg_eig_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6370970Z copying torch/include/ATen/ops/special_i1e_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6372490Z copying torch/include/ATen/ops/max_pool2d_with_indices_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6373840Z copying torch/include/ATen/ops/_conj_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6375140Z copying torch/include/ATen/ops/randperm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6376560Z copying torch/include/ATen/ops/blackman_window_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6377750Z copying torch/include/ATen/ops/_fused_adamw_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6379010Z copying torch/include/ATen/ops/rand_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6380300Z copying torch/include/ATen/ops/upsample_nearest1d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6381530Z copying torch/include/ATen/ops/_foreach_cosh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6382870Z copying torch/include/ATen/ops/remainder_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6384080Z copying torch/include/ATen/ops/rename_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6385410Z copying torch/include/ATen/ops/unfold_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6386660Z copying torch/include/ATen/ops/avg_pool2d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6387970Z copying torch/include/ATen/ops/bitwise_right_shift_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6389190Z copying torch/include/ATen/ops/upsample_nearest1d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6390430Z copying torch/include/ATen/ops/index_put_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6391660Z copying torch/include/ATen/ops/_is_zerotensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6392890Z copying torch/include/ATen/ops/exp_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6394150Z copying torch/include/ATen/ops/multilabel_margin_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6395340Z copying torch/include/ATen/ops/_test_check_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6396580Z copying torch/include/ATen/ops/embedding_dense_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6397950Z 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-08-14T20:47:59.6399100Z copying torch/include/ATen/ops/_cast_Float.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6400300Z copying torch/include/ATen/ops/_neg_view_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6401570Z copying torch/include/ATen/ops/acosh_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6402890Z 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-08-14T20:47:59.6404080Z copying torch/include/ATen/ops/_assert_tensor_metadata_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6405290Z copying torch/include/ATen/ops/sigmoid_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6406710Z copying torch/include/ATen/ops/norm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6412970Z copying torch/include/ATen/ops/index_fill_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6413360Z copying torch/include/ATen/ops/pad_sequence_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6413630Z copying torch/include/ATen/ops/unsafe_split_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6414490Z copying torch/include/ATen/ops/upsample_linear1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6414750Z copying torch/include/ATen/ops/mish_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6415110Z copying torch/include/ATen/ops/miopen_convolution_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6415460Z copying torch/include/ATen/ops/nonzero_numpy_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6416340Z copying torch/include/ATen/ops/addmm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6417590Z 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-08-14T20:47:59.6418720Z copying torch/include/ATen/ops/_convolution_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6419940Z copying torch/include/ATen/ops/atan2_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6421230Z copying torch/include/ATen/ops/bucketize_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6422450Z copying torch/include/ATen/ops/native_layer_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6423620Z copying torch/include/ATen/ops/tan.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6424880Z copying torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6426210Z 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-08-14T20:47:59.6427330Z copying torch/include/ATen/ops/ge_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6428590Z copying torch/include/ATen/ops/_logcumsumexp_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6429960Z copying torch/include/ATen/ops/hardsigmoid_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6431110Z copying torch/include/ATen/ops/lu_solve_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6432320Z copying torch/include/ATen/ops/conv_tbc_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6433580Z copying torch/include/ATen/ops/_log_softmax_backward_data_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6434870Z 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-08-14T20:47:59.6436130Z copying torch/include/ATen/ops/_sobol_engine_draw_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6437440Z copying torch/include/ATen/ops/hardtanh_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6438610Z copying torch/include/ATen/ops/bitwise_and_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6439880Z copying torch/include/ATen/ops/masked_select_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6441170Z copying torch/include/ATen/ops/lerp_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6442350Z copying torch/include/ATen/ops/matrix_exp_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6443540Z copying torch/include/ATen/ops/special_erfc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6444870Z copying torch/include/ATen/ops/cosh_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6446120Z copying torch/include/ATen/ops/linalg_cross_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6447330Z copying torch/include/ATen/ops/index_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6448570Z copying torch/include/ATen/ops/linalg_multi_dot_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6449880Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6451090Z copying torch/include/ATen/ops/_cslt_sparse_mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6452330Z copying torch/include/ATen/ops/adaptive_max_pool3d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6453540Z copying torch/include/ATen/ops/index_add.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6454790Z copying torch/include/ATen/ops/lt_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6456090Z copying torch/include/ATen/ops/max_pool2d_with_indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6457330Z copying torch/include/ATen/ops/nonzero_static_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6458620Z copying torch/include/ATen/ops/exponential_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6460000Z copying torch/include/ATen/ops/round_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6461310Z copying torch/include/ATen/ops/_reshape_alias_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6462520Z copying torch/include/ATen/ops/mkldnn_max_pool2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6463840Z copying torch/include/ATen/ops/nll_loss_forward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6464980Z copying torch/include/ATen/ops/cummin_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6466230Z copying torch/include/ATen/ops/quantize_per_channel_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6467420Z copying torch/include/ATen/ops/cauchy_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6468660Z copying torch/include/ATen/ops/rsqrt_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6469950Z copying torch/include/ATen/ops/linspace_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6471210Z copying torch/include/ATen/ops/max_pool3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6472420Z copying torch/include/ATen/ops/special_modified_bessel_i1_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6473610Z copying torch/include/ATen/ops/frac_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6474970Z copying torch/include/ATen/ops/fft_fftfreq_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6476150Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6477350Z copying torch/include/ATen/ops/select_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6478630Z copying torch/include/ATen/ops/_nested_sum_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6480040Z copying torch/include/ATen/ops/_foreach_log_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6481470Z copying torch/include/ATen/ops/upsample_trilinear3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6482750Z copying torch/include/ATen/ops/logical_not_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6484040Z copying torch/include/ATen/ops/lift_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6485190Z copying torch/include/ATen/ops/inner_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6486430Z copying torch/include/ATen/ops/_triton_scaled_dot_attention.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6487670Z copying torch/include/ATen/ops/is_coalesced.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6488950Z copying torch/include/ATen/ops/native_group_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6490270Z copying torch/include/ATen/ops/native_dropout_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6491520Z copying torch/include/ATen/ops/fft_fftfreq_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6492850Z 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-08-14T20:47:59.6494120Z copying torch/include/ATen/ops/max_pool2d_with_indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6495310Z copying torch/include/ATen/ops/_standard_gamma_grad_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6496650Z copying torch/include/ATen/ops/linalg_inv_ex_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6498120Z copying torch/include/ATen/ops/quantize_per_tensor_dynamic_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6499520Z copying torch/include/ATen/ops/_sparse_semi_structured_addmm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6500900Z copying torch/include/ATen/ops/sum_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6502130Z copying torch/include/ATen/ops/hinge_embedding_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6503300Z copying torch/include/ATen/ops/nanmedian_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6504610Z copying torch/include/ATen/ops/dot_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6505950Z copying torch/include/ATen/ops/new_empty_strided_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6507140Z copying torch/include/ATen/ops/stack_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6508400Z copying torch/include/ATen/ops/fbgemm_linear_quantize_weight.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6509650Z copying torch/include/ATen/ops/smooth_l1_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6510990Z copying torch/include/ATen/ops/_sobol_engine_initialize_state_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6512340Z copying torch/include/ATen/ops/scatter_reduce_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6513540Z copying torch/include/ATen/ops/smm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6514920Z 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-08-14T20:47:59.6516160Z copying torch/include/ATen/ops/_cslt_sparse_mm_search_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6517450Z copying torch/include/ATen/ops/sym_stride_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6518650Z copying torch/include/ATen/ops/index_put_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6519980Z 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-08-14T20:47:59.6521200Z copying torch/include/ATen/ops/glu_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6522380Z copying torch/include/ATen/ops/view_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6523630Z copying torch/include/ATen/ops/_foreach_sign_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6524880Z copying torch/include/ATen/ops/index_add_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6526120Z copying torch/include/ATen/ops/native_layer_norm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6527330Z copying torch/include/ATen/ops/to_padded_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6528570Z copying torch/include/ATen/ops/is_set_to_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6529950Z copying torch/include/ATen/ops/_linalg_slogdet_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6531090Z copying torch/include/ATen/ops/_sparse_semi_structured_mm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6532320Z copying torch/include/ATen/ops/concatenate.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6533520Z copying torch/include/ATen/ops/logaddexp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6534950Z copying torch/include/ATen/ops/batch_norm_backward_reduce.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6536010Z copying torch/include/ATen/ops/_linalg_eigvals.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6537260Z copying torch/include/ATen/ops/qscheme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6538470Z copying torch/include/ATen/ops/silu_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6539750Z copying torch/include/ATen/ops/movedim_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6541030Z copying torch/include/ATen/ops/t_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6542190Z copying torch/include/ATen/ops/lu_unpack_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6543360Z copying torch/include/ATen/ops/thnn_conv2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6544720Z copying torch/include/ATen/ops/_functional_assert_scalar_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6546040Z copying torch/include/ATen/ops/lu_unpack_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6547230Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6548510Z copying torch/include/ATen/ops/sparse_sampled_addmm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6549720Z copying torch/include/ATen/ops/igammac_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6551050Z copying torch/include/ATen/ops/positive_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6552330Z copying torch/include/ATen/ops/quantized_max_pool1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6553620Z copying torch/include/ATen/ops/special_airy_ai_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6554870Z copying torch/include/ATen/ops/addcdiv_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6556170Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6557430Z copying torch/include/ATen/ops/_nested_get_max_seqlen_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6558910Z copying torch/include/ATen/ops/reflection_pad1d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6560070Z copying torch/include/ATen/ops/addcdiv_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6561300Z copying torch/include/ATen/ops/rsqrt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6562640Z 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-08-14T20:47:59.6563840Z copying torch/include/ATen/ops/_foreach_lgamma.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6565080Z copying torch/include/ATen/ops/argmax_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6566570Z 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-08-14T20:47:59.6567870Z 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-08-14T20:47:59.6569060Z copying torch/include/ATen/ops/erfc_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6570390Z copying torch/include/ATen/ops/_foreach_sin_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6571700Z copying torch/include/ATen/ops/threshold_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6573140Z copying torch/include/ATen/ops/svd_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6574500Z copying torch/include/ATen/ops/addmm_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6575690Z copying torch/include/ATen/ops/lift_fresh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6576940Z copying torch/include/ATen/ops/_foreach_zero_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6578180Z copying torch/include/ATen/ops/flatten_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6579620Z copying torch/include/ATen/ops/linalg_lu_factor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6581020Z copying torch/include/ATen/ops/special_chebyshev_polynomial_v.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6582300Z copying torch/include/ATen/ops/where_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6583540Z copying torch/include/ATen/ops/slice_inverse_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6584780Z copying torch/include/ATen/ops/special_airy_ai_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6586010Z copying torch/include/ATen/ops/_pad_enum_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6587470Z copying torch/include/ATen/ops/cosine_embedding_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6588650Z copying torch/include/ATen/ops/_fft_c2r_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6589910Z copying torch/include/ATen/ops/from_file.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6591240Z copying torch/include/ATen/ops/row_stack_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6592420Z copying torch/include/ATen/ops/clamp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6593880Z 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-08-14T20:47:59.6595210Z copying torch/include/ATen/ops/celu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6596530Z copying torch/include/ATen/ops/matrix_exp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6597920Z copying torch/include/ATen/ops/special_logit_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6599190Z copying torch/include/ATen/ops/special_erf_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6600450Z copying torch/include/ATen/ops/lstm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6601750Z copying torch/include/ATen/ops/atan2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6603110Z copying torch/include/ATen/ops/cummaxmin_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6604400Z copying torch/include/ATen/ops/_functional_sym_constrain_range.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6605800Z copying torch/include/ATen/ops/clamp_min_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6607110Z copying torch/include/ATen/ops/upsample_trilinear3d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6608330Z copying torch/include/ATen/ops/linalg_inv_ex_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6609670Z copying torch/include/ATen/ops/zero_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6613220Z copying torch/include/ATen/ops/_test_optional_floatlist_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6613480Z copying torch/include/ATen/ops/row_stack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6613750Z copying torch/include/ATen/ops/slow_conv_transpose3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6614740Z copying torch/include/ATen/ops/miopen_convolution_add_relu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6615980Z copying torch/include/ATen/ops/max_pool2d_with_indices_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6617130Z copying torch/include/ATen/ops/real.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6618440Z copying torch/include/ATen/ops/replication_pad1d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6619700Z copying torch/include/ATen/ops/pairwise_distance_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6620860Z copying torch/include/ATen/ops/_to_sparse_csr_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6622090Z copying torch/include/ATen/ops/nll_loss2d_forward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6623220Z copying torch/include/ATen/ops/_make_dual.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6624500Z copying torch/include/ATen/ops/_make_dual_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6625970Z 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-08-14T20:47:59.6627390Z copying torch/include/ATen/ops/renorm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6628720Z copying torch/include/ATen/ops/relu_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6630270Z 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-08-14T20:47:59.6631810Z copying torch/include/ATen/ops/linalg_qr_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6633060Z copying torch/include/ATen/ops/avg_pool2d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6634330Z copying torch/include/ATen/ops/_foreach_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6635640Z copying torch/include/ATen/ops/as_strided_scatter_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6636850Z copying torch/include/ATen/ops/_foreach_mul_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6638040Z copying torch/include/ATen/ops/ceil.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6639610Z 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-08-14T20:47:59.6640860Z copying torch/include/ATen/ops/align_to_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6642000Z copying torch/include/ATen/ops/sqrt_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6643300Z copying torch/include/ATen/ops/is_pinned_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6644480Z copying torch/include/ATen/ops/min_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6646060Z copying torch/include/ATen/ops/set_data_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6647210Z copying torch/include/ATen/ops/log_normal_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6648380Z copying torch/include/ATen/ops/_nnpack_available_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6649650Z copying torch/include/ATen/ops/bitwise_right_shift.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6651120Z copying torch/include/ATen/ops/threshold_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6652320Z copying torch/include/ATen/ops/take_along_dim_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6653790Z 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-08-14T20:47:59.6654920Z copying torch/include/ATen/ops/_autocast_to_full_precision.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6656210Z copying torch/include/ATen/ops/is_distributed_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6657580Z copying torch/include/ATen/ops/_nested_get_min_seqlen.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6658810Z copying torch/include/ATen/ops/remainder_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6660010Z copying torch/include/ATen/ops/linalg_det_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6661320Z copying torch/include/ATen/ops/_convolution_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6662650Z copying torch/include/ATen/ops/_pad_packed_sequence_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6664010Z copying torch/include/ATen/ops/max_pool1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6665140Z 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-08-14T20:47:59.6666350Z copying torch/include/ATen/ops/randint_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6667740Z copying torch/include/ATen/ops/quantile_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6668870Z copying torch/include/ATen/ops/nested_to_padded_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6670230Z copying torch/include/ATen/ops/unbind_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6671380Z copying torch/include/ATen/ops/resize_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6672760Z copying torch/include/ATen/ops/_linalg_svd_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6673920Z copying torch/include/ATen/ops/isclose_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6675170Z copying torch/include/ATen/ops/resize_as_sparse_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6676430Z copying torch/include/ATen/ops/view_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6677810Z copying torch/include/ATen/ops/replication_pad1d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6679000Z 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-08-14T20:47:59.6680190Z copying torch/include/ATen/ops/triu_indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6681480Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k1.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6682730Z copying torch/include/ATen/ops/_scaled_grouped_mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6683930Z copying torch/include/ATen/ops/mish_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6685140Z copying torch/include/ATen/ops/atleast_2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6686340Z copying torch/include/ATen/ops/_nested_get_lengths.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6687640Z 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-08-14T20:47:59.6688840Z copying torch/include/ATen/ops/renorm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6690080Z copying torch/include/ATen/ops/native_group_norm_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6691400Z copying torch/include/ATen/ops/split_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6692720Z copying torch/include/ATen/ops/baddbmm_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6693910Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6695100Z copying torch/include/ATen/ops/take_along_dim_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6696350Z copying torch/include/ATen/ops/_reshape_from_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6697570Z copying torch/include/ATen/ops/hsplit_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6698810Z copying torch/include/ATen/ops/gather_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6700110Z 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-08-14T20:47:59.6701420Z copying torch/include/ATen/ops/threshold_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6702560Z copying torch/include/ATen/ops/t_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6703830Z copying torch/include/ATen/ops/triu_indices_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6705230Z copying torch/include/ATen/ops/replication_pad1d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6706460Z copying torch/include/ATen/ops/absolute_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6707700Z copying torch/include/ATen/ops/isnan_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6708910Z copying torch/include/ATen/ops/fft_hfft2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6710290Z copying torch/include/ATen/ops/upsample_nearest3d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6711500Z copying torch/include/ATen/ops/atanh_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6712790Z 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-08-14T20:47:59.6714060Z copying torch/include/ATen/ops/matrix_H_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6715310Z copying torch/include/ATen/ops/fill_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6716600Z copying torch/include/ATen/ops/_foreach_cosh_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6717730Z copying torch/include/ATen/ops/batch_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6719080Z copying torch/include/ATen/ops/sparse_csr_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6720240Z copying torch/include/ATen/ops/sparse_mask_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6721680Z copying torch/include/ATen/ops/split_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6722970Z copying torch/include/ATen/ops/batch_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6724120Z copying torch/include/ATen/ops/rsub_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6725620Z 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-08-14T20:47:59.6726840Z copying torch/include/ATen/ops/sinc_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6728210Z copying torch/include/ATen/ops/miopen_depthwise_convolution_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6729560Z copying torch/include/ATen/ops/mean_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6730830Z 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-08-14T20:47:59.6732030Z copying torch/include/ATen/ops/_nested_from_padded_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6733630Z copying torch/include/ATen/ops/randint_like_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6735080Z 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-08-14T20:47:59.6736340Z copying torch/include/ATen/ops/embedding_dense_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6737620Z copying torch/include/ATen/ops/view_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6738860Z copying torch/include/ATen/ops/abs.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6740200Z copying torch/include/ATen/ops/isin_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6741500Z copying torch/include/ATen/ops/huber_loss_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6742740Z copying torch/include/ATen/ops/retain_grad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6744150Z copying torch/include/ATen/ops/sparse_resize_and_clear.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6745330Z copying torch/include/ATen/ops/kron_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6746650Z copying torch/include/ATen/ops/log1p_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6747970Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6749230Z copying torch/include/ATen/ops/_batch_norm_no_update_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6750490Z copying torch/include/ATen/ops/bucketize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6751990Z copying torch/include/ATen/ops/detach_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6753170Z copying torch/include/ATen/ops/logaddexp_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6754390Z copying torch/include/ATen/ops/gather_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6755750Z copying torch/include/ATen/ops/affine_grid_generator_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6757180Z copying torch/include/ATen/ops/embedding_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6758560Z copying torch/include/ATen/ops/linalg_lstsq_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6759880Z copying torch/include/ATen/ops/clip_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6761300Z copying torch/include/ATen/ops/bernoulli_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6762620Z copying torch/include/ATen/ops/_local_scalar_dense_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6764030Z copying torch/include/ATen/ops/_cslt_sparse_mm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6765450Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6766990Z copying torch/include/ATen/ops/_sobol_engine_ff_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6768460Z 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-08-14T20:47:59.6769620Z copying torch/include/ATen/ops/max_pool3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6770950Z copying torch/include/ATen/ops/quantize_per_channel_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6772210Z copying torch/include/ATen/ops/special_erf_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6773500Z copying torch/include/ATen/ops/vander_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6774710Z copying torch/include/ATen/ops/_validate_compressed_sparse_indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6775920Z copying torch/include/ATen/ops/pow_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6777270Z copying torch/include/ATen/ops/_cast_Double.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6778470Z copying torch/include/ATen/ops/frobenius_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6779660Z copying torch/include/ATen/ops/sinc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6780940Z copying torch/include/ATen/ops/softplus.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6782180Z copying torch/include/ATen/ops/_foreach_pow_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6783440Z copying torch/include/ATen/ops/fractional_max_pool3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6784660Z copying torch/include/ATen/ops/kthvalue_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6785880Z copying torch/include/ATen/ops/_is_any_true.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6787210Z copying torch/include/ATen/ops/reshape_as_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6788530Z 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-08-14T20:47:59.6789750Z copying torch/include/ATen/ops/special_bessel_y0_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6791050Z copying torch/include/ATen/ops/crow_indices_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6792290Z copying torch/include/ATen/ops/_weight_int8pack_mm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6793530Z copying torch/include/ATen/ops/uniform_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6794820Z copying torch/include/ATen/ops/_embedding_bag_dense_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6796060Z copying torch/include/ATen/ops/_cudnn_attention_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6797340Z copying torch/include/ATen/ops/to_sparse_csc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6798600Z copying torch/include/ATen/ops/reshape_as_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6799810Z copying torch/include/ATen/ops/_fused_rms_norm_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6801120Z copying torch/include/ATen/ops/adaptive_max_pool2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6802440Z copying torch/include/ATen/ops/replication_pad1d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6803730Z copying torch/include/ATen/ops/adaptive_avg_pool3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6804940Z copying torch/include/ATen/ops/_safe_softmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6806310Z copying torch/include/ATen/ops/matrix_exp_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6807690Z copying torch/include/ATen/ops/asinh_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6808900Z copying torch/include/ATen/ops/cudnn_batch_norm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6810240Z copying torch/include/ATen/ops/_linalg_svd_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6811490Z copying torch/include/ATen/ops/set_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6812620Z copying torch/include/ATen/ops/numpy_T.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6814060Z copying torch/include/ATen/ops/_efficientzerotensor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6815350Z copying torch/include/ATen/ops/miopen_batch_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6816570Z copying torch/include/ATen/ops/upsample_bilinear2d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6817800Z copying torch/include/ATen/ops/fractional_max_pool2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6819050Z copying torch/include/ATen/ops/float_power.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6820270Z copying torch/include/ATen/ops/narrow_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6821590Z 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-08-14T20:47:59.6822950Z copying torch/include/ATen/ops/unique_consecutive_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6824130Z copying torch/include/ATen/ops/rot90.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6825390Z copying torch/include/ATen/ops/t.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6826880Z copying torch/include/ATen/ops/batch_norm_stats_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6828020Z copying torch/include/ATen/ops/squeeze_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6829310Z copying torch/include/ATen/ops/clamp_min_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6830450Z copying torch/include/ATen/ops/greater.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6831790Z copying torch/include/ATen/ops/swapaxes_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6833140Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6834250Z copying torch/include/ATen/ops/avg_pool3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6835600Z copying torch/include/ATen/ops/_foreach_clamp_min_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6836840Z copying torch/include/ATen/ops/_cudnn_attention_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6838060Z copying torch/include/ATen/ops/_foreach_sign.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6839380Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6840570Z copying torch/include/ATen/ops/_linalg_svd_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6841880Z copying torch/include/ATen/ops/from_blob.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6843180Z copying torch/include/ATen/ops/repeat_interleave_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6844570Z 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-08-14T20:47:59.6845740Z copying torch/include/ATen/ops/exp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6847020Z copying torch/include/ATen/ops/index_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6848310Z copying torch/include/ATen/ops/special_bessel_y0_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6849510Z copying torch/include/ATen/ops/linspace_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6850830Z copying torch/include/ATen/ops/reshape_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6852020Z copying torch/include/ATen/ops/special_ndtri_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6853350Z copying torch/include/ATen/ops/unsqueeze_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6854520Z copying torch/include/ATen/ops/put_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6855910Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6857100Z copying torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6858310Z copying torch/include/ATen/ops/linalg_lu_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6859600Z copying torch/include/ATen/ops/lift_fresh_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6860850Z copying torch/include/ATen/ops/log1p_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6862140Z copying torch/include/ATen/ops/_to_sparse_bsr_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6863370Z copying torch/include/ATen/ops/tril_indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6864760Z 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-08-14T20:47:59.6866090Z copying torch/include/ATen/ops/det_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6867410Z copying torch/include/ATen/ops/_compute_linear_combination_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6868720Z copying torch/include/ATen/ops/poisson_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6869870Z copying torch/include/ATen/ops/put.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6871160Z copying torch/include/ATen/ops/special_airy_ai_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6872540Z copying torch/include/ATen/ops/retain_grad_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6873790Z copying torch/include/ATen/ops/reflection_pad1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6875020Z copying torch/include/ATen/ops/eq_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6876370Z copying torch/include/ATen/ops/_sparse_mm_reduce_impl_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6877660Z copying torch/include/ATen/ops/im2col_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6878960Z 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-08-14T20:47:59.6880260Z copying torch/include/ATen/ops/cumprod_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6881570Z copying torch/include/ATen/ops/upsample_trilinear3d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6882840Z copying torch/include/ATen/ops/fill_diagonal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6884120Z copying torch/include/ATen/ops/lgamma_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6885390Z copying torch/include/ATen/ops/equal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6886650Z copying torch/include/ATen/ops/linalg_eigvals_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6887910Z copying torch/include/ATen/ops/_flash_attention_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6889140Z 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-08-14T20:47:59.6890410Z copying torch/include/ATen/ops/_scaled_dot_product_cudnn_attention.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6891690Z copying torch/include/ATen/ops/sparse_resize_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6893050Z copying torch/include/ATen/ops/hardsigmoid_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6894320Z 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-08-14T20:47:59.6895570Z copying torch/include/ATen/ops/upsample_trilinear3d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6896900Z copying torch/include/ATen/ops/xor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6898210Z copying torch/include/ATen/ops/value_selecting_reduction_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6899400Z copying torch/include/ATen/ops/_unpack_dual.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6900800Z copying torch/include/ATen/ops/special_log_ndtr_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6902200Z 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-08-14T20:47:59.6903400Z copying torch/include/ATen/ops/sparse_csc_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6904660Z copying torch/include/ATen/ops/log1p_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6906000Z 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-08-14T20:47:59.6907210Z copying torch/include/ATen/ops/flatten_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6908430Z copying torch/include/ATen/ops/sym_numel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6909740Z copying torch/include/ATen/ops/linalg_svdvals_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6911080Z copying torch/include/ATen/ops/_index_put_impl_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6912290Z copying torch/include/ATen/ops/masked_select.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6913490Z copying torch/include/ATen/ops/unfold_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6914710Z copying torch/include/ATen/ops/special_airy_ai.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6915940Z copying torch/include/ATen/ops/min_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6917200Z copying torch/include/ATen/ops/fmin_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6918430Z copying torch/include/ATen/ops/logit_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6919750Z 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-08-14T20:47:59.6920970Z copying torch/include/ATen/ops/view.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6922320Z copying torch/include/ATen/ops/threshold_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6923530Z copying torch/include/ATen/ops/mkldnn_rnn_layer_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6924870Z copying torch/include/ATen/ops/_dirichlet_grad_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6926170Z copying torch/include/ATen/ops/_efficient_attention_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6927300Z copying torch/include/ATen/ops/slice_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6928740Z copying torch/include/ATen/ops/_mps_convolution_transpose_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6929850Z copying torch/include/ATen/ops/polar_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6931090Z copying torch/include/ATen/ops/linspace.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6932390Z copying torch/include/ATen/ops/linalg_matrix_power_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6933640Z copying torch/include/ATen/ops/fbgemm_linear_int8_weight_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6934820Z copying torch/include/ATen/ops/softplus_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6936030Z copying torch/include/ATen/ops/arccos_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6937300Z copying torch/include/ATen/ops/_scaled_mm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6938550Z copying torch/include/ATen/ops/silu_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6939850Z copying torch/include/ATen/ops/digamma_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6941130Z copying torch/include/ATen/ops/cudnn_is_acceptable_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6942400Z copying torch/include/ATen/ops/fractional_max_pool2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6943640Z copying torch/include/ATen/ops/multi_margin_loss_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6945130Z 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-08-14T20:47:59.6946190Z copying torch/include/ATen/ops/special_erfcx_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6947500Z copying torch/include/ATen/ops/_cdist_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6948710Z copying torch/include/ATen/ops/mean_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6950080Z copying torch/include/ATen/ops/conv_tbc_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6951240Z copying torch/include/ATen/ops/_foreach_mul_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6952600Z copying torch/include/ATen/ops/_cast_Short_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6953830Z copying torch/include/ATen/ops/round_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6955010Z copying torch/include/ATen/ops/moveaxis.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6956320Z copying torch/include/ATen/ops/_efficient_attention_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6957530Z copying torch/include/ATen/ops/mul_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6958980Z 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-08-14T20:47:59.6960320Z copying torch/include/ATen/ops/igamma_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6961450Z copying torch/include/ATen/ops/select_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6962660Z copying torch/include/ATen/ops/acos_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6963970Z copying torch/include/ATen/ops/nansum_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6965250Z copying torch/include/ATen/ops/_assert_tensor_metadata_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6966520Z copying torch/include/ATen/ops/quantize_per_channel_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6967740Z copying torch/include/ATen/ops/hardsigmoid_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6969270Z copying torch/include/ATen/ops/reflection_pad3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6970330Z copying torch/include/ATen/ops/diag_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6971740Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6973030Z copying torch/include/ATen/ops/select_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6974290Z 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-08-14T20:47:59.6975630Z copying torch/include/ATen/ops/_embedding_bag_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6976810Z copying torch/include/ATen/ops/mean_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6978280Z copying torch/include/ATen/ops/alias_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6979650Z 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-08-14T20:47:59.6980760Z copying torch/include/ATen/ops/_cudnn_ctc_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6982170Z copying torch/include/ATen/ops/sigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6983350Z copying torch/include/ATen/ops/trunc_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6984710Z copying torch/include/ATen/ops/_jagged_to_padded_dense_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6985820Z copying torch/include/ATen/ops/detach.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6987060Z copying torch/include/ATen/ops/special_hermite_polynomial_he.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6988290Z copying torch/include/ATen/ops/logaddexp2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6989660Z 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-08-14T20:47:59.6990830Z copying torch/include/ATen/ops/random_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6992010Z copying torch/include/ATen/ops/_aminmax_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6993330Z copying torch/include/ATen/ops/gelu_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6994610Z copying torch/include/ATen/ops/masked_select_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6995860Z copying torch/include/ATen/ops/row_indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6997100Z copying torch/include/ATen/ops/expand.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6998360Z copying torch/include/ATen/ops/asinh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.6999530Z copying torch/include/ATen/ops/atanh_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7000860Z copying torch/include/ATen/ops/expand_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7001960Z copying torch/include/ATen/ops/sub_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7003250Z copying torch/include/ATen/ops/affine_grid_generator_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7004460Z copying torch/include/ATen/ops/rnn_tanh_cell_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7005640Z copying torch/include/ATen/ops/ger_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7006870Z copying torch/include/ATen/ops/resize_as_sparse_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7008290Z copying torch/include/ATen/ops/margin_ranking_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7009480Z copying torch/include/ATen/ops/upsample_linear1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7010800Z 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-08-14T20:47:59.7011980Z copying torch/include/ATen/ops/result_type_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7013250Z copying torch/include/ATen/ops/_prelu_kernel_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7014390Z copying torch/include/ATen/ops/ormqr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7015680Z copying torch/include/ATen/ops/floor_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7017000Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7018300Z 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-08-14T20:47:59.7019490Z copying torch/include/ATen/ops/slice_inverse_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7020820Z 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-08-14T20:47:59.7022140Z copying torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7023290Z copying torch/include/ATen/ops/threshold.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7024570Z copying torch/include/ATen/ops/upsample_bicubic2d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7025960Z 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-08-14T20:47:59.7027340Z 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-08-14T20:47:59.7028550Z copying torch/include/ATen/ops/special_ndtri_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7029770Z copying torch/include/ATen/ops/_sparse_addmm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7031140Z copying torch/include/ATen/ops/special_xlogy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7032410Z copying torch/include/ATen/ops/_grouped_mm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7033650Z copying torch/include/ATen/ops/special_log_ndtr_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7034960Z copying torch/include/ATen/ops/is_floating_point_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7036200Z copying torch/include/ATen/ops/mkldnn_rnn_layer_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7037400Z copying torch/include/ATen/ops/_foreach_pow.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7038610Z copying torch/include/ATen/ops/fft_irfftn_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7039910Z copying torch/include/ATen/ops/any_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7041260Z copying torch/include/ATen/ops/_foreach_minimum_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7042510Z copying torch/include/ATen/ops/_foreach_sqrt_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7043910Z 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-08-14T20:47:59.7045030Z copying torch/include/ATen/ops/median_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7046280Z copying torch/include/ATen/ops/fft_ifft.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7047620Z copying torch/include/ATen/ops/fmod_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7048790Z copying torch/include/ATen/ops/ceil_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7049970Z copying torch/include/ATen/ops/leaky_relu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7051210Z copying torch/include/ATen/ops/full_like.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7052540Z copying torch/include/ATen/ops/var_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7053770Z copying torch/include/ATen/ops/_nested_get_jagged_dummy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7054960Z copying torch/include/ATen/ops/rad2deg_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7056340Z copying torch/include/ATen/ops/arccos_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7057520Z copying torch/include/ATen/ops/fmax_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7058710Z copying torch/include/ATen/ops/refine_names.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7059950Z copying torch/include/ATen/ops/linalg_cond_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7061320Z 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-08-14T20:47:59.7062560Z copying torch/include/ATen/ops/embedding_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7063960Z copying torch/include/ATen/ops/leaky_relu_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7065050Z copying torch/include/ATen/ops/tensordot_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7066380Z 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-08-14T20:47:59.7067640Z 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-08-14T20:47:59.7068870Z copying torch/include/ATen/ops/clamp_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7070080Z copying torch/include/ATen/ops/_foreach_sqrt_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7071410Z 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-08-14T20:47:59.7072590Z copying torch/include/ATen/ops/glu_jvp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7073830Z copying torch/include/ATen/ops/batch_norm_elemt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7075250Z copying torch/include/ATen/ops/_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7076520Z copying torch/include/ATen/ops/reflection_pad1d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7077640Z copying torch/include/ATen/ops/special_erfcx_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7078890Z copying torch/include/ATen/ops/nextafter_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7080200Z copying torch/include/ATen/ops/cudnn_convolution_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7081600Z copying torch/include/ATen/ops/_empty_affine_quantized_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7082790Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7084080Z copying torch/include/ATen/ops/batch_norm_stats_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7085390Z copying torch/include/ATen/ops/conv_tbc_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7086650Z copying torch/include/ATen/ops/mkldnn_linear_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7087920Z copying torch/include/ATen/ops/_assert_tensor_metadata.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7089240Z copying torch/include/ATen/ops/slice_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7090500Z copying torch/include/ATen/ops/add_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7096780Z copying torch/include/ATen/ops/rnn_tanh_cell.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7097310Z 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-08-14T20:47:59.7097620Z 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-08-14T20:47:59.7097870Z copying torch/include/ATen/ops/expand_as_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7098240Z copying torch/include/ATen/ops/infinitely_differentiable_gelu_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7098540Z 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-08-14T20:47:59.7099350Z copying torch/include/ATen/ops/masked_scatter_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7100680Z 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-08-14T20:47:59.7101870Z copying torch/include/ATen/ops/upsample_nearest2d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7103080Z copying torch/include/ATen/ops/_aminmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7104280Z copying torch/include/ATen/ops/istft_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7105580Z copying torch/include/ATen/ops/_weight_norm_interface_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7106820Z copying torch/include/ATen/ops/max_pool3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7108150Z copying torch/include/ATen/ops/special_expit_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7109510Z copying torch/include/ATen/ops/_stack_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7110600Z copying torch/include/ATen/ops/fliplr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7111830Z copying torch/include/ATen/ops/acos_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7113130Z copying torch/include/ATen/ops/log10_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7114480Z copying torch/include/ATen/ops/argmax_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7115690Z copying torch/include/ATen/ops/triu_indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7116900Z copying torch/include/ATen/ops/sparse_dim_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7118190Z copying torch/include/ATen/ops/bitwise_and_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7119490Z copying torch/include/ATen/ops/atan_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7120740Z copying torch/include/ATen/ops/binary_cross_entropy_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7121970Z copying torch/include/ATen/ops/prod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7123220Z copying torch/include/ATen/ops/mul_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7124450Z copying torch/include/ATen/ops/is_pinned.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7125750Z copying torch/include/ATen/ops/index_add_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7127060Z copying torch/include/ATen/ops/_cholesky_solve_helper_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7128330Z 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-08-14T20:47:59.7129490Z copying torch/include/ATen/ops/unfold.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7130920Z 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-08-14T20:47:59.7132120Z copying torch/include/ATen/ops/rrelu_with_noise_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7133440Z copying torch/include/ATen/ops/_nested_tensor_size_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7134690Z copying torch/include/ATen/ops/upsample_trilinear3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7135940Z copying torch/include/ATen/ops/linalg_householder_product.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7137260Z copying torch/include/ATen/ops/_weight_int4pack_mm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7138500Z copying torch/include/ATen/ops/aminmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7139680Z copying torch/include/ATen/ops/view_as_real.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7140940Z copying torch/include/ATen/ops/_softmax_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7142380Z copying torch/include/ATen/ops/softshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7143600Z copying torch/include/ATen/ops/huber_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7144890Z copying torch/include/ATen/ops/_native_batch_norm_legit_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7146230Z 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-08-14T20:47:59.7147600Z copying torch/include/ATen/ops/pairwise_distance_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7148810Z copying torch/include/ATen/ops/special_bessel_j0_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7150270Z 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-08-14T20:47:59.7151790Z copying torch/include/ATen/ops/new_empty_strided_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7153050Z copying torch/include/ATen/ops/diagflat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7154450Z copying torch/include/ATen/ops/amax_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7155800Z copying torch/include/ATen/ops/addr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7157180Z copying torch/include/ATen/ops/special_i1e.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7158620Z copying torch/include/ATen/ops/_embedding_bag_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7160940Z 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-08-14T20:47:59.7161970Z copying torch/include/ATen/ops/zero_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7163280Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7164690Z copying torch/include/ATen/ops/all_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7165980Z 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-08-14T20:47:59.7167200Z copying torch/include/ATen/ops/arange_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7168530Z copying torch/include/ATen/ops/mish_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7169770Z copying torch/include/ATen/ops/chalf_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7171140Z copying torch/include/ATen/ops/_fused_rms_norm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7172340Z copying torch/include/ATen/ops/linalg_svdvals.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7173680Z copying torch/include/ATen/ops/upsample_nearest2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7174890Z copying torch/include/ATen/ops/special_spherical_bessel_j0.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7176150Z copying torch/include/ATen/ops/_weight_int4pack_mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7177360Z copying torch/include/ATen/ops/expm1_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7178780Z 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-08-14T20:47:59.7179900Z copying torch/include/ATen/ops/mse_loss_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7181360Z 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-08-14T20:47:59.7182560Z copying torch/include/ATen/ops/std_mean.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7183840Z copying torch/include/ATen/ops/_nnpack_spatial_convolution_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7185110Z copying torch/include/ATen/ops/_linalg_eigh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7186390Z copying torch/include/ATen/ops/hardshrink_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7187660Z copying torch/include/ATen/ops/smooth_l1_loss_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7188980Z copying torch/include/ATen/ops/igamma_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7190330Z copying torch/include/ATen/ops/_embedding_bag_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7191670Z copying torch/include/ATen/ops/remainder_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7193040Z copying torch/include/ATen/ops/cudnn_convolution_transpose_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7194350Z 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-08-14T20:47:59.7195590Z copying torch/include/ATen/ops/masked_select_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7196890Z copying torch/include/ATen/ops/_sparse_sum_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7198130Z copying torch/include/ATen/ops/empty.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7199650Z copying torch/include/ATen/ops/_segment_reduce_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7200760Z copying torch/include/ATen/ops/baddbmm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7202050Z copying torch/include/ATen/ops/poisson_nll_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7203280Z copying torch/include/ATen/ops/baddbmm_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7204500Z copying torch/include/ATen/ops/ger.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7205790Z copying torch/include/ATen/ops/_conv_depthwise2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7207200Z 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-08-14T20:47:59.7208450Z copying torch/include/ATen/ops/fft_irfft_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7209910Z 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-08-14T20:47:59.7211090Z copying torch/include/ATen/ops/lift_fresh_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7212410Z copying torch/include/ATen/ops/nll_loss2d_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7213570Z copying torch/include/ATen/ops/imag_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7214790Z copying torch/include/ATen/ops/full_like_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7216020Z copying torch/include/ATen/ops/_cast_Float_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7217330Z copying torch/include/ATen/ops/special_bessel_y1_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7218600Z copying torch/include/ATen/ops/upsample_nearest3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7219860Z copying torch/include/ATen/ops/_ctc_loss_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7221030Z copying torch/include/ATen/ops/lt_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7222270Z copying torch/include/ATen/ops/copysign.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7223500Z copying torch/include/ATen/ops/_indices_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7224740Z copying torch/include/ATen/ops/replication_pad3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7225940Z copying torch/include/ATen/ops/index_fill_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7227260Z copying torch/include/ATen/ops/conv_tbc_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7228660Z copying torch/include/ATen/ops/cat_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7229780Z copying torch/include/ATen/ops/logical_xor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7231100Z copying torch/include/ATen/ops/logit_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7232400Z copying torch/include/ATen/ops/softplus_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7233590Z copying torch/include/ATen/ops/upsample_nearest3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7234820Z copying torch/include/ATen/ops/fft_rfftn_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7236140Z copying torch/include/ATen/ops/ceil_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7237380Z 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-08-14T20:47:59.7238550Z copying torch/include/ATen/ops/nanquantile_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7239750Z copying torch/include/ATen/ops/_make_dep_token_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7241160Z 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-08-14T20:47:59.7242390Z copying torch/include/ATen/ops/batch_norm_backward_elemt_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7243670Z copying torch/include/ATen/ops/special_round_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7244910Z copying torch/include/ATen/ops/_reshape_alias.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7246090Z copying torch/include/ATen/ops/le_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7247590Z copying torch/include/ATen/ops/softshrink_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7248600Z copying torch/include/ATen/ops/resolve_neg_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7249960Z 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-08-14T20:47:59.7251250Z copying torch/include/ATen/ops/binomial_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7252420Z copying torch/include/ATen/ops/mvlgamma_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7253660Z copying torch/include/ATen/ops/lshift_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7254970Z 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-08-14T20:47:59.7256230Z copying torch/include/ATen/ops/_efficient_attention_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7257550Z copying torch/include/ATen/ops/fft_ifft_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7258740Z copying torch/include/ATen/ops/special_gammaincc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7260100Z copying torch/include/ATen/ops/fmax_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7261250Z copying torch/include/ATen/ops/cosh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7262470Z copying torch/include/ATen/ops/clamp_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7263790Z copying torch/include/ATen/ops/binary_cross_entropy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7265010Z copying torch/include/ATen/ops/concat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7266330Z copying torch/include/ATen/ops/mul_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7267620Z 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-08-14T20:47:59.7268890Z copying torch/include/ATen/ops/special_multigammaln.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7270240Z copying torch/include/ATen/ops/_pad_circular_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7271400Z copying torch/include/ATen/ops/fft_ifftn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7272770Z copying torch/include/ATen/ops/sum_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7274000Z copying torch/include/ATen/ops/nonzero_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7275200Z copying torch/include/ATen/ops/nonzero.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7276420Z copying torch/include/ATen/ops/fliplr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7277630Z copying torch/include/ATen/ops/negative_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7278940Z copying torch/include/ATen/ops/fft_fftn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7280150Z copying torch/include/ATen/ops/native_batch_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7281480Z copying torch/include/ATen/ops/special_xlogy_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7282730Z copying torch/include/ATen/ops/new_empty_strided_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7284040Z copying torch/include/ATen/ops/_cast_Int_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7285240Z copying torch/include/ATen/ops/scatter_add_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7286630Z copying torch/include/ATen/ops/fft_ifftshift_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7287780Z copying torch/include/ATen/ops/eye_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7289060Z copying torch/include/ATen/ops/cartesian_prod_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7290300Z 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-08-14T20:47:59.7291720Z 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-08-14T20:47:59.7292890Z copying torch/include/ATen/ops/conv_transpose2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7294220Z copying torch/include/ATen/ops/as_strided.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7295510Z copying torch/include/ATen/ops/geometric_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7296760Z copying torch/include/ATen/ops/cosh_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7297990Z copying torch/include/ATen/ops/copysign_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7299280Z copying torch/include/ATen/ops/_fft_r2c_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7300540Z copying torch/include/ATen/ops/output_nr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7301780Z copying torch/include/ATen/ops/argsort_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7303080Z copying torch/include/ATen/ops/fft_hfft_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7304400Z copying torch/include/ATen/ops/sinh_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7305710Z copying torch/include/ATen/ops/_foreach_sin_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7306980Z copying torch/include/ATen/ops/_unique_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7308250Z copying torch/include/ATen/ops/sin_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7309540Z copying torch/include/ATen/ops/range_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7310780Z copying torch/include/ATen/ops/special_log_softmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7312150Z copying torch/include/ATen/ops/cosh_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7313580Z copying torch/include/ATen/ops/flip_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7314690Z copying torch/include/ATen/ops/argmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7315890Z copying torch/include/ATen/ops/detach_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7317240Z copying torch/include/ATen/ops/_pdist_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7318470Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7319680Z copying torch/include/ATen/ops/isnan.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7320920Z copying torch/include/ATen/ops/special_xlogy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7322260Z 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-08-14T20:47:59.7323460Z copying torch/include/ATen/ops/all_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7324890Z 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-08-14T20:47:59.7326130Z copying torch/include/ATen/ops/subtract_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7327380Z copying torch/include/ATen/ops/mkldnn_rnn_layer_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7328650Z copying torch/include/ATen/ops/cumsum_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7329860Z copying torch/include/ATen/ops/as_strided_scatter_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7331060Z copying torch/include/ATen/ops/scatter_reduce_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7332370Z copying torch/include/ATen/ops/_weight_int8pack_mm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7333640Z copying torch/include/ATen/ops/_indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7334830Z copying torch/include/ATen/ops/_linalg_det_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7336120Z copying torch/include/ATen/ops/sin_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7337320Z copying torch/include/ATen/ops/random_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7338530Z copying torch/include/ATen/ops/_pdist_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7339820Z copying torch/include/ATen/ops/nll_loss_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7341140Z copying torch/include/ATen/ops/tanh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7342420Z copying torch/include/ATen/ops/cumprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7343790Z copying torch/include/ATen/ops/special_entr_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7345000Z copying torch/include/ATen/ops/_foreach_lgamma_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7346260Z copying torch/include/ATen/ops/any_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7347670Z copying torch/include/ATen/ops/_add_batch_dim_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7348960Z copying torch/include/ATen/ops/lu_solve_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7350280Z copying torch/include/ATen/ops/nanmedian_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7351630Z copying torch/include/ATen/ops/_foreach_copy_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7352970Z copying torch/include/ATen/ops/replication_pad3d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7354310Z copying torch/include/ATen/ops/cumulative_trapezoid_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7355610Z copying torch/include/ATen/ops/any_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7356870Z copying torch/include/ATen/ops/slow_conv_dilated2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7358060Z copying torch/include/ATen/ops/linalg_cholesky_ex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7359400Z 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-08-14T20:47:59.7360660Z 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-08-14T20:47:59.7361910Z copying torch/include/ATen/ops/geqrf_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7363130Z copying torch/include/ATen/ops/fft_rfftn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7364420Z copying torch/include/ATen/ops/max_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7365610Z copying torch/include/ATen/ops/special_entr_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7366920Z copying torch/include/ATen/ops/slow_conv3d_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7368030Z copying torch/include/ATen/ops/qr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7369320Z copying torch/include/ATen/ops/linalg_cholesky.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7370640Z copying torch/include/ATen/ops/empty_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7371850Z copying torch/include/ATen/ops/lerp_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7373190Z copying torch/include/ATen/ops/special_entr_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7374400Z copying torch/include/ATen/ops/masked_scatter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7375610Z copying torch/include/ATen/ops/flip_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7376850Z copying torch/include/ATen/ops/topk_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7378090Z copying torch/include/ATen/ops/_neg_view_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7379390Z copying torch/include/ATen/ops/silu_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7380780Z copying torch/include/ATen/ops/_masked_softmax_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7381900Z copying torch/include/ATen/ops/col_indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7383240Z 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-08-14T20:47:59.7384480Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7385720Z copying torch/include/ATen/ops/rand_like_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7386930Z copying torch/include/ATen/ops/_foobar_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7388230Z copying torch/include/ATen/ops/histogram_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7389440Z copying torch/include/ATen/ops/all_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7390670Z copying torch/include/ATen/ops/native_channel_shuffle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7391870Z copying torch/include/ATen/ops/vdot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7393110Z copying torch/include/ATen/ops/_grouped_mm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7394410Z copying torch/include/ATen/ops/slow_conv_dilated3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7395620Z copying torch/include/ATen/ops/any_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7397010Z 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-08-14T20:47:59.7398240Z copying torch/include/ATen/ops/_sparse_log_softmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7399510Z copying torch/include/ATen/ops/avg_pool2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7400770Z copying torch/include/ATen/ops/_dirichlet_grad_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7402030Z copying torch/include/ATen/ops/_coalesced_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7403210Z copying torch/include/ATen/ops/baddbmm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7404580Z 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-08-14T20:47:59.7405880Z copying torch/include/ATen/ops/trace_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7407110Z copying torch/include/ATen/ops/nextafter_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7408410Z 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-08-14T20:47:59.7409660Z copying torch/include/ATen/ops/softshrink_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7411040Z copying torch/include/ATen/ops/native_dropout_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7412290Z copying torch/include/ATen/ops/_native_multi_head_attention.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7413750Z 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-08-14T20:47:59.7414960Z copying torch/include/ATen/ops/upsample_nearest1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7416310Z copying torch/include/ATen/ops/_cast_Byte_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7417860Z 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-08-14T20:47:59.7419290Z copying torch/include/ATen/ops/bartlett_window_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7420580Z copying torch/include/ATen/ops/renorm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7421950Z 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-08-14T20:47:59.7423130Z copying torch/include/ATen/ops/t_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7424610Z copying torch/include/ATen/ops/unsafe_split_with_sizes_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7425920Z copying torch/include/ATen/ops/pixel_unshuffle_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7427200Z copying torch/include/ATen/ops/fmin_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7428440Z copying torch/include/ATen/ops/_sparse_sum_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7429740Z copying torch/include/ATen/ops/special_sinc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7430960Z copying torch/include/ATen/ops/nll_loss_nd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7432420Z copying torch/include/ATen/ops/meshgrid_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7433580Z copying torch/include/ATen/ops/_softmax_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7434940Z copying torch/include/ATen/ops/miopen_batch_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7436190Z copying torch/include/ATen/ops/angle_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7437610Z copying torch/include/ATen/ops/swapdims_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7438850Z copying torch/include/ATen/ops/gather_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7617200Z copying torch/include/ATen/ops/reflection_pad3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7618660Z copying torch/include/ATen/ops/relu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7619980Z copying torch/include/ATen/ops/poisson_nll_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7621310Z copying torch/include/ATen/ops/bitwise_not_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7622480Z copying torch/include/ATen/ops/item_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7623750Z copying torch/include/ATen/ops/_native_batch_norm_legit_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7625210Z copying torch/include/ATen/ops/adaptive_max_pool2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7626450Z copying torch/include/ATen/ops/_linalg_eigh_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7627690Z copying torch/include/ATen/ops/special_legendre_polynomial_p.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7629010Z copying torch/include/ATen/ops/cudnn_batch_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.7630340Z 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-08-14T20:47:59.7631670Z 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-08-14T20:47:59.7632930Z copying torch/include/ATen/ops/avg_pool1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.8942070Z 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-08-14T20:47:59.8942990Z copying torch/include/ATen/ops/pixel_shuffle_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.8944310Z copying torch/include/ATen/ops/rshift.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.8945660Z copying torch/include/ATen/ops/_transform_bias_rescale_qkv_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.8946920Z copying torch/include/ATen/ops/batch_norm_update_stats_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.8948240Z copying torch/include/ATen/ops/squeeze_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.8949430Z copying torch/include/ATen/ops/special_i0e_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.8950830Z 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-08-14T20:47:59.8952040Z copying torch/include/ATen/ops/mish.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.8953360Z copying torch/include/ATen/ops/subtract.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.8955970Z copying torch/include/ATen/ops/trunc_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.8957480Z copying torch/include/ATen/ops/_fused_adamw_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.8958710Z copying torch/include/ATen/ops/amin_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.8959890Z copying torch/include/ATen/ops/amin_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.8961210Z copying torch/include/ATen/ops/linalg_matrix_exp_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.8962610Z copying torch/include/ATen/ops/upsample_linear1d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.8963870Z copying torch/include/ATen/ops/miopen_convolution_relu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.8965030Z copying torch/include/ATen/ops/indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.8966340Z copying torch/include/ATen/ops/_weight_int4pack_mm_for_cpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.8967750Z copying torch/include/ATen/ops/_reshape_from_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.8968980Z copying torch/include/ATen/ops/align_as_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.8970150Z copying torch/include/ATen/ops/blackman_window_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.8971480Z copying torch/include/ATen/ops/batch_norm_elemt_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.8972800Z 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-08-14T20:47:59.8974110Z copying torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.8975390Z copying torch/include/ATen/ops/_sobol_engine_ff_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.8976690Z copying torch/include/ATen/ops/sort_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.8977980Z copying torch/include/ATen/ops/logit_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.8979310Z copying torch/include/ATen/ops/_cummax_helper_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.8980710Z copying torch/include/ATen/ops/cat_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.8982200Z copying torch/include/ATen/ops/le_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.8983670Z copying torch/include/ATen/ops/mean_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.8984960Z copying torch/include/ATen/ops/is_inference.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.8986230Z copying torch/include/ATen/ops/fft_ihfftn_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.8987470Z copying torch/include/ATen/ops/mode_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.8988840Z copying torch/include/ATen/ops/segment_reduce_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.8990090Z copying torch/include/ATen/ops/detach_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.8991360Z copying torch/include/ATen/ops/_triton_multi_head_attention_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.8992610Z copying torch/include/ATen/ops/unbind_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.8993830Z copying torch/include/ATen/ops/corrcoef_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.8995140Z copying torch/include/ATen/ops/_ctc_loss_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.8996460Z copying torch/include/ATen/ops/lift_fresh_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.8997680Z copying torch/include/ATen/ops/_embedding_bag_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.8998930Z copying torch/include/ATen/ops/unflatten_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9000160Z copying torch/include/ATen/ops/avg_pool3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9001450Z copying torch/include/ATen/ops/ldexp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9002900Z copying torch/include/ATen/ops/special_log1p.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9006460Z copying torch/include/ATen/ops/transpose_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9012040Z copying torch/include/ATen/ops/arange_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9012840Z copying torch/include/ATen/ops/le_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9020200Z copying torch/include/ATen/ops/threshold_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9021220Z copying torch/include/ATen/ops/fractional_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9028630Z copying torch/include/ATen/ops/align_as.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9029510Z copying torch/include/ATen/ops/linspace_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9035820Z copying torch/include/ATen/ops/_nested_get_ragged_idx_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9037460Z 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-08-14T20:47:59.9044400Z copying torch/include/ATen/ops/slow_conv_transpose2d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9045500Z copying torch/include/ATen/ops/narrow.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9047140Z copying torch/include/ATen/ops/to_mkldnn_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9052250Z copying torch/include/ATen/ops/hspmm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9053580Z copying torch/include/ATen/ops/_saturate_weight_to_fp16.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9060440Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9061500Z copying torch/include/ATen/ops/unsafe_chunk_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9067910Z copying torch/include/ATen/ops/var_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9068700Z copying torch/include/ATen/ops/erfinv_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9069950Z copying torch/include/ATen/ops/_cudnn_rnn_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9075840Z 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-08-14T20:47:59.9077130Z copying torch/include/ATen/ops/dot_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9083260Z copying torch/include/ATen/ops/sparse_dim_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9084910Z copying torch/include/ATen/ops/fft_irfft2_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9086690Z copying torch/include/ATen/ops/resize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9094140Z 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-08-14T20:47:59.9103630Z copying torch/include/ATen/ops/_local_scalar_dense_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9104520Z copying torch/include/ATen/ops/erfc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9105800Z copying torch/include/ATen/ops/logical_not_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9113300Z 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-08-14T20:47:59.9114260Z copying torch/include/ATen/ops/to_sparse_bsr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9121090Z copying torch/include/ATen/ops/digamma_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9122190Z copying torch/include/ATen/ops/lstm_cell.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9128300Z copying torch/include/ATen/ops/digamma_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9129430Z copying torch/include/ATen/ops/erfinv_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9130550Z copying torch/include/ATen/ops/col_indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9133540Z copying torch/include/ATen/ops/tile_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9137680Z copying torch/include/ATen/ops/mm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9145190Z copying torch/include/ATen/ops/movedim_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9146190Z copying torch/include/ATen/ops/bincount_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9151930Z copying torch/include/ATen/ops/tril_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9153240Z copying torch/include/ATen/ops/logical_xor_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9160440Z copying torch/include/ATen/ops/_nested_view_from_jagged_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9161490Z copying torch/include/ATen/ops/matrix_H_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9163000Z copying torch/include/ATen/ops/adaptive_max_pool2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9168450Z copying torch/include/ATen/ops/bitwise_not_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9170880Z copying torch/include/ATen/ops/_indices_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9175950Z copying torch/include/ATen/ops/addbmm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9178310Z copying torch/include/ATen/ops/sym_storage_offset_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9179220Z copying torch/include/ATen/ops/ctc_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9184910Z copying torch/include/ATen/ops/quantized_max_pool3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9186450Z copying torch/include/ATen/ops/_fused_sdp_choice_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9192300Z copying torch/include/ATen/ops/_sparse_broadcast_to_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9193530Z copying torch/include/ATen/ops/eq_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9200110Z copying torch/include/ATen/ops/angle_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9201370Z copying torch/include/ATen/ops/take_along_dim_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9202600Z copying torch/include/ATen/ops/_dimI_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9208230Z copying torch/include/ATen/ops/atan_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9209550Z copying torch/include/ATen/ops/unfold_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9215590Z copying torch/include/ATen/ops/_sparse_sparse_matmul_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9217480Z copying torch/include/ATen/ops/_debug_has_internal_overlap.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9223680Z 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-08-14T20:47:59.9224500Z copying torch/include/ATen/ops/special_ndtri_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9226330Z 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-08-14T20:47:59.9232570Z copying torch/include/ATen/ops/resize_as_sparse_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9233760Z copying torch/include/ATen/ops/to_mkldnn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9240550Z copying torch/include/ATen/ops/le.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9241400Z copying torch/include/ATen/ops/fft_ihfftn_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9248620Z copying torch/include/ATen/ops/lstm_mps_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9249790Z copying torch/include/ATen/ops/_is_all_true_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9250990Z copying torch/include/ATen/ops/transpose_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9255690Z copying torch/include/ATen/ops/meshgrid_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9258890Z 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-08-14T20:47:59.9263160Z copying torch/include/ATen/ops/_cudnn_rnn_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9264710Z copying torch/include/ATen/ops/_cudnn_rnn_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9267470Z copying torch/include/ATen/ops/_fused_adam_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9272770Z copying torch/include/ATen/ops/copy_sparse_to_sparse_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9273650Z copying torch/include/ATen/ops/_addmm_activation_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9277650Z copying torch/include/ATen/ops/allclose_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9282820Z copying torch/include/ATen/ops/special_gammainc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9283930Z copying torch/include/ATen/ops/embedding_sparse_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9288600Z copying torch/include/ATen/ops/adaptive_max_pool1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9289690Z copying torch/include/ATen/ops/_foreach_atan_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9293460Z copying torch/include/ATen/ops/cummin_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9297350Z copying torch/include/ATen/ops/fft_hfft2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9298870Z copying torch/include/ATen/ops/_cudnn_ctc_loss_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9300100Z copying torch/include/ATen/ops/split_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9305290Z copying torch/include/ATen/ops/empty_permuted.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9306210Z copying torch/include/ATen/ops/smm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9310040Z copying torch/include/ATen/ops/_foreach_expm1_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9314740Z copying torch/include/ATen/ops/prelu_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9318890Z copying torch/include/ATen/ops/is_conj_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9321890Z copying torch/include/ATen/ops/fft_fftshift_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9322980Z copying torch/include/ATen/ops/_convolution_mode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9327870Z copying torch/include/ATen/ops/diagonal_scatter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9330410Z 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-08-14T20:47:59.9335380Z copying torch/include/ATen/ops/_unique_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9336470Z copying torch/include/ATen/ops/cdist_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9343900Z copying torch/include/ATen/ops/conv_tbc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9345120Z copying torch/include/ATen/ops/triangular_solve_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9348460Z copying torch/include/ATen/ops/replication_pad2d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9351550Z copying torch/include/ATen/ops/unique_dim_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9358170Z copying torch/include/ATen/ops/searchsorted_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9359810Z copying torch/include/ATen/ops/logspace_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9365610Z copying torch/include/ATen/ops/record_stream_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9366760Z copying torch/include/ATen/ops/replication_pad1d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9374020Z copying torch/include/ATen/ops/_foreach_sign_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9375240Z copying torch/include/ATen/ops/frac.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9381920Z copying torch/include/ATen/ops/binomial_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9383030Z copying torch/include/ATen/ops/fft_ihfft_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9384380Z copying torch/include/ATen/ops/amin_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9389170Z copying torch/include/ATen/ops/hamming_window_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9396840Z copying torch/include/ATen/ops/_sparse_softmax_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9397760Z 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-08-14T20:47:59.9398400Z copying torch/include/ATen/ops/indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9399310Z copying torch/include/ATen/ops/upsample_bicubic2d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9405110Z copying torch/include/ATen/ops/bitwise_and_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9406270Z copying torch/include/ATen/ops/searchsorted_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9412740Z copying torch/include/ATen/ops/histc_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9414160Z copying torch/include/ATen/ops/exp_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9420450Z copying torch/include/ATen/ops/is_pinned_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9421590Z copying torch/include/ATen/ops/empty_quantized_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9422930Z copying torch/include/ATen/ops/cholesky_inverse_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9428460Z 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-08-14T20:47:59.9429920Z 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-08-14T20:47:59.9435990Z copying torch/include/ATen/ops/arctanh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9438240Z copying torch/include/ATen/ops/alias_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9443390Z copying torch/include/ATen/ops/ravel_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9444940Z copying torch/include/ATen/ops/linalg_pinv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9446270Z copying torch/include/ATen/ops/instance_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9452260Z copying torch/include/ATen/ops/upsample_linear1d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9453320Z copying torch/include/ATen/ops/miopen_convolution_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9460010Z copying torch/include/ATen/ops/scatter_add_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9461260Z copying torch/include/ATen/ops/silu_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9468560Z copying torch/include/ATen/ops/kron_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9469670Z copying torch/include/ATen/ops/mode_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9470820Z copying torch/include/ATen/ops/arctan2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9476310Z copying torch/include/ATen/ops/eye.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9477530Z copying torch/include/ATen/ops/_foreach_log1p_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9484030Z copying torch/include/ATen/ops/_histogramdd_bin_edges_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9485180Z copying torch/include/ATen/ops/_foreach_sqrt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9487090Z copying torch/include/ATen/ops/upsample_nearest1d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9492520Z copying torch/include/ATen/ops/silu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9493830Z 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-08-14T20:47:59.9495890Z copying torch/include/ATen/ops/nll_loss2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9501970Z copying torch/include/ATen/ops/rnn_relu_cell_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9503160Z copying torch/include/ATen/ops/bitwise_or_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9510110Z copying torch/include/ATen/ops/bartlett_window.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9512220Z copying torch/include/ATen/ops/bitwise_left_shift_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9518050Z copying torch/include/ATen/ops/as_strided_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9519310Z copying torch/include/ATen/ops/_triton_scaled_dot_attention_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9520530Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9526090Z 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-08-14T20:47:59.9527140Z copying torch/include/ATen/ops/empty_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9529590Z copying torch/include/ATen/ops/_linalg_check_errors_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9535250Z copying torch/include/ATen/ops/cudnn_batch_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9537650Z copying torch/include/ATen/ops/_gather_sparse_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9543040Z copying torch/include/ATen/ops/empty_strided_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9544160Z copying torch/include/ATen/ops/view_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9548170Z copying torch/include/ATen/ops/special_entr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9552630Z copying torch/include/ATen/ops/sinh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9554020Z copying torch/include/ATen/ops/_nested_from_padded_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9558230Z copying torch/include/ATen/ops/_scaled_grouped_mm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9559990Z copying torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9561730Z 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-08-14T20:47:59.9566890Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9575750Z copying torch/include/ATen/ops/frac_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9577100Z copying torch/include/ATen/ops/special_i1_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9583700Z 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-08-14T20:47:59.9584850Z copying torch/include/ATen/ops/_foreach_tan_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9591440Z copying torch/include/ATen/ops/tan_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9592680Z copying torch/include/ATen/ops/frobenius_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9594030Z copying torch/include/ATen/ops/linalg_matrix_exp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9599380Z copying torch/include/ATen/ops/sgn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9600620Z copying torch/include/ATen/ops/linalg_inv_ex_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9606720Z copying torch/include/ATen/ops/_trilinear.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9608140Z copying torch/include/ATen/ops/glu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9609720Z copying torch/include/ATen/ops/silu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9616380Z copying torch/include/ATen/ops/cudnn_convolution_add_relu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9617700Z copying torch/include/ATen/ops/fft_ifft2_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9624760Z copying torch/include/ATen/ops/as_strided_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9626010Z copying torch/include/ATen/ops/_test_optional_floatlist_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9632400Z 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-08-14T20:47:59.9633470Z copying torch/include/ATen/ops/sum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9634770Z copying torch/include/ATen/ops/repeat_interleave_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9640130Z copying torch/include/ATen/ops/special_xlog1py.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9641380Z 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-08-14T20:47:59.9648200Z copying torch/include/ATen/ops/inner_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9649220Z copying torch/include/ATen/ops/elu_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9650480Z copying torch/include/ATen/ops/_foreach_round_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9656230Z copying torch/include/ATen/ops/equal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9657440Z copying torch/include/ATen/ops/_prelu_kernel_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9664040Z copying torch/include/ATen/ops/linalg_lu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9665240Z copying torch/include/ATen/ops/unbind_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9666680Z copying torch/include/ATen/ops/_foreach_tanh_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9671590Z copying torch/include/ATen/ops/_to_sparse_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9673810Z copying torch/include/ATen/ops/_foreach_norm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9679840Z copying torch/include/ATen/ops/_pin_memory_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9680720Z copying torch/include/ATen/ops/bitwise_left_shift_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9682420Z copying torch/include/ATen/ops/_foreach_minimum_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9688550Z copying torch/include/ATen/ops/linalg_det.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9689700Z copying torch/include/ATen/ops/chalf_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9696850Z copying torch/include/ATen/ops/_sobol_engine_scramble_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9697710Z copying torch/include/ATen/ops/floor_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9705270Z copying torch/include/ATen/ops/upsample_nearest3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9706120Z copying torch/include/ATen/ops/special_polygamma_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9707380Z copying torch/include/ATen/ops/values.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9712770Z copying torch/include/ATen/ops/is_inference_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9713730Z 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-08-14T20:47:59.9720330Z copying torch/include/ATen/ops/embedding_dense_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9721690Z copying torch/include/ATen/ops/size_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9722940Z copying torch/include/ATen/ops/gelu_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9730050Z copying torch/include/ATen/ops/adaptive_avg_pool1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9731210Z copying torch/include/ATen/ops/cumsum_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9737630Z copying torch/include/ATen/ops/bernoulli_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9738760Z copying torch/include/ATen/ops/_assert_async_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9745950Z copying torch/include/ATen/ops/isposinf_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9747090Z 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-08-14T20:47:59.9748370Z copying torch/include/ATen/ops/linalg_householder_product_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9753940Z copying torch/include/ATen/ops/abs_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9755430Z copying torch/include/ATen/ops/special_i0_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9761810Z copying torch/include/ATen/ops/linalg_cond_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9762660Z copying torch/include/ATen/ops/to.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9763920Z copying torch/include/ATen/ops/_linalg_svd_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9769440Z copying torch/include/ATen/ops/angle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9770920Z copying torch/include/ATen/ops/softplus_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9775760Z copying torch/include/ATen/ops/allclose.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9778900Z copying torch/include/ATen/ops/special_i1_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9785170Z copying torch/include/ATen/ops/_embedding_bag.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9786690Z copying torch/include/ATen/ops/kaiser_window_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9793210Z copying torch/include/ATen/ops/_unpack_dual_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9794460Z copying torch/include/ATen/ops/cudnn_affine_grid_generator_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9795840Z copying torch/include/ATen/ops/multilabel_margin_loss_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9802460Z 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-08-14T20:47:59.9803610Z copying torch/include/ATen/ops/clamp_min_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9810390Z copying torch/include/ATen/ops/expand_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9811590Z 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-08-14T20:47:59.9818190Z copying torch/include/ATen/ops/binary_cross_entropy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9819360Z 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-08-14T20:47:59.9820570Z copying torch/include/ATen/ops/_debug_has_internal_overlap_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9825760Z copying torch/include/ATen/ops/values_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9827880Z copying torch/include/ATen/ops/_trilinear_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9833270Z copying torch/include/ATen/ops/cauchy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9834650Z copying torch/include/ATen/ops/soft_margin_loss_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9835990Z copying torch/include/ATen/ops/cholesky_inverse_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9842560Z 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-08-14T20:47:59.9843700Z copying torch/include/ATen/ops/special_modified_bessel_k1.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9850740Z copying torch/include/ATen/ops/rsqrt_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9851660Z copying torch/include/ATen/ops/to_dense.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9858250Z copying torch/include/ATen/ops/fmin.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9859430Z copying torch/include/ATen/ops/_validate_sparse_csc_tensor_args.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9860630Z copying torch/include/ATen/ops/scatter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9865990Z copying torch/include/ATen/ops/scaled_dot_product_attention.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9867650Z copying torch/include/ATen/ops/mode_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9875190Z copying torch/include/ATen/ops/cudnn_batch_norm_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9876230Z copying torch/include/ATen/ops/linalg_vector_norm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9877540Z copying torch/include/ATen/ops/masked_select_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9883290Z copying torch/include/ATen/ops/_foreach_rsqrt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9884320Z copying torch/include/ATen/ops/_test_ambiguous_defaults.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9885850Z copying torch/include/ATen/ops/ones_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9892570Z copying torch/include/ATen/ops/mul.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9893590Z copying torch/include/ATen/ops/relu_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9900460Z copying torch/include/ATen/ops/_efficientzerotensor_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9901920Z 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-08-14T20:47:59.9903320Z copying torch/include/ATen/ops/native_channel_shuffle_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9908510Z copying torch/include/ATen/ops/_nested_from_padded_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9909950Z copying torch/include/ATen/ops/upsample_nearest2d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9916240Z copying torch/include/ATen/ops/fmod_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9917480Z copying torch/include/ATen/ops/sparse_csc_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9923760Z copying torch/include/ATen/ops/gcd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9924700Z copying torch/include/ATen/ops/_dimV.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9925940Z copying torch/include/ATen/ops/batch_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9931250Z 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-08-14T20:47:59.9932880Z copying torch/include/ATen/ops/pixel_shuffle_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9939040Z copying torch/include/ATen/ops/native_layer_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9940320Z copying torch/include/ATen/ops/special_ndtr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9946810Z copying torch/include/ATen/ops/upsample_nearest2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9948040Z copying torch/include/ATen/ops/retain_grad_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9949280Z copying torch/include/ATen/ops/asin_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9956620Z copying torch/include/ATen/ops/upsample_nearest3d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9957600Z copying torch/include/ATen/ops/column_stack_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9964420Z copying torch/include/ATen/ops/_weight_int8pack_mm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9965390Z copying torch/include/ATen/ops/isreal_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9971740Z copying torch/include/ATen/ops/_flash_attention_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9972930Z 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-08-14T20:47:59.9979400Z copying torch/include/ATen/ops/conj_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9980800Z copying torch/include/ATen/ops/repeat_interleave_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9986950Z copying torch/include/ATen/ops/logit_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9987820Z copying torch/include/ATen/ops/log_normal_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9994550Z copying torch/include/ATen/ops/qr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:47:59.9995480Z copying torch/include/ATen/ops/full_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0002540Z copying torch/include/ATen/ops/trunc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0004020Z copying torch/include/ATen/ops/miopen_rnn_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0010520Z 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-08-14T20:48:00.0011750Z copying torch/include/ATen/ops/_foreach_sub_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0012980Z copying torch/include/ATen/ops/fbgemm_pack_quantized_matrix.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0018220Z copying torch/include/ATen/ops/_wrapped_linear_prepack_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0019740Z copying torch/include/ATen/ops/huber_loss_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0025950Z copying torch/include/ATen/ops/clamp_min_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0027300Z copying torch/include/ATen/ops/is_leaf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0033350Z 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-08-14T20:48:00.0034810Z copying torch/include/ATen/ops/fbgemm_linear_quantize_weight_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0035990Z copying torch/include/ATen/ops/ldexp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0042430Z copying torch/include/ATen/ops/_foreach_mul_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0043630Z 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-08-14T20:48:00.0050520Z copying torch/include/ATen/ops/upsample_nearest3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0051330Z copying torch/include/ATen/ops/bmm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0058170Z copying torch/include/ATen/ops/linalg_inv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0059460Z copying torch/include/ATen/ops/pow_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0060810Z copying torch/include/ATen/ops/replication_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0065940Z 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-08-14T20:48:00.0067320Z copying torch/include/ATen/ops/_pack_padded_sequence_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0074520Z copying torch/include/ATen/ops/randperm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0075620Z copying torch/include/ATen/ops/index_reduce_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0076880Z copying torch/include/ATen/ops/lu_solve_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0082750Z copying torch/include/ATen/ops/dense_dim_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0083710Z copying torch/include/ATen/ops/_softmax_backward_data_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0090400Z copying torch/include/ATen/ops/exp2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0092060Z copying torch/include/ATen/ops/nanmean_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0093270Z copying torch/include/ATen/ops/margin_ranking_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0097940Z copying torch/include/ATen/ops/bitwise_right_shift_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0099400Z copying torch/include/ATen/ops/sparse_csr_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0105770Z 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-08-14T20:48:00.0107570Z copying torch/include/ATen/ops/sqrt_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0113220Z copying torch/include/ATen/ops/col_indices_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0114530Z copying torch/include/ATen/ops/index_fill_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0115860Z copying torch/include/ATen/ops/maximum_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0122000Z copying torch/include/ATen/ops/asinh_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0130890Z copying torch/include/ATen/ops/bitwise_not_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0131910Z copying torch/include/ATen/ops/random_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0138890Z copying torch/include/ATen/ops/_foreach_div_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0139780Z copying torch/include/ATen/ops/_foreach_expm1_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0141080Z copying torch/include/ATen/ops/special_spherical_bessel_j0_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0146700Z copying torch/include/ATen/ops/special_entr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0147930Z copying torch/include/ATen/ops/upsample_bilinear2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0153880Z copying torch/include/ATen/ops/erf_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0154950Z copying torch/include/ATen/ops/_cast_Char.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0156280Z copying torch/include/ATen/ops/norm_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0161870Z copying torch/include/ATen/ops/trace_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0163310Z copying torch/include/ATen/ops/hinge_embedding_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0169570Z copying torch/include/ATen/ops/bartlett_window_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0170620Z copying torch/include/ATen/ops/gather_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0172370Z copying torch/include/ATen/ops/indices_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0178850Z 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-08-14T20:48:00.0180120Z copying torch/include/ATen/ops/unsafe_chunk.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0187380Z 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-08-14T20:48:00.0188310Z copying torch/include/ATen/ops/_dirichlet_grad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0194140Z copying torch/include/ATen/ops/rand_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0196060Z copying torch/include/ATen/ops/_use_cudnn_ctc_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0201080Z copying torch/include/ATen/ops/glu_backward_jvp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0202230Z copying torch/include/ATen/ops/igammac_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0208810Z 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-08-14T20:48:00.0210280Z copying torch/include/ATen/ops/bitwise_left_shift_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0216590Z copying torch/include/ATen/ops/to_padded_tensor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0217800Z copying torch/include/ATen/ops/reflection_pad3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0219200Z copying torch/include/ATen/ops/lgamma_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0226340Z copying torch/include/ATen/ops/amax_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0227220Z copying torch/include/ATen/ops/gt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0233370Z copying torch/include/ATen/ops/_nnpack_available_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0234840Z copying torch/include/ATen/ops/fft_fft_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0241380Z 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-08-14T20:48:00.0242470Z copying torch/include/ATen/ops/relu_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0243690Z copying torch/include/ATen/ops/_index_put_impl_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0249280Z copying torch/include/ATen/ops/range_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0250270Z copying torch/include/ATen/ops/_cholesky_solve_helper_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0257260Z copying torch/include/ATen/ops/_shape_as_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0258310Z copying torch/include/ATen/ops/logical_and.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0265140Z copying torch/include/ATen/ops/bilinear_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0266160Z copying torch/include/ATen/ops/diff.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0267360Z copying torch/include/ATen/ops/round_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0273490Z copying torch/include/ATen/ops/_foreach_sigmoid_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0274300Z copying torch/include/ATen/ops/softplus_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0280940Z copying torch/include/ATen/ops/bincount_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0282070Z copying torch/include/ATen/ops/_fused_dropout_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0289300Z copying torch/include/ATen/ops/nll_loss_nd_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0290210Z copying torch/include/ATen/ops/_mkldnn_transpose.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0291480Z copying torch/include/ATen/ops/_foreach_asin_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0297080Z copying torch/include/ATen/ops/hardsigmoid_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0298380Z copying torch/include/ATen/ops/grid_sampler_2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0304680Z copying torch/include/ATen/ops/hash_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0305540Z copying torch/include/ATen/ops/special_digamma_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0306920Z copying torch/include/ATen/ops/linalg_eigvalsh_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0312720Z 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-08-14T20:48:00.0314110Z copying torch/include/ATen/ops/_sparse_bsc_tensor_unsafe.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0320310Z copying torch/include/ATen/ops/isposinf_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0321970Z copying torch/include/ATen/ops/_values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0323450Z 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-08-14T20:48:00.0328170Z copying torch/include/ATen/ops/floor_divide_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0329270Z copying torch/include/ATen/ops/full_like_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0337430Z copying torch/include/ATen/ops/_sparse_compressed_tensor_with_dims.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0343500Z copying torch/include/ATen/ops/_cast_Char_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0345000Z copying torch/include/ATen/ops/embedding_renorm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0346290Z copying torch/include/ATen/ops/promote_types_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0352200Z 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-08-14T20:48:00.0353250Z copying torch/include/ATen/ops/values_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0365190Z copying torch/include/ATen/ops/_to_sparse_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0365930Z copying torch/include/ATen/ops/cov_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0367530Z copying torch/include/ATen/ops/greater_equal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0370380Z copying torch/include/ATen/ops/gather_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0375130Z copying torch/include/ATen/ops/scaled_dot_product_attention_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0376040Z copying torch/include/ATen/ops/_is_all_true_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0380060Z copying torch/include/ATen/ops/nonzero_numpy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0384800Z copying torch/include/ATen/ops/masked_scatter_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0389800Z copying torch/include/ATen/ops/hardsigmoid_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0391870Z copying torch/include/ATen/ops/_fw_primal_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0397610Z copying torch/include/ATen/ops/msort.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0399830Z copying torch/include/ATen/ops/_weight_norm_interface_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0405190Z copying torch/include/ATen/ops/hstack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0406120Z copying torch/include/ATen/ops/_unique2_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0413180Z copying torch/include/ATen/ops/divide_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0414140Z copying torch/include/ATen/ops/randn_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0420730Z copying torch/include/ATen/ops/var_mean.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0421670Z copying torch/include/ATen/ops/special_xlog1py_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0422830Z copying torch/include/ATen/ops/upsample_bicubic2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0428270Z copying torch/include/ATen/ops/hardsigmoid_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0429860Z copying torch/include/ATen/ops/randperm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0436850Z copying torch/include/ATen/ops/_linalg_svd_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0437810Z copying torch/include/ATen/ops/_sparse_softmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0444620Z copying torch/include/ATen/ops/q_per_channel_axis.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0445450Z copying torch/include/ATen/ops/cholesky_inverse_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0446730Z copying torch/include/ATen/ops/_fused_adamw_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0452750Z copying torch/include/ATen/ops/complex_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0453820Z copying torch/include/ATen/ops/fix_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0461270Z copying torch/include/ATen/ops/upsample_bicubic2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0462560Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0469380Z copying torch/include/ATen/ops/cat_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0470360Z copying torch/include/ATen/ops/_empty_affine_quantized.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0471900Z copying torch/include/ATen/ops/reflection_pad1d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0476660Z copying torch/include/ATen/ops/to_sparse_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0478130Z copying torch/include/ATen/ops/pixel_shuffle_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0484550Z copying torch/include/ATen/ops/_foreach_div_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0485840Z 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-08-14T20:48:00.0487170Z copying torch/include/ATen/ops/resolve_conj_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0492390Z copying torch/include/ATen/ops/segment_reduce.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0493880Z copying torch/include/ATen/ops/cos_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0500360Z copying torch/include/ATen/ops/linalg_tensorinv_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0502170Z copying torch/include/ATen/ops/fft_ifft2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0503500Z 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-08-14T20:48:00.0509790Z copying torch/include/ATen/ops/_pdist_forward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0511090Z 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-08-14T20:48:00.0518020Z 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-08-14T20:48:00.0519150Z copying torch/include/ATen/ops/rrelu_with_noise_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0520330Z copying torch/include/ATen/ops/sym_stride.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0526710Z copying torch/include/ATen/ops/special_hermite_polynomial_h_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0527510Z copying torch/include/ATen/ops/tan_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0534010Z copying torch/include/ATen/ops/replication_pad1d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0535160Z 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-08-14T20:48:00.0536580Z copying torch/include/ATen/ops/_sparse_sparse_matmul_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0543720Z copying torch/include/ATen/ops/triu_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0547880Z copying torch/include/ATen/ops/smooth_l1_loss_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0549000Z copying torch/include/ATen/ops/hardshrink_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0556390Z copying torch/include/ATen/ops/argmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0557320Z copying torch/include/ATen/ops/softshrink_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0563910Z copying torch/include/ATen/ops/randn_like.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0565310Z copying torch/include/ATen/ops/histogram_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0566680Z copying torch/include/ATen/ops/dstack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0571610Z copying torch/include/ATen/ops/_to_sparse_csc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0572980Z copying torch/include/ATen/ops/binary_cross_entropy_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0579880Z copying torch/include/ATen/ops/_int_mm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0581220Z copying torch/include/ATen/ops/_lu_with_info_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0588090Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0588990Z 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-08-14T20:48:00.0590190Z copying torch/include/ATen/ops/_make_per_tensor_quantized_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0594400Z copying torch/include/ATen/ops/trace.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0601990Z copying torch/include/ATen/ops/matrix_exp_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0603040Z copying torch/include/ATen/ops/indices_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0610080Z copying torch/include/ATen/ops/_nnpack_spatial_convolution_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0611380Z 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-08-14T20:48:00.0617260Z copying torch/include/ATen/ops/gru_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0618210Z copying torch/include/ATen/ops/_cudnn_attention_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0619890Z copying torch/include/ATen/ops/elu_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0625620Z copying torch/include/ATen/ops/rnn_tanh_cell_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0626420Z 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-08-14T20:48:00.0633190Z copying torch/include/ATen/ops/_test_warn_in_autograd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0635110Z copying torch/include/ATen/ops/arcsin_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0642050Z 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-08-14T20:48:00.0642860Z copying torch/include/ATen/ops/adaptive_max_pool2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0644170Z copying torch/include/ATen/ops/_chunk_cat_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0650040Z 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-08-14T20:48:00.0650970Z copying torch/include/ATen/ops/atleast_3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0652520Z copying torch/include/ATen/ops/kthvalue_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0656050Z copying torch/include/ATen/ops/_spsolve.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0659620Z copying torch/include/ATen/ops/_foreach_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0665580Z copying torch/include/ATen/ops/smooth_l1_loss_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0668660Z copying torch/include/ATen/ops/replication_pad2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0673550Z copying torch/include/ATen/ops/to_sparse_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0674560Z copying torch/include/ATen/ops/mkldnn_max_pool3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0677240Z 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-08-14T20:48:00.0681930Z copying torch/include/ATen/ops/trapz.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0683080Z copying torch/include/ATen/ops/_trilinear_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0685850Z copying torch/include/ATen/ops/native_batch_norm_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0691260Z copying torch/include/ATen/ops/linear_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0694260Z copying torch/include/ATen/ops/_ctc_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0698800Z copying torch/include/ATen/ops/dropout.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0699770Z copying torch/include/ATen/ops/diagonal_scatter_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0703970Z copying torch/include/ATen/ops/randperm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0707760Z copying torch/include/ATen/ops/ccol_indices_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0711490Z copying torch/include/ATen/ops/less_equal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0712370Z copying torch/include/ATen/ops/mse_loss_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0717250Z copying torch/include/ATen/ops/nll_loss2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0720240Z copying torch/include/ATen/ops/qscheme_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0724800Z copying torch/include/ATen/ops/cumprod_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0725770Z copying torch/include/ATen/ops/bmm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0730100Z copying torch/include/ATen/ops/upsample_bilinear2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0734160Z copying torch/include/ATen/ops/_dyn_quant_matmul_4bit_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0739880Z copying torch/include/ATen/ops/blackman_window.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0741270Z copying torch/include/ATen/ops/linalg_matrix_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0747440Z copying torch/include/ATen/ops/elu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0749520Z copying torch/include/ATen/ops/triu_indices_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0755070Z copying torch/include/ATen/ops/conv_transpose3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0756230Z copying torch/include/ATen/ops/special_chebyshev_polynomial_u_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0765200Z copying torch/include/ATen/ops/_foreach_lerp_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0771320Z copying torch/include/ATen/ops/gelu_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0772430Z copying torch/include/ATen/ops/sigmoid_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0773700Z copying torch/include/ATen/ops/index_select_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0779490Z copying torch/include/ATen/ops/dropout_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0780640Z copying torch/include/ATen/ops/lstm_mps_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0787660Z copying torch/include/ATen/ops/cartesian_prod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0788630Z 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-08-14T20:48:00.0795650Z copying torch/include/ATen/ops/_indices_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0796770Z copying torch/include/ATen/ops/_sparse_broadcast_to_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0797910Z copying torch/include/ATen/ops/ormqr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0801500Z copying torch/include/ATen/ops/hardshrink_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0809120Z 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-08-14T20:48:00.0810220Z copying torch/include/ATen/ops/fractional_max_pool3d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0813610Z copying torch/include/ATen/ops/nll_loss_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0818590Z copying torch/include/ATen/ops/adaptive_max_pool3d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0820810Z copying torch/include/ATen/ops/_test_optional_floatlist_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0822140Z copying torch/include/ATen/ops/mse_loss_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0828090Z copying torch/include/ATen/ops/channel_shuffle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0829510Z 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-08-14T20:48:00.0835010Z copying torch/include/ATen/ops/indices_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0837050Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0842580Z copying torch/include/ATen/ops/ge_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0843610Z copying torch/include/ATen/ops/adaptive_avg_pool3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0847130Z copying torch/include/ATen/ops/minimum_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0851400Z copying torch/include/ATen/ops/_dimI_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0852730Z copying torch/include/ATen/ops/resize_as.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0856200Z copying torch/include/ATen/ops/_standard_gamma_grad_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0860960Z copying torch/include/ATen/ops/reflection_pad3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0865840Z copying torch/include/ATen/ops/or.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0867990Z copying torch/include/ATen/ops/is_same_size_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0869120Z copying torch/include/ATen/ops/cumsum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0875000Z copying torch/include/ATen/ops/upsample_nearest1d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0876420Z copying torch/include/ATen/ops/set_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0882720Z copying torch/include/ATen/ops/exponential_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0883740Z 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-08-14T20:48:00.0890610Z copying torch/include/ATen/ops/linear_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0891470Z copying torch/include/ATen/ops/polar_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0892640Z copying torch/include/ATen/ops/copysign_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0898770Z copying torch/include/ATen/ops/asin_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0899870Z copying torch/include/ATen/ops/upsample_nearest3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0906580Z copying torch/include/ATen/ops/mode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0908060Z copying torch/include/ATen/ops/native_layer_norm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0914560Z copying torch/include/ATen/ops/t_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0915400Z copying torch/include/ATen/ops/_nested_tensor_softmax_with_shape.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0916770Z copying torch/include/ATen/ops/reciprocal_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0922270Z copying torch/include/ATen/ops/_foreach_sigmoid_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0923410Z copying torch/include/ATen/ops/alias_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0929950Z copying torch/include/ATen/ops/ormqr_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0931350Z copying torch/include/ATen/ops/hash_tensor_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0937510Z copying torch/include/ATen/ops/hsplit_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0938420Z copying torch/include/ATen/ops/hash_tensor_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0939700Z copying torch/include/ATen/ops/heaviside_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0945490Z copying torch/include/ATen/ops/kaiser_window_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0946580Z copying torch/include/ATen/ops/fft_fftfreq_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0954690Z copying torch/include/ATen/ops/greater_equal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0958460Z copying torch/include/ATen/ops/hardshrink_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0959540Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0964730Z copying torch/include/ATen/ops/batch_norm_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0968020Z 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-08-14T20:48:00.0972390Z copying torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.0973170Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1012000Z copying torch/include/ATen/ops/zero_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1013120Z copying torch/include/ATen/ops/special_modified_bessel_k0_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1016610Z copying torch/include/ATen/ops/vsplit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1017790Z copying torch/include/ATen/ops/_linalg_eigh_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1019070Z copying torch/include/ATen/ops/special_modified_bessel_i1_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1020370Z copying torch/include/ATen/ops/nanmedian_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1021630Z copying torch/include/ATen/ops/new_empty_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1022940Z copying torch/include/ATen/ops/addmm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1024050Z copying torch/include/ATen/ops/atan.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1025450Z copying torch/include/ATen/ops/where_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1026650Z copying torch/include/ATen/ops/channel_shuffle_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1027880Z copying torch/include/ATen/ops/glu_jvp_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1029170Z copying torch/include/ATen/ops/_nested_tensor_storage_offsets.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1030650Z copying torch/include/ATen/ops/mkldnn_convolution_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1031820Z copying torch/include/ATen/ops/_is_all_true.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1033100Z copying torch/include/ATen/ops/le_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1035440Z copying torch/include/ATen/ops/fractional_max_pool3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1036590Z copying torch/include/ATen/ops/polygamma_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1037830Z copying torch/include/ATen/ops/_efficientzerotensor_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1041020Z copying torch/include/ATen/ops/index_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1045050Z copying torch/include/ATen/ops/max_pool2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1047820Z copying torch/include/ATen/ops/special_hermite_polynomial_he_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1051940Z copying torch/include/ATen/ops/_nested_get_values_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1054660Z copying torch/include/ATen/ops/addmv_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1059550Z copying torch/include/ATen/ops/view_as_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1061850Z copying torch/include/ATen/ops/_masked_softmax_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1067000Z 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-08-14T20:48:00.1068150Z copying torch/include/ATen/ops/crow_indices_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1073570Z copying torch/include/ATen/ops/as_strided_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1074800Z 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-08-14T20:48:00.1079990Z copying torch/include/ATen/ops/embedding_bag_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1081470Z copying torch/include/ATen/ops/flatten_dense_tensors.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1088010Z copying torch/include/ATen/ops/fft_hfftn_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1089030Z copying torch/include/ATen/ops/mvlgamma_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1094630Z copying torch/include/ATen/ops/_cudnn_rnn_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1095340Z copying torch/include/ATen/ops/isreal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1101520Z copying torch/include/ATen/ops/cumprod_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1102610Z copying torch/include/ATen/ops/logical_xor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1109000Z copying torch/include/ATen/ops/_sobol_engine_initialize_state_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1109920Z copying torch/include/ATen/ops/_unsafe_index_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1115740Z copying torch/include/ATen/ops/cos_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1117620Z copying torch/include/ATen/ops/fft_fftn_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1122450Z copying torch/include/ATen/ops/linalg_lu_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1123450Z copying torch/include/ATen/ops/multi_margin_loss_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1125760Z copying torch/include/ATen/ops/sparse_resize_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1131300Z copying torch/include/ATen/ops/rnn_tanh_cell_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1132160Z copying torch/include/ATen/ops/_embedding_bag_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1138400Z copying torch/include/ATen/ops/_weight_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1139530Z copying torch/include/ATen/ops/eq.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1145820Z copying torch/include/ATen/ops/_efficient_attention_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1147190Z copying torch/include/ATen/ops/_sparse_sum_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1153520Z copying torch/include/ATen/ops/cumprod_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1154540Z 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-08-14T20:48:00.1155780Z copying torch/include/ATen/ops/fmod_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1159080Z copying torch/include/ATen/ops/isinf_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1166780Z copying torch/include/ATen/ops/_fft_c2c.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1171660Z copying torch/include/ATen/ops/vstack_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1172540Z copying torch/include/ATen/ops/_to_sparse_bsc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1178350Z copying torch/include/ATen/ops/pad_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1179820Z copying torch/include/ATen/ops/special_modified_bessel_i0.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1186350Z copying torch/include/ATen/ops/reflection_pad1d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1188960Z copying torch/include/ATen/ops/arcsinh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1194390Z copying torch/include/ATen/ops/addr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1202380Z copying torch/include/ATen/ops/_prelu_kernel_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1203420Z copying torch/include/ATen/ops/cudnn_convolution_relu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1209340Z 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-08-14T20:48:00.1211280Z copying torch/include/ATen/ops/i0_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1216200Z copying torch/include/ATen/ops/huber_loss_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1217270Z copying torch/include/ATen/ops/_fused_rms_norm_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1218740Z copying torch/include/ATen/ops/lu_unpack_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1225270Z copying torch/include/ATen/ops/_coalesced_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1226190Z copying torch/include/ATen/ops/_scaled_grouped_mm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1232710Z copying torch/include/ATen/ops/special_erfcx_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1233590Z copying torch/include/ATen/ops/var_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1240900Z copying torch/include/ATen/ops/mkldnn_max_pool3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1241560Z copying torch/include/ATen/ops/special_bessel_j0_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1242800Z copying torch/include/ATen/ops/linalg_ldl_factor_ex_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1248470Z copying torch/include/ATen/ops/_triton_multi_head_attention_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1249670Z copying torch/include/ATen/ops/igammac_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1256160Z copying torch/include/ATen/ops/var_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1257130Z copying torch/include/ATen/ops/tanh_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1264250Z copying torch/include/ATen/ops/avg_pool3d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1265270Z copying torch/include/ATen/ops/mean_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1266500Z copying torch/include/ATen/ops/lgamma_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1271870Z copying torch/include/ATen/ops/_scaled_mm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1273070Z copying torch/include/ATen/ops/_fused_sdp_choice_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1279460Z copying torch/include/ATen/ops/to_mkldnn_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1281310Z copying torch/include/ATen/ops/replication_pad1d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1286910Z 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-08-14T20:48:00.1287840Z copying torch/include/ATen/ops/binary_cross_entropy_with_logits.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1289250Z copying torch/include/ATen/ops/_validate_sparse_compressed_tensor_args.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1296220Z copying torch/include/ATen/ops/replication_pad3d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1297210Z copying torch/include/ATen/ops/bmm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1303140Z copying torch/include/ATen/ops/_to_dense.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1305160Z copying torch/include/ATen/ops/batch_norm_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1311130Z copying torch/include/ATen/ops/log.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1312210Z copying torch/include/ATen/ops/igamma_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1313640Z 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-08-14T20:48:00.1319260Z copying torch/include/ATen/ops/new_full.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1320360Z copying torch/include/ATen/ops/_to_sparse_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1323360Z copying torch/include/ATen/ops/embedding_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1328400Z copying torch/include/ATen/ops/linalg_slogdet.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1331490Z copying torch/include/ATen/ops/fft_rfft2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1336310Z copying torch/include/ATen/ops/_foreach_atan_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1337170Z copying torch/include/ATen/ops/clip.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1341480Z copying torch/include/ATen/ops/reshape.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1344760Z copying torch/include/ATen/ops/slow_conv_transpose2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1349250Z copying torch/include/ATen/ops/_cast_Long_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1350240Z copying torch/include/ATen/ops/triu_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1353750Z copying torch/include/ATen/ops/index_fill_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1358310Z copying torch/include/ATen/ops/_cslt_sparse_mm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1362030Z copying torch/include/ATen/ops/isneginf_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1365900Z copying torch/include/ATen/ops/matrix_power_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1367160Z 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-08-14T20:48:00.1371170Z copying torch/include/ATen/ops/view_as_complex_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1371970Z copying torch/include/ATen/ops/mvlgamma.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1379350Z copying torch/include/ATen/ops/permute_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1386910Z copying torch/include/ATen/ops/sign_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1388100Z 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-08-14T20:48:00.1395230Z copying torch/include/ATen/ops/reflection_pad2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1396270Z copying torch/include/ATen/ops/_foreach_minimum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1397540Z copying torch/include/ATen/ops/int_repr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1399960Z copying torch/include/ATen/ops/heaviside_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1408000Z copying torch/include/ATen/ops/column_stack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1412190Z copying torch/include/ATen/ops/scatter_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1413130Z copying torch/include/ATen/ops/minimum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1416900Z copying torch/include/ATen/ops/to_sparse_bsc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1421430Z copying torch/include/ATen/ops/absolute_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1425680Z copying torch/include/ATen/ops/from_file_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1428500Z copying torch/include/ATen/ops/miopen_convolution_transpose.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1429800Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1434970Z copying torch/include/ATen/ops/sinc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1436180Z copying torch/include/ATen/ops/_foreach_trunc_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1443500Z copying torch/include/ATen/ops/real_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1444690Z copying torch/include/ATen/ops/split_with_sizes_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1450860Z 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-08-14T20:48:00.1451990Z copying torch/include/ATen/ops/align_tensors_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1458190Z copying torch/include/ATen/ops/acos_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1459360Z copying torch/include/ATen/ops/minimum_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1460660Z copying torch/include/ATen/ops/special_bessel_y0.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1466580Z copying torch/include/ATen/ops/sspaddmm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1467420Z 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-08-14T20:48:00.1474350Z copying torch/include/ATen/ops/logdet_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1475240Z copying torch/include/ATen/ops/cauchy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1477120Z copying torch/include/ATen/ops/bitwise_xor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1482180Z copying torch/include/ATen/ops/is_vulkan_available_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1483370Z copying torch/include/ATen/ops/max_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1489910Z copying torch/include/ATen/ops/gt_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1491420Z copying torch/include/ATen/ops/ccol_indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1498250Z copying torch/include/ATen/ops/normal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1499470Z copying torch/include/ATen/ops/cudnn_convolution_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1500800Z copying torch/include/ATen/ops/_foreach_frac_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1506430Z 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-08-14T20:48:00.1507200Z copying torch/include/ATen/ops/_to_sparse_bsc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1511070Z copying torch/include/ATen/ops/linalg_eigh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1515940Z copying torch/include/ATen/ops/upsample_bilinear2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1517000Z copying torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1519540Z copying torch/include/ATen/ops/rnn_relu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1525480Z copying torch/include/ATen/ops/reflection_pad2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1528330Z copying torch/include/ATen/ops/replication_pad1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1533440Z copying torch/include/ATen/ops/_nnpack_available_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1534420Z copying torch/include/ATen/ops/_validate_sparse_csr_tensor_args.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1536760Z copying torch/include/ATen/ops/upsample_nearest3d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1541080Z copying torch/include/ATen/ops/sym_constrain_range_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1542340Z copying torch/include/ATen/ops/multilabel_margin_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1548310Z copying torch/include/ATen/ops/leaky_relu_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1550940Z copying torch/include/ATen/ops/to_sparse_bsc_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1556230Z 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-08-14T20:48:00.1557090Z copying torch/include/ATen/ops/linalg_ldl_factor_ex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1559680Z copying torch/include/ATen/ops/linspace_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1565520Z copying torch/include/ATen/ops/heaviside_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1566590Z copying torch/include/ATen/ops/to_sparse_bsr_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1573410Z copying torch/include/ATen/ops/histc_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1581360Z copying torch/include/ATen/ops/_pad_packed_sequence_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1582220Z 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-08-14T20:48:00.1583570Z copying torch/include/ATen/ops/_embedding_bag_dense_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1590460Z copying torch/include/ATen/ops/square.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1595040Z copying torch/include/ATen/ops/_empty_per_channel_affine_quantized.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1596110Z copying torch/include/ATen/ops/diagflat_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1605110Z copying torch/include/ATen/ops/rnn_relu_cell_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1609770Z 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-08-14T20:48:00.1610880Z copying torch/include/ATen/ops/prod_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1617780Z copying torch/include/ATen/ops/cdist.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1619940Z copying torch/include/ATen/ops/triu_indices_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1625700Z copying torch/include/ATen/ops/special_expm1_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1626540Z copying torch/include/ATen/ops/atleast_1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1632910Z copying torch/include/ATen/ops/nll_loss_forward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1634140Z copying torch/include/ATen/ops/split_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1641430Z copying torch/include/ATen/ops/special_i1e_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1642370Z copying torch/include/ATen/ops/conv_transpose1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1643630Z copying torch/include/ATen/ops/_assert_async_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1648830Z copying torch/include/ATen/ops/fft_rfftfreq.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1649800Z copying torch/include/ATen/ops/special_chebyshev_polynomial_w_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1655640Z copying torch/include/ATen/ops/cummax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1657210Z copying torch/include/ATen/ops/to_sparse_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1662760Z copying torch/include/ATen/ops/normal_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1664330Z copying torch/include/ATen/ops/leaky_relu_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1665650Z copying torch/include/ATen/ops/binary_cross_entropy_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1672730Z copying torch/include/ATen/ops/cumsum_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1673720Z copying torch/include/ATen/ops/reflection_pad2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1680030Z copying torch/include/ATen/ops/adaptive_max_pool2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1681240Z copying torch/include/ATen/ops/histogram_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1688000Z copying torch/include/ATen/ops/_foreach_acos.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1689040Z copying torch/include/ATen/ops/softshrink_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1690470Z 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-08-14T20:48:00.1696420Z copying torch/include/ATen/ops/amin_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1697370Z copying torch/include/ATen/ops/_foreach_log_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1704500Z copying torch/include/ATen/ops/linalg_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1705480Z copying torch/include/ATen/ops/_nested_view_from_jagged_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1712520Z copying torch/include/ATen/ops/linalg_matrix_power.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1713390Z copying torch/include/ATen/ops/avg_pool1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1714750Z copying torch/include/ATen/ops/unfold_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1720050Z copying torch/include/ATen/ops/_batch_norm_no_update_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1721290Z copying torch/include/ATen/ops/sigmoid_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1727940Z copying torch/include/ATen/ops/clamp_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1728940Z copying torch/include/ATen/ops/norm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1730190Z copying torch/include/ATen/ops/trunc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1736060Z copying torch/include/ATen/ops/linalg_qr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1737080Z copying torch/include/ATen/ops/special_zeta_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1744480Z copying torch/include/ATen/ops/linalg_vector_norm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1745270Z 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-08-14T20:48:00.1756720Z copying torch/include/ATen/ops/avg_pool2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1757280Z copying torch/include/ATen/ops/conv3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1757550Z copying torch/include/ATen/ops/_fill_mem_eff_dropout_mask.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1758670Z copying torch/include/ATen/ops/lt_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1760500Z copying torch/include/ATen/ops/scatter_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1767430Z copying torch/include/ATen/ops/crow_indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1768400Z copying torch/include/ATen/ops/to_dense_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1769830Z copying torch/include/ATen/ops/minimum_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1775030Z copying torch/include/ATen/ops/pixel_shuffle_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1776380Z 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-08-14T20:48:00.1782710Z copying torch/include/ATen/ops/view_as_complex_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1783930Z copying torch/include/ATen/ops/_foreach_clamp_min_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1788250Z copying torch/include/ATen/ops/_convolution_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1792760Z 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-08-14T20:48:00.1801800Z copying torch/include/ATen/ops/special_expit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1802840Z copying torch/include/ATen/ops/zeros_like_compositeimplicitautogradnestedtensor_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1808130Z copying torch/include/ATen/ops/_amp_update_scale_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1815270Z copying torch/include/ATen/ops/lstm_cell_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1816380Z copying torch/include/ATen/ops/binary_cross_entropy_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1821260Z copying torch/include/ATen/ops/elu_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1824600Z 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-08-14T20:48:00.1827160Z copying torch/include/ATen/ops/rename.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1830850Z copying torch/include/ATen/ops/addbmm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1832370Z copying torch/include/ATen/ops/_wrapped_linear_prepack_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1836990Z 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-08-14T20:48:00.1840270Z 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-08-14T20:48:00.1845270Z copying torch/include/ATen/ops/xor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1847670Z 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-08-14T20:48:00.1853110Z copying torch/include/ATen/ops/max_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1854080Z copying torch/include/ATen/ops/log2_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1856380Z copying torch/include/ATen/ops/sub_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1861920Z copying torch/include/ATen/ops/view_as_real_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1864480Z copying torch/include/ATen/ops/_fft_c2c_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1869380Z copying torch/include/ATen/ops/linalg_ldl_factor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1870360Z copying torch/include/ATen/ops/norm_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1874090Z copying torch/include/ATen/ops/_transformer_encoder_layer_fwd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1877820Z 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-08-14T20:48:00.1881490Z copying torch/include/ATen/ops/empty_like_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1882480Z 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-08-14T20:48:00.1887490Z copying torch/include/ATen/ops/native_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1891140Z copying torch/include/ATen/ops/_linalg_solve_ex_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1895590Z copying torch/include/ATen/ops/_is_zerotensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1896580Z copying torch/include/ATen/ops/_log_softmax_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1900730Z copying torch/include/ATen/ops/col_indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1904450Z copying torch/include/ATen/ops/diagonal_scatter_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1908800Z copying torch/include/ATen/ops/index_select_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1909960Z copying torch/include/ATen/ops/gt_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1913450Z copying torch/include/ATen/ops/vander.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1917380Z 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-08-14T20:48:00.1921490Z copying torch/include/ATen/ops/_cdist_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1925020Z copying torch/include/ATen/ops/_unsafe_masked_index_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1925970Z copying torch/include/ATen/ops/_cslt_sparse_mm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1931770Z 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-08-14T20:48:00.1932820Z copying torch/include/ATen/ops/signbit_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1939670Z copying torch/include/ATen/ops/_foreach_add_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1940700Z copying torch/include/ATen/ops/add_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1947170Z copying torch/include/ATen/ops/_addmm_activation_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1948220Z copying torch/include/ATen/ops/maximum_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1949730Z copying torch/include/ATen/ops/renorm_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1956660Z copying torch/include/ATen/ops/elu_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1957620Z copying torch/include/ATen/ops/quantized_max_pool2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1964640Z copying torch/include/ATen/ops/randn_like_compositeimplicitautogradnestedtensor_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1965580Z copying torch/include/ATen/ops/tril_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1972500Z copying torch/include/ATen/ops/special_bessel_j0_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1973600Z copying torch/include/ATen/ops/fft_fft_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1974920Z copying torch/include/ATen/ops/_test_optional_floatlist_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1979460Z copying torch/include/ATen/ops/_lazy_clone_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1980840Z copying torch/include/ATen/ops/silu_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1987330Z copying torch/include/ATen/ops/_slow_conv2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1988670Z copying torch/include/ATen/ops/avg_pool2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1995220Z copying torch/include/ATen/ops/result_type_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.1996590Z copying torch/include/ATen/ops/lcm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2004110Z copying torch/include/ATen/ops/_foreach_erfc_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2012790Z 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-08-14T20:48:00.2013750Z copying torch/include/ATen/ops/special_softmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2017800Z 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-08-14T20:48:00.2022470Z copying torch/include/ATen/ops/_make_dep_token_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2027720Z copying torch/include/ATen/ops/special_zeta_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2030280Z copying torch/include/ATen/ops/poisson_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2035160Z copying torch/include/ATen/ops/_amp_update_scale_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2036000Z copying torch/include/ATen/ops/_pad_packed_sequence_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2040140Z copying torch/include/ATen/ops/fft_irfft.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2044620Z copying torch/include/ATen/ops/softshrink_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2049380Z copying torch/include/ATen/ops/sum_to_size_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2051720Z copying torch/include/ATen/ops/transpose_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2052680Z copying torch/include/ATen/ops/trace_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2059330Z copying torch/include/ATen/ops/fft_rfft.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2060460Z copying torch/include/ATen/ops/upsample_nearest2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2067260Z copying torch/include/ATen/ops/quantized_max_pool1d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2068070Z copying torch/include/ATen/ops/one_hot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2075440Z copying torch/include/ATen/ops/_softmax_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2076360Z copying torch/include/ATen/ops/_to_sparse_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2077560Z copying torch/include/ATen/ops/atleast_2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2083490Z copying torch/include/ATen/ops/argmin_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2084440Z copying torch/include/ATen/ops/_nested_from_padded_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2092090Z copying torch/include/ATen/ops/randint.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2093380Z 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-08-14T20:48:00.2094800Z copying torch/include/ATen/ops/embedding_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2099800Z copying torch/include/ATen/ops/leaky_relu_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2100820Z copying torch/include/ATen/ops/smooth_l1_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2107250Z copying torch/include/ATen/ops/broadcast_tensors_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2108280Z copying torch/include/ATen/ops/mkldnn_max_pool2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2109480Z copying torch/include/ATen/ops/sym_constrain_range.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2115340Z copying torch/include/ATen/ops/linalg_matrix_exp_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2116190Z copying torch/include/ATen/ops/fft_fftshift_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2123600Z copying torch/include/ATen/ops/glu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2124860Z copying torch/include/ATen/ops/asin_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2132290Z copying torch/include/ATen/ops/diag.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2133640Z copying torch/include/ATen/ops/mse_loss_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2134660Z copying torch/include/ATen/ops/gather_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2140320Z copying torch/include/ATen/ops/_is_zerotensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2141360Z copying torch/include/ATen/ops/median.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2142670Z copying torch/include/ATen/ops/rnn_relu_cell_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2149230Z copying torch/include/ATen/ops/cummin_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2150500Z copying torch/include/ATen/ops/dequantize_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2156750Z copying torch/include/ATen/ops/cummax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2157670Z copying torch/include/ATen/ops/native_layer_norm_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2164940Z copying torch/include/ATen/ops/view_as_complex_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2166190Z copying torch/include/ATen/ops/igammac_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2167580Z copying torch/include/ATen/ops/cat_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2174190Z copying torch/include/ATen/ops/linalg_qr_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2175280Z 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-08-14T20:48:00.2181250Z copying torch/include/ATen/ops/celu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2182320Z copying torch/include/ATen/ops/_functional_assert_scalar_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2183570Z copying torch/include/ATen/ops/addr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2188860Z copying torch/include/ATen/ops/where.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2189740Z copying torch/include/ATen/ops/empty_strided_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2196980Z copying torch/include/ATen/ops/quantized_batch_norm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2197950Z copying torch/include/ATen/ops/_foreach_reciprocal_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2202190Z copying torch/include/ATen/ops/miopen_rnn_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2203440Z copying torch/include/ATen/ops/hash_tensor_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2209900Z 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-08-14T20:48:00.2219210Z copying torch/include/ATen/ops/embedding.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2220200Z copying torch/include/ATen/ops/is_leaf_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2223600Z copying torch/include/ATen/ops/remainder_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2228020Z copying torch/include/ATen/ops/sym_size_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2235390Z copying torch/include/ATen/ops/fill_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2236540Z copying torch/include/ATen/ops/relu6.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2243390Z copying torch/include/ATen/ops/_coalesce.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2250820Z copying torch/include/ATen/ops/bitwise_right_shift_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2252270Z copying torch/include/ATen/ops/nextafter_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2253600Z copying torch/include/ATen/ops/reflection_pad3d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2258220Z copying torch/include/ATen/ops/nonzero_static_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2259400Z copying torch/include/ATen/ops/_sobol_engine_initialize_state.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2265630Z copying torch/include/ATen/ops/range_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2266960Z copying torch/include/ATen/ops/special_bessel_y1_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2273460Z copying torch/include/ATen/ops/cross_entropy_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2274470Z copying torch/include/ATen/ops/native_channel_shuffle_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2275750Z copying torch/include/ATen/ops/bmm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2282630Z 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-08-14T20:48:00.2283620Z copying torch/include/ATen/ops/_add_relu_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2290650Z copying torch/include/ATen/ops/triu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2291610Z copying torch/include/ATen/ops/negative.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2298830Z copying torch/include/ATen/ops/linalg_lstsq_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2299860Z copying torch/include/ATen/ops/empty_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2301030Z copying torch/include/ATen/ops/argmax_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2306810Z copying torch/include/ATen/ops/_to_cpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2307620Z copying torch/include/ATen/ops/native_group_norm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2314310Z copying torch/include/ATen/ops/upsample_bicubic2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2315550Z copying torch/include/ATen/ops/arcsinh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2316940Z copying torch/include/ATen/ops/q_per_channel_scales.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2321060Z copying torch/include/ATen/ops/tanh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2323420Z copying torch/include/ATen/ops/_test_optional_intlist_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2329210Z copying torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2330200Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2333070Z copying torch/include/ATen/ops/stack_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2339460Z copying torch/include/ATen/ops/pdist_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2340460Z copying torch/include/ATen/ops/_test_string_default.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2346940Z copying torch/include/ATen/ops/nll_loss2d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2348040Z copying torch/include/ATen/ops/narrow_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2354710Z copying torch/include/ATen/ops/_sparse_semi_structured_tile.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2355650Z copying torch/include/ATen/ops/argmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2356960Z copying torch/include/ATen/ops/_fused_sdp_choice_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2362520Z copying torch/include/ATen/ops/is_signed_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2363580Z copying torch/include/ATen/ops/conv2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2369930Z copying torch/include/ATen/ops/_test_optional_intlist.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2371060Z 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-08-14T20:48:00.2378020Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2379270Z 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-08-14T20:48:00.2380460Z copying torch/include/ATen/ops/_weight_norm_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2385360Z copying torch/include/ATen/ops/atanh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2386470Z copying torch/include/ATen/ops/_foreach_sqrt_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2393700Z copying torch/include/ATen/ops/var_mean_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2394720Z copying torch/include/ATen/ops/polar_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2401360Z copying torch/include/ATen/ops/square_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2402330Z copying torch/include/ATen/ops/argsort.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2403630Z copying torch/include/ATen/ops/slice_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2407850Z copying torch/include/ATen/ops/erf_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2416110Z copying torch/include/ATen/ops/_linalg_det_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2417350Z copying torch/include/ATen/ops/linalg_cholesky_ex_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2423210Z copying torch/include/ATen/ops/_sparse_log_softmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2425050Z 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-08-14T20:48:00.2433390Z copying torch/include/ATen/ops/norm_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2434420Z 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-08-14T20:48:00.2437980Z copying torch/include/ATen/ops/mean.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2442310Z copying torch/include/ATen/ops/_assert_tensor_metadata_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2445990Z copying torch/include/ATen/ops/_sparse_addmm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2451800Z copying torch/include/ATen/ops/_cufft_clear_plan_cache_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2454140Z copying torch/include/ATen/ops/empty_strided_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2460330Z 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-08-14T20:48:00.2461230Z copying torch/include/ATen/ops/bitwise_right_shift_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2462490Z copying torch/include/ATen/ops/chalf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2469230Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2470220Z copying torch/include/ATen/ops/adaptive_max_pool3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2476800Z 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-08-14T20:48:00.2477770Z copying torch/include/ATen/ops/special_chebyshev_polynomial_t_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2484470Z copying torch/include/ATen/ops/empty_permuted_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2693570Z copying torch/include/ATen/ops/_amp_update_scale_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2694560Z copying torch/include/ATen/ops/hardswish_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2695820Z copying torch/include/ATen/ops/pow_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2697080Z copying torch/include/ATen/ops/frexp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2698380Z copying torch/include/ATen/ops/cholesky_solve.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2705160Z copying torch/include/ATen/ops/_dim_arange_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2706140Z copying torch/include/ATen/ops/median_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2707380Z copying torch/include/ATen/ops/sigmoid.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2708730Z copying torch/include/ATen/ops/conv1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2727530Z 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-08-14T20:48:00.2728720Z 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-08-14T20:48:00.2730040Z 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-08-14T20:48:00.2731440Z copying torch/include/ATen/ops/bernoulli_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2732620Z copying torch/include/ATen/ops/_nested_get_values_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2733900Z copying torch/include/ATen/ops/masked_select_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2735190Z copying torch/include/ATen/ops/glu_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2736400Z copying torch/include/ATen/ops/_foreach_sigmoid.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2737700Z copying torch/include/ATen/ops/logical_and_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2739140Z 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-08-14T20:48:00.2740450Z copying torch/include/ATen/ops/cudnn_is_acceptable_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2741900Z copying torch/include/ATen/ops/_foreach_norm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2743190Z copying torch/include/ATen/ops/conv1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2744450Z copying torch/include/ATen/ops/lcm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2745820Z copying torch/include/ATen/ops/rrelu_with_noise_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2748190Z copying torch/include/ATen/ops/retains_grad_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2749260Z copying torch/include/ATen/ops/special_modified_bessel_i0_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2750590Z copying torch/include/ATen/ops/empty_strided_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2751880Z copying torch/include/ATen/ops/_make_dep_token.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2753210Z copying torch/include/ATen/ops/complex_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2754360Z copying torch/include/ATen/ops/max_pool1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2755650Z copying torch/include/ATen/ops/count_nonzero_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2756880Z copying torch/include/ATen/ops/logaddexp_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2758230Z copying torch/include/ATen/ops/clamp_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2759580Z 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-08-14T20:48:00.2761070Z copying torch/include/ATen/ops/adaptive_avg_pool2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2762360Z copying torch/include/ATen/ops/reflection_pad2d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2763860Z copying torch/include/ATen/ops/special_modified_bessel_i1_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2764960Z copying torch/include/ATen/ops/nansum_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2766230Z copying torch/include/ATen/ops/cholesky_inverse_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2767520Z copying torch/include/ATen/ops/_test_optional_intlist_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2768990Z copying torch/include/ATen/ops/upsample_nearest1d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2770270Z copying torch/include/ATen/ops/quantized_max_pool2d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2771580Z 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-08-14T20:48:00.2772930Z copying torch/include/ATen/ops/_to_sparse_csc_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2774330Z copying torch/include/ATen/ops/ne_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2894780Z copying torch/include/ATen/ops/scatter_reduce_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2895780Z copying torch/include/ATen/ops/floor_divide_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2897050Z copying torch/include/ATen/ops/_efficientzerotensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2898410Z copying torch/include/ATen/ops/_softmax_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2899770Z copying torch/include/ATen/ops/special_log_ndtr_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2901290Z copying torch/include/ATen/ops/special_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2902480Z copying torch/include/ATen/ops/polygamma_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2903860Z copying torch/include/ATen/ops/lgamma_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2905340Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k0.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2906630Z copying torch/include/ATen/ops/exponential_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2907830Z copying torch/include/ATen/ops/cholesky_inverse.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2909140Z copying torch/include/ATen/ops/max_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2910400Z copying torch/include/ATen/ops/rsqrt_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2911960Z 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-08-14T20:48:00.2913300Z copying torch/include/ATen/ops/row_stack_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2914680Z copying torch/include/ATen/ops/_make_per_channel_quantized_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2915980Z copying torch/include/ATen/ops/segment_reduce_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2917300Z copying torch/include/ATen/ops/sin_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2918650Z copying torch/include/ATen/ops/empty_strided.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2919940Z copying torch/include/ATen/ops/_embedding_bag_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2921350Z copying torch/include/ATen/ops/linalg_solve_triangular_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2922610Z copying torch/include/ATen/ops/abs_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2991330Z copying torch/include/ATen/ops/moveaxis_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2992420Z copying torch/include/ATen/ops/nll_loss_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2993870Z copying torch/include/ATen/ops/_make_dual_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2995120Z copying torch/include/ATen/ops/ceil_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2996290Z copying torch/include/ATen/ops/conj_physical.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2997510Z copying torch/include/ATen/ops/_foreach_asin_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.2998880Z copying torch/include/ATen/ops/fft_ihfft2_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3000180Z 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-08-14T20:48:00.3001440Z copying torch/include/ATen/ops/deg2rad_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3002780Z copying torch/include/ATen/ops/median_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3004100Z 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-08-14T20:48:00.3005380Z copying torch/include/ATen/ops/reflection_pad3d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3006780Z copying torch/include/ATen/ops/polygamma_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3007950Z copying torch/include/ATen/ops/_linalg_solve_ex_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3009320Z copying torch/include/ATen/ops/norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3010470Z copying torch/include/ATen/ops/batch_norm_stats.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3011790Z copying torch/include/ATen/ops/baddbmm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3013100Z 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-08-14T20:48:00.3014380Z 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-08-14T20:48:00.3015630Z copying torch/include/ATen/ops/_linalg_solve_ex_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3016890Z 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-08-14T20:48:00.3018860Z 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-08-14T20:48:00.3019550Z copying torch/include/ATen/ops/unfold_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3020910Z copying torch/include/ATen/ops/view_as_complex_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3022250Z copying torch/include/ATen/ops/adaptive_avg_pool2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3023540Z copying torch/include/ATen/ops/huber_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3024740Z copying torch/include/ATen/ops/_ctc_loss_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3026000Z copying torch/include/ATen/ops/pin_memory.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3027520Z copying torch/include/ATen/ops/_safe_softmax_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3028940Z copying torch/include/ATen/ops/logaddexp2_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3030050Z copying torch/include/ATen/ops/stft.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3031350Z 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-08-14T20:48:00.3032690Z copying torch/include/ATen/ops/erf_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3033990Z copying torch/include/ATen/ops/reflection_pad1d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3035420Z 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-08-14T20:48:00.3036530Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3037820Z copying torch/include/ATen/ops/linalg_slogdet_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3039110Z copying torch/include/ATen/ops/_embedding_bag_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3040470Z copying torch/include/ATen/ops/conv_depthwise3d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3041800Z 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-08-14T20:48:00.3042990Z copying torch/include/ATen/ops/special_ndtri_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3044290Z copying torch/include/ATen/ops/celu_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3045540Z copying torch/include/ATen/ops/logit_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3046870Z copying torch/include/ATen/ops/slow_conv_dilated3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3048000Z copying torch/include/ATen/ops/nanmean_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3049220Z copying torch/include/ATen/ops/to_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3050580Z copying torch/include/ATen/ops/avg_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3051850Z copying torch/include/ATen/ops/hardswish_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3053170Z 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-08-14T20:48:00.3054310Z copying torch/include/ATen/ops/polygamma_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3055550Z copying torch/include/ATen/ops/normal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3056820Z copying torch/include/ATen/ops/avg_pool3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3058150Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3059500Z copying torch/include/ATen/ops/copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3060630Z copying torch/include/ATen/ops/add_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3061940Z 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-08-14T20:48:00.3063300Z copying torch/include/ATen/ops/special_gammainc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3064500Z copying torch/include/ATen/ops/batch_norm_gather_stats.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3065960Z 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-08-14T20:48:00.3067150Z copying torch/include/ATen/ops/sspaddmm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3068370Z copying torch/include/ATen/ops/stack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3069560Z copying torch/include/ATen/ops/isin.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3070800Z copying torch/include/ATen/ops/multi_margin_loss_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3072050Z copying torch/include/ATen/ops/mkldnn_max_pool2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3073470Z copying torch/include/ATen/ops/svd_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3074550Z copying torch/include/ATen/ops/sparse_bsc_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3075860Z copying torch/include/ATen/ops/hspmm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3077060Z copying torch/include/ATen/ops/conj_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3078420Z copying torch/include/ATen/ops/linalg_lu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3079700Z copying torch/include/ATen/ops/addmm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3080960Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3082190Z copying torch/include/ATen/ops/clone_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3083610Z copying torch/include/ATen/ops/_foreach_pow_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3084990Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3086230Z copying torch/include/ATen/ops/_foreach_log2_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3087490Z 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-08-14T20:48:00.3088830Z 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-08-14T20:48:00.3090060Z copying torch/include/ATen/ops/linalg_eigvals.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3091300Z copying torch/include/ATen/ops/linalg_vander_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3092730Z copying torch/include/ATen/ops/_addmm_activation_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3093920Z copying torch/include/ATen/ops/hardtanh_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3095150Z copying torch/include/ATen/ops/conv_tbc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3096360Z copying torch/include/ATen/ops/isposinf_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3097670Z copying torch/include/ATen/ops/cudnn_grid_sampler_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3099030Z 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-08-14T20:48:00.3100210Z copying torch/include/ATen/ops/special_chebyshev_polynomial_w.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3101610Z copying torch/include/ATen/ops/resize_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3102750Z copying torch/include/ATen/ops/triu_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3104080Z copying torch/include/ATen/ops/scatter_add.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3105410Z copying torch/include/ATen/ops/_transform_bias_rescale_qkv_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3107860Z copying torch/include/ATen/ops/miopen_batch_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3112690Z copying torch/include/ATen/ops/fill_diagonal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3113750Z copying torch/include/ATen/ops/special_digamma_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3117600Z 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-08-14T20:48:00.3121080Z copying torch/include/ATen/ops/_test_serialization_subcmul.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3124440Z copying torch/include/ATen/ops/prod_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3125660Z copying torch/include/ATen/ops/_nested_get_values.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3131220Z 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-08-14T20:48:00.3132320Z copying torch/include/ATen/ops/neg_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3138530Z copying torch/include/ATen/ops/linalg_tensorinv_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3139660Z copying torch/include/ATen/ops/logical_xor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3145980Z copying torch/include/ATen/ops/sparse_dim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3147180Z 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-08-14T20:48:00.3153990Z 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-08-14T20:48:00.3154790Z copying torch/include/ATen/ops/linalg_matrix_exp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3162340Z copying torch/include/ATen/ops/_copy_from_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3163090Z copying torch/include/ATen/ops/complex_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3164360Z copying torch/include/ATen/ops/clone_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3169350Z copying torch/include/ATen/ops/linalg_vector_norm_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3171130Z 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-08-14T20:48:00.3176950Z copying torch/include/ATen/ops/slow_conv_transpose2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3177890Z 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-08-14T20:48:00.3179220Z 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-08-14T20:48:00.3185440Z copying torch/include/ATen/ops/dequantize_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3186570Z copying torch/include/ATen/ops/erfinv_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3194010Z copying torch/include/ATen/ops/_pin_memory_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3194930Z copying torch/include/ATen/ops/sign_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3201420Z copying torch/include/ATen/ops/special_i0_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3202330Z copying torch/include/ATen/ops/_dimV_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3203690Z copying torch/include/ATen/ops/frac_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3208690Z copying torch/include/ATen/ops/ctc_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3209810Z copying torch/include/ATen/ops/_lazy_clone_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3216810Z copying torch/include/ATen/ops/_foreach_cos_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3217780Z copying torch/include/ATen/ops/transpose_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3223490Z copying torch/include/ATen/ops/masked_select_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3224780Z copying torch/include/ATen/ops/quantized_max_pool3d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3231080Z copying torch/include/ATen/ops/_prelu_kernel_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3232400Z copying torch/include/ATen/ops/set_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3239210Z copying torch/include/ATen/ops/relu6_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3240480Z copying torch/include/ATen/ops/special_modified_bessel_k1_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3246860Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3248820Z copying torch/include/ATen/ops/expm1_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3255640Z copying torch/include/ATen/ops/kron.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3256720Z 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-08-14T20:48:00.3263780Z copying torch/include/ATen/ops/cat_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3264770Z copying torch/include/ATen/ops/_linalg_check_errors_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3272080Z copying torch/include/ATen/ops/triplet_margin_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3273180Z copying torch/include/ATen/ops/tril.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3274540Z copying torch/include/ATen/ops/msort_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3279270Z copying torch/include/ATen/ops/fft_rfft_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3281070Z copying torch/include/ATen/ops/bernoulli_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3286970Z copying torch/include/ATen/ops/nanmedian_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3287790Z copying torch/include/ATen/ops/_remove_batch_dim_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3289180Z copying torch/include/ATen/ops/linalg_cholesky_ex_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3295230Z copying torch/include/ATen/ops/quantized_rnn_relu_cell.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3296580Z copying torch/include/ATen/ops/silu_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3303390Z copying torch/include/ATen/ops/embedding_renorm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3304710Z copying torch/include/ATen/ops/pdist_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3312130Z copying torch/include/ATen/ops/_cudnn_init_dropout_state_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3313100Z copying torch/include/ATen/ops/_to_sparse_semi_structured_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3314380Z copying torch/include/ATen/ops/hardshrink_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3319470Z 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-08-14T20:48:00.3320360Z copying torch/include/ATen/ops/sym_stride_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3327910Z copying torch/include/ATen/ops/_make_dual_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3328700Z 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-08-14T20:48:00.3330080Z copying torch/include/ATen/ops/hardswish_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3335840Z copying torch/include/ATen/ops/elu_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3336990Z copying torch/include/ATen/ops/miopen_batch_norm_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3342550Z copying torch/include/ATen/ops/tanh_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3346020Z copying torch/include/ATen/ops/abs_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3347030Z copying torch/include/ATen/ops/conv_transpose1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3351760Z copying torch/include/ATen/ops/isneginf_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3354510Z copying torch/include/ATen/ops/adaptive_max_pool3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3359120Z copying torch/include/ATen/ops/poisson_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3360210Z copying torch/include/ATen/ops/embedding_renorm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3364080Z copying torch/include/ATen/ops/_lu_with_info_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3369210Z copying torch/include/ATen/ops/max_pool2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3370820Z copying torch/include/ATen/ops/minimum_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3372190Z copying torch/include/ATen/ops/log_sigmoid_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3379230Z copying torch/include/ATen/ops/_sobol_engine_ff.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3380480Z copying torch/include/ATen/ops/native_batch_norm_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3386740Z copying torch/include/ATen/ops/block_diag_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3387820Z copying torch/include/ATen/ops/permute_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3395150Z 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-08-14T20:48:00.3396170Z copying torch/include/ATen/ops/_sparse_csc_tensor_unsafe.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3397390Z copying torch/include/ATen/ops/smooth_l1_loss_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3402720Z copying torch/include/ATen/ops/empty_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3404030Z copying torch/include/ATen/ops/acosh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3411220Z copying torch/include/ATen/ops/roll_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3412100Z copying torch/include/ATen/ops/_copy_from_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3419060Z copying torch/include/ATen/ops/_foreach_log2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3420060Z 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-08-14T20:48:00.3426610Z copying torch/include/ATen/ops/linear_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3427890Z copying torch/include/ATen/ops/upsample_bilinear2d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3431870Z copying torch/include/ATen/ops/prod_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3436650Z copying torch/include/ATen/ops/_transform_bias_rescale_qkv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3440850Z copying torch/include/ATen/ops/native_batch_norm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3445810Z copying torch/include/ATen/ops/digamma_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3447500Z 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-08-14T20:48:00.3448870Z copying torch/include/ATen/ops/_sparse_csc_tensor_unsafe_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3454070Z copying torch/include/ATen/ops/native_dropout_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3455020Z copying torch/include/ATen/ops/conj_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3461720Z 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-08-14T20:48:00.3462910Z copying torch/include/ATen/ops/native_dropout.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3469280Z copying torch/include/ATen/ops/_unsafe_index.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3470610Z copying torch/include/ATen/ops/cosh_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3477450Z copying torch/include/ATen/ops/_nested_get_jagged_dummy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3478860Z copying torch/include/ATen/ops/record_stream_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3485050Z copying torch/include/ATen/ops/cudnn_convolution_transpose.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3492380Z copying torch/include/ATen/ops/_unique2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3494750Z copying torch/include/ATen/ops/special_i1e_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3499930Z copying torch/include/ATen/ops/_foreach_log2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3501240Z copying torch/include/ATen/ops/native_dropout_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3502500Z copying torch/include/ATen/ops/sum_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3508500Z copying torch/include/ATen/ops/linalg_solve_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3509520Z copying torch/include/ATen/ops/_to_dense_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3516600Z copying torch/include/ATen/ops/empty_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3517630Z copying torch/include/ATen/ops/_test_parallel_materialize_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3524170Z copying torch/include/ATen/ops/bernoulli.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3525120Z copying torch/include/ATen/ops/_pad_circular_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3526320Z copying torch/include/ATen/ops/diagonal_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3531740Z copying torch/include/ATen/ops/index_select_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3533040Z copying torch/include/ATen/ops/special_bessel_j1_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3539760Z copying torch/include/ATen/ops/empty_quantized_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3540660Z copying torch/include/ATen/ops/size_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3547880Z copying torch/include/ATen/ops/_log_softmax_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3548710Z copying torch/include/ATen/ops/replication_pad3d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3549980Z copying torch/include/ATen/ops/special_psi.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3555220Z copying torch/include/ATen/ops/_log_softmax_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3556540Z copying torch/include/ATen/ops/addcmul.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3562860Z copying torch/include/ATen/ops/sigmoid_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3564010Z copying torch/include/ATen/ops/select_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3570730Z copying torch/include/ATen/ops/special_multigammaln_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3571600Z copying torch/include/ATen/ops/exp2_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3572830Z copying torch/include/ATen/ops/_foreach_addcmul.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3578410Z copying torch/include/ATen/ops/addmv_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3580450Z copying torch/include/ATen/ops/log_sigmoid_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3586410Z copying torch/include/ATen/ops/type_as_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3587550Z copying torch/include/ATen/ops/linalg_tensorsolve_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3589670Z copying torch/include/ATen/ops/range_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3595230Z 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-08-14T20:48:00.3596110Z copying torch/include/ATen/ops/glu_backward_jvp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3602860Z copying torch/include/ATen/ops/_dirichlet_grad_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3603810Z copying torch/include/ATen/ops/upsample_nearest1d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3611450Z copying torch/include/ATen/ops/sinh_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3612280Z copying torch/include/ATen/ops/max_unpool3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3613470Z copying torch/include/ATen/ops/bincount.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3618880Z copying torch/include/ATen/ops/silu_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3619970Z copying torch/include/ATen/ops/hann_window_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3626940Z 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-08-14T20:48:00.3627850Z 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-08-14T20:48:00.3629040Z copying torch/include/ATen/ops/elu_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3636270Z copying torch/include/ATen/ops/greater_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3637230Z copying torch/include/ATen/ops/cummaxmin_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3641570Z copying torch/include/ATen/ops/batch_norm_elemt_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3645400Z copying torch/include/ATen/ops/affine_grid_generator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3649720Z copying torch/include/ATen/ops/logical_and_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3654280Z copying torch/include/ATen/ops/split_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3657270Z 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-08-14T20:48:00.3662210Z copying torch/include/ATen/ops/native_channel_shuffle_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3662990Z copying torch/include/ATen/ops/greater_equal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3667090Z copying torch/include/ATen/ops/imag.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3671530Z copying torch/include/ATen/ops/argmin_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3675880Z copying torch/include/ATen/ops/special_i0e_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3676890Z copying torch/include/ATen/ops/max_unpool3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3678950Z copying torch/include/ATen/ops/erf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3693140Z 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-08-14T20:48:00.3699670Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3707350Z copying torch/include/ATen/ops/matrix_H.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3708350Z copying torch/include/ATen/ops/transpose_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3715410Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3716380Z copying torch/include/ATen/ops/fill_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3717890Z copying torch/include/ATen/ops/_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3722540Z copying torch/include/ATen/ops/copysign_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3724140Z copying torch/include/ATen/ops/amin_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3730470Z copying torch/include/ATen/ops/rms_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3735740Z copying torch/include/ATen/ops/asin_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3736280Z 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-08-14T20:48:00.3737530Z copying torch/include/ATen/ops/fliplr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3739850Z 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-08-14T20:48:00.3746890Z copying torch/include/ATen/ops/sigmoid_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3747850Z copying torch/include/ATen/ops/mkldnn_reorder_conv3d_weight.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3755040Z copying torch/include/ATen/ops/upsample_trilinear3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3755820Z 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-08-14T20:48:00.3757240Z copying torch/include/ATen/ops/moveaxis_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3762750Z copying torch/include/ATen/ops/sparse_sampled_addmm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3763740Z copying torch/include/ATen/ops/log10.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3770620Z copying torch/include/ATen/ops/aminmax_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3771550Z copying torch/include/ATen/ops/quantized_max_pool2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3772780Z copying torch/include/ATen/ops/masked_scatter_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3780550Z copying torch/include/ATen/ops/i0_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3781770Z 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-08-14T20:48:00.3788840Z copying torch/include/ATen/ops/special_chebyshev_polynomial_v_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3789710Z copying torch/include/ATen/ops/log_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3790930Z copying torch/include/ATen/ops/scatter_add_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3797060Z copying torch/include/ATen/ops/_reshape_alias_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3797860Z 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-08-14T20:48:00.3805230Z copying torch/include/ATen/ops/lcm_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3806380Z copying torch/include/ATen/ops/grid_sampler_2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3807760Z copying torch/include/ATen/ops/_cdist_forward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3812610Z copying torch/include/ATen/ops/softplus_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3813770Z copying torch/include/ATen/ops/bernoulli_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3820790Z copying torch/include/ATen/ops/_padded_dense_to_jagged_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3821770Z copying torch/include/ATen/ops/hardshrink_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3823050Z copying torch/include/ATen/ops/glu_backward_jvp_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3828280Z copying torch/include/ATen/ops/conj_physical_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3829510Z 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-08-14T20:48:00.3836530Z copying torch/include/ATen/ops/upsample_nearest2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3837490Z copying torch/include/ATen/ops/erfinv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3843630Z copying torch/include/ATen/ops/avg_pool1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3844960Z copying torch/include/ATen/ops/_gather_sparse_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3846190Z copying torch/include/ATen/ops/addbmm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3852670Z copying torch/include/ATen/ops/upsample_trilinear3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3853860Z copying torch/include/ATen/ops/relu6_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3859630Z copying torch/include/ATen/ops/slow_conv3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3868400Z copying torch/include/ATen/ops/matmul_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3869510Z copying torch/include/ATen/ops/coalesce.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3876280Z copying torch/include/ATen/ops/_foreach_log10_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3877190Z copying torch/include/ATen/ops/_lu_with_info_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3883740Z 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-08-14T20:48:00.3884620Z copying torch/include/ATen/ops/expm1_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3890590Z 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-08-14T20:48:00.3891570Z 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-08-14T20:48:00.3895910Z copying torch/include/ATen/ops/_weight_norm_interface_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3903670Z copying torch/include/ATen/ops/scatter_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3908980Z copying torch/include/ATen/ops/ne_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3911600Z copying torch/include/ATen/ops/addcmul_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3916470Z copying torch/include/ATen/ops/special_logsumexp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3917460Z 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-08-14T20:48:00.3921630Z copying torch/include/ATen/ops/to_sparse_csr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3925410Z copying torch/include/ATen/ops/_foreach_round.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3928830Z copying torch/include/ATen/ops/floor_divide_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3930070Z copying torch/include/ATen/ops/diagonal_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3934710Z copying torch/include/ATen/ops/margin_ranking_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3937790Z copying torch/include/ATen/ops/_foreach_acos_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3942750Z 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-08-14T20:48:00.3943540Z copying torch/include/ATen/ops/triangular_solve_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3947430Z copying torch/include/ATen/ops/unbind_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3951550Z copying torch/include/ATen/ops/dstack_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3955000Z copying torch/include/ATen/ops/log_sigmoid_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3955980Z copying torch/include/ATen/ops/_sparse_semi_structured_linear_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3961790Z copying torch/include/ATen/ops/special_xlog1py_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3962710Z copying torch/include/ATen/ops/maximum_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3969510Z copying torch/include/ATen/ops/_lstm_mps_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3970310Z copying torch/include/ATen/ops/_nnpack_spatial_convolution_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3977720Z copying torch/include/ATen/ops/contiguous.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3978780Z copying torch/include/ATen/ops/view_as.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3980170Z 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-08-14T20:48:00.3985320Z copying torch/include/ATen/ops/group_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3986480Z copying torch/include/ATen/ops/_fused_dropout_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3993380Z copying torch/include/ATen/ops/sgn_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.3994630Z copying torch/include/ATen/ops/max_pool2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4000960Z copying torch/include/ATen/ops/multiply_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4002080Z copying torch/include/ATen/ops/_sparse_mask_projection_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4003350Z copying torch/include/ATen/ops/all_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4008660Z copying torch/include/ATen/ops/cudnn_affine_grid_generator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4009710Z copying torch/include/ATen/ops/is_signed_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4016600Z copying torch/include/ATen/ops/special_ndtri.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4017820Z copying torch/include/ATen/ops/_weight_norm_differentiable_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4024840Z copying torch/include/ATen/ops/lt_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4025860Z copying torch/include/ATen/ops/requires_grad_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4027120Z copying torch/include/ATen/ops/hypot_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4032510Z copying torch/include/ATen/ops/movedim_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4033480Z copying torch/include/ATen/ops/_compute_linear_combination_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4040770Z 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-08-14T20:48:00.4041710Z copying torch/include/ATen/ops/round_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4048560Z copying torch/include/ATen/ops/reflection_pad1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4049810Z copying torch/include/ATen/ops/norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4050950Z copying torch/include/ATen/ops/_prelu_kernel_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4056220Z copying torch/include/ATen/ops/nonzero_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4057730Z copying torch/include/ATen/ops/upsample_trilinear3d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4064460Z copying torch/include/ATen/ops/batch_norm_backward_reduce_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4065830Z copying torch/include/ATen/ops/fmin_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4067200Z copying torch/include/ATen/ops/index_copy_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4068670Z copying torch/include/ATen/ops/rand.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4077750Z copying torch/include/ATen/ops/searchsorted_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4082160Z copying torch/include/ATen/ops/prod_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4083260Z copying torch/include/ATen/ops/_pdist_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4086930Z copying torch/include/ATen/ops/q_per_channel_scales_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4091090Z copying torch/include/ATen/ops/special_softmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4094930Z copying torch/include/ATen/ops/erfc_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4095960Z copying torch/include/ATen/ops/i0_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4098970Z 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-08-14T20:48:00.4103850Z copying torch/include/ATen/ops/quantized_gru_cell_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4104890Z copying torch/include/ATen/ops/quantize_per_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4111300Z copying torch/include/ATen/ops/_nested_get_values_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4113240Z copying torch/include/ATen/ops/special_hermite_polynomial_he_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4118400Z copying torch/include/ATen/ops/upsample_linear1d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4120220Z copying torch/include/ATen/ops/sym_storage_offset_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4126180Z copying torch/include/ATen/ops/_cslt_sparse_mm_search.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4127040Z copying torch/include/ATen/ops/arctan_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4128200Z copying torch/include/ATen/ops/_sparse_csr_prod_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4135320Z copying torch/include/ATen/ops/any_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4143080Z copying torch/include/ATen/ops/replication_pad3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4144710Z copying torch/include/ATen/ops/avg_pool3d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4150880Z copying torch/include/ATen/ops/reflection_pad2d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4151730Z copying torch/include/ATen/ops/_make_dual_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4153070Z copying torch/include/ATen/ops/_pin_memory_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4158860Z copying torch/include/ATen/ops/nuclear_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4159870Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4167140Z copying torch/include/ATen/ops/ceil_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4168090Z copying torch/include/ATen/ops/_empty_affine_quantized_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4175760Z copying torch/include/ATen/ops/zero_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4176800Z copying torch/include/ATen/ops/_embedding_bag_sparse_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4177950Z copying torch/include/ATen/ops/gelu_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4183250Z copying torch/include/ATen/ops/isnan_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4184990Z copying torch/include/ATen/ops/frac_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4191360Z copying torch/include/ATen/ops/special_zeta_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4192410Z copying torch/include/ATen/ops/avg_pool2d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4193710Z copying torch/include/ATen/ops/_weight_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4199540Z copying torch/include/ATen/ops/linalg_tensorsolve_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4200410Z copying torch/include/ATen/ops/quantized_max_pool2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4204130Z copying torch/include/ATen/ops/replication_pad3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4208360Z copying torch/include/ATen/ops/_sparse_mm_reduce_impl_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4211080Z copying torch/include/ATen/ops/logsumexp_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4212330Z copying torch/include/ATen/ops/erf_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4217600Z copying torch/include/ATen/ops/eye_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4429620Z copying torch/include/ATen/ops/argsort_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4430380Z copying torch/include/ATen/ops/column_stack_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4431810Z copying torch/include/ATen/ops/quantize_per_channel_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4433210Z copying torch/include/ATen/ops/uniform_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4434480Z copying torch/include/ATen/ops/upsample_nearest3d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4435730Z copying torch/include/ATen/ops/_fw_primal_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4446520Z copying torch/include/ATen/ops/sum_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4447680Z copying torch/include/ATen/ops/asin_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4449080Z copying torch/include/ATen/ops/cross_entropy_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4450310Z copying torch/include/ATen/ops/fft_irfft_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4451660Z copying torch/include/ATen/ops/special_chebyshev_polynomial_v_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4452990Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4454320Z copying torch/include/ATen/ops/permute_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4455520Z copying torch/include/ATen/ops/_cdist_forward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4456750Z copying torch/include/ATen/ops/_logcumsumexp_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4458060Z copying torch/include/ATen/ops/tanh_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4459240Z copying torch/include/ATen/ops/row_indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4460530Z copying torch/include/ATen/ops/special_chebyshev_polynomial_w_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4461930Z copying torch/include/ATen/ops/matrix_exp_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4463240Z copying torch/include/ATen/ops/quantize_per_channel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4464810Z copying torch/include/ATen/ops/gcd_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4465990Z copying torch/include/ATen/ops/slow_conv_dilated2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4468870Z copying torch/include/ATen/ops/histogram.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4469880Z copying torch/include/ATen/ops/_conv_depthwise2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4471160Z copying torch/include/ATen/ops/special_i0e_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4472540Z copying torch/include/ATen/ops/_efficient_attention_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4473960Z copying torch/include/ATen/ops/as_strided_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4475240Z copying torch/include/ATen/ops/miopen_rnn_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4476490Z copying torch/include/ATen/ops/special_xlog1py_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4477770Z copying torch/include/ATen/ops/_functional_assert_async_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4479120Z copying torch/include/ATen/ops/avg_pool3d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4480320Z copying torch/include/ATen/ops/amax_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4481590Z copying torch/include/ATen/ops/retains_grad_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4482800Z copying torch/include/ATen/ops/mean_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4484270Z copying torch/include/ATen/ops/nll_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4485500Z copying torch/include/ATen/ops/smooth_l1_loss_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4486810Z copying torch/include/ATen/ops/linalg_inv_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4488070Z 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-08-14T20:48:00.4489460Z copying torch/include/ATen/ops/detach_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4490760Z copying torch/include/ATen/ops/fft_fftn_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4491930Z copying torch/include/ATen/ops/view_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4493190Z 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-08-14T20:48:00.4494520Z copying torch/include/ATen/ops/_histogramdd_from_bin_tensors_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4495780Z copying torch/include/ATen/ops/numpy_T_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4497080Z 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-08-14T20:48:00.4498230Z copying torch/include/ATen/ops/fft_rfftfreq_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4499500Z copying torch/include/ATen/ops/cauchy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4500840Z 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-08-14T20:48:00.4502250Z copying torch/include/ATen/ops/_foreach_neg_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4503360Z copying torch/include/ATen/ops/unflatten_dense_tensors_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4504630Z copying torch/include/ATen/ops/atanh_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4506040Z copying torch/include/ATen/ops/miopen_convolution_add_relu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4507250Z copying torch/include/ATen/ops/native_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4508570Z copying torch/include/ATen/ops/linalg_matrix_power_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4509820Z copying torch/include/ATen/ops/_masked_softmax_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4511200Z copying torch/include/ATen/ops/floor_divide_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4512300Z copying torch/include/ATen/ops/_foreach_expm1.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4513480Z copying torch/include/ATen/ops/fft_fftshift.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4514850Z copying torch/include/ATen/ops/_to_sparse_bsc_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4516210Z copying torch/include/ATen/ops/_pack_padded_sequence_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4517780Z copying torch/include/ATen/ops/_to_sparse_bsr_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4518930Z copying torch/include/ATen/ops/dist_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4520360Z copying torch/include/ATen/ops/polygamma_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4532050Z copying torch/include/ATen/ops/_remove_batch_dim_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4532860Z copying torch/include/ATen/ops/_cast_Short_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4534160Z copying torch/include/ATen/ops/linspace_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4535460Z copying torch/include/ATen/ops/logit_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4536750Z copying torch/include/ATen/ops/remainder_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4537980Z copying torch/include/ATen/ops/bilinear.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4539250Z copying torch/include/ATen/ops/max_unpool2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4540550Z copying torch/include/ATen/ops/reflection_pad2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4541860Z copying torch/include/ATen/ops/_sparse_softmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4543020Z copying torch/include/ATen/ops/_foreach_asin.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4544340Z 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-08-14T20:48:00.4545720Z copying torch/include/ATen/ops/split_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4547020Z copying torch/include/ATen/ops/linalg_multi_dot_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4548290Z copying torch/include/ATen/ops/any_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4549500Z copying torch/include/ATen/ops/upsample_nearest2d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4550800Z 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-08-14T20:48:00.4552100Z copying torch/include/ATen/ops/softplus_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4553330Z copying torch/include/ATen/ops/softmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4554550Z copying torch/include/ATen/ops/ccol_indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4555880Z 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-08-14T20:48:00.4557170Z copying torch/include/ATen/ops/_fft_r2c.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4558490Z copying torch/include/ATen/ops/outer_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4559910Z 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-08-14T20:48:00.4561120Z copying torch/include/ATen/ops/hypot_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4563070Z copying torch/include/ATen/ops/indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4563760Z copying torch/include/ATen/ops/adjoint.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4564980Z copying torch/include/ATen/ops/native_norm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4566280Z copying torch/include/ATen/ops/flip_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4567470Z copying torch/include/ATen/ops/flipud.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4671380Z copying torch/include/ATen/ops/argmin_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4672320Z copying torch/include/ATen/ops/_foreach_exp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4673550Z copying torch/include/ATen/ops/_foreach_erf_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4674810Z copying torch/include/ATen/ops/addbmm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4676080Z copying torch/include/ATen/ops/masked_fill_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4677390Z copying torch/include/ATen/ops/exp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4678560Z copying torch/include/ATen/ops/_ctc_loss_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4679890Z copying torch/include/ATen/ops/flipud_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4681230Z copying torch/include/ATen/ops/log_sigmoid_forward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4682580Z copying torch/include/ATen/ops/upsample_bicubic2d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4683800Z copying torch/include/ATen/ops/leaky_relu_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4685040Z copying torch/include/ATen/ops/_dimV_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4686260Z copying torch/include/ATen/ops/reflection_pad2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4687450Z copying torch/include/ATen/ops/mvlgamma_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4774570Z 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-08-14T20:48:00.4775550Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4776790Z copying torch/include/ATen/ops/_batch_norm_with_update_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4778000Z copying torch/include/ATen/ops/log_normal_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4779350Z copying torch/include/ATen/ops/_sparse_sum_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4847560Z copying torch/include/ATen/ops/_aminmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4848650Z copying torch/include/ATen/ops/_segment_reduce_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4850200Z copying torch/include/ATen/ops/miopen_convolution_transpose_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4851870Z copying torch/include/ATen/ops/miopen_rnn_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4852850Z copying torch/include/ATen/ops/normal_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4854090Z copying torch/include/ATen/ops/dot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4855680Z 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-08-14T20:48:00.4856840Z copying torch/include/ATen/ops/view_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4858310Z copying torch/include/ATen/ops/special_sinc_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4859410Z copying torch/include/ATen/ops/angle_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4860780Z copying torch/include/ATen/ops/group_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4862070Z copying torch/include/ATen/ops/_unsafe_masked_index_put_accumulate.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4863260Z 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-08-14T20:48:00.4864510Z copying torch/include/ATen/ops/_make_dual_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4865740Z copying torch/include/ATen/ops/_rowwise_prune_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4866980Z copying torch/include/ATen/ops/special_erfcx_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4868380Z 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-08-14T20:48:00.4869610Z copying torch/include/ATen/ops/cosine_embedding_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4870920Z 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-08-14T20:48:00.4872220Z copying torch/include/ATen/ops/ge_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4873580Z copying torch/include/ATen/ops/_reshape_from_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4874760Z copying torch/include/ATen/ops/_unsafe_view.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4875940Z copying torch/include/ATen/ops/_conj_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4877240Z 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-08-14T20:48:00.4878510Z copying torch/include/ATen/ops/special_log_ndtr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4879780Z copying torch/include/ATen/ops/asinh_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4881050Z copying torch/include/ATen/ops/_sparse_csr_tensor_unsafe_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4882320Z copying torch/include/ATen/ops/cumulative_trapezoid_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4883590Z copying torch/include/ATen/ops/grid_sampler_2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4884870Z 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-08-14T20:48:00.4886070Z copying torch/include/ATen/ops/_fused_sgd_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4887380Z copying torch/include/ATen/ops/_fused_adam_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4888650Z copying torch/include/ATen/ops/mish_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4889890Z copying torch/include/ATen/ops/can_cast_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4891110Z copying torch/include/ATen/ops/ge_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4892380Z copying torch/include/ATen/ops/unique_consecutive.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4893730Z copying torch/include/ATen/ops/grid_sampler_3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4894830Z copying torch/include/ATen/ops/max.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4896210Z 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-08-14T20:48:00.4897360Z copying torch/include/ATen/ops/_euclidean_dist_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4898600Z copying torch/include/ATen/ops/avg_pool3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4899850Z copying torch/include/ATen/ops/logical_and_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4901220Z copying torch/include/ATen/ops/special_bessel_y1_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4902340Z copying torch/include/ATen/ops/as_strided_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4903530Z copying torch/include/ATen/ops/_sparse_coo_tensor_with_dims.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4904820Z copying torch/include/ATen/ops/add_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4906120Z copying torch/include/ATen/ops/sym_constrain_range_for_size.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4907370Z copying torch/include/ATen/ops/soft_margin_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4908550Z copying torch/include/ATen/ops/isinf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4909920Z copying torch/include/ATen/ops/arctan2_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4911290Z 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-08-14T20:48:00.4912500Z copying torch/include/ATen/ops/clamp_max_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4913700Z copying torch/include/ATen/ops/mkldnn_max_pool2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4914820Z copying torch/include/ATen/ops/_foreach_rsqrt_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4916100Z copying torch/include/ATen/ops/linear_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4917530Z copying torch/include/ATen/ops/acosh_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4918710Z 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-08-14T20:48:00.4926930Z copying torch/include/ATen/ops/addmv_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4928100Z copying torch/include/ATen/ops/_sparse_csc_tensor_unsafe_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4928710Z copying torch/include/ATen/ops/exp_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4929310Z copying torch/include/ATen/ops/upsample_bicubic2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4929930Z copying torch/include/ATen/ops/_foreach_abs_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4930530Z copying torch/include/ATen/ops/select_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4931160Z copying torch/include/ATen/ops/miopen_convolution_transpose_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4931770Z copying torch/include/ATen/ops/zeros_like_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4932440Z copying torch/include/ATen/ops/triangular_solve_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4933100Z copying torch/include/ATen/ops/_softmax_backward_data_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4934140Z copying torch/include/ATen/ops/special_bessel_y0_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4935580Z 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-08-14T20:48:00.4936820Z copying torch/include/ATen/ops/_foreach_sinh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4938270Z copying torch/include/ATen/ops/to_mkldnn_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4939560Z copying torch/include/ATen/ops/_to_sparse_semi_structured.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4940790Z copying torch/include/ATen/ops/_foreach_log2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4942180Z copying torch/include/ATen/ops/_foreach_rsqrt_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4943460Z copying torch/include/ATen/ops/logspace_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4944660Z copying torch/include/ATen/ops/softshrink_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4946000Z copying torch/include/ATen/ops/_aminmax_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4947210Z copying torch/include/ATen/ops/cholesky.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4948650Z copying torch/include/ATen/ops/_masked_scale_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4949810Z copying torch/include/ATen/ops/fft_ihfftn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4951110Z copying torch/include/ATen/ops/or_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4952310Z copying torch/include/ATen/ops/sparse_coo_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4953690Z copying torch/include/ATen/ops/_efficient_attention_forward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4954900Z copying torch/include/ATen/ops/upsample_nearest3d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4956150Z copying torch/include/ATen/ops/max_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4957510Z copying torch/include/ATen/ops/isfinite_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4958820Z copying torch/include/ATen/ops/copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4959890Z copying torch/include/ATen/ops/clamp_min.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4961260Z copying torch/include/ATen/ops/index_reduce_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4964550Z copying torch/include/ATen/ops/repeat_interleave.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4968210Z copying torch/include/ATen/ops/upsample_nearest2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4971810Z copying torch/include/ATen/ops/item_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4973010Z copying torch/include/ATen/ops/cudnn_convolution_relu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4977560Z copying torch/include/ATen/ops/nextafter_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4980330Z copying torch/include/ATen/ops/diag_embed_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4985460Z copying torch/include/ATen/ops/fft_fft2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4989550Z copying torch/include/ATen/ops/leaky_relu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4991880Z copying torch/include/ATen/ops/log2_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.4999760Z copying torch/include/ATen/ops/mkldnn_convolution.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5006940Z copying torch/include/ATen/ops/_unsafe_index_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5007960Z copying torch/include/ATen/ops/_fft_r2c_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5014140Z copying torch/include/ATen/ops/glu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5015040Z copying torch/include/ATen/ops/_test_optional_filled_intlist_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5016330Z copying torch/include/ATen/ops/cat_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5021450Z copying torch/include/ATen/ops/_stack_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5022460Z copying torch/include/ATen/ops/_test_warn_in_autograd_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5029190Z copying torch/include/ATen/ops/_coalesced_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5030320Z copying torch/include/ATen/ops/cudnn_convolution_relu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5037120Z copying torch/include/ATen/ops/upsample_nearest2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5037930Z copying torch/include/ATen/ops/special_gammaln.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5039240Z copying torch/include/ATen/ops/_ctc_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5046000Z copying torch/include/ATen/ops/fill_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5047140Z 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-08-14T20:48:00.5053900Z 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-08-14T20:48:00.5054820Z copying torch/include/ATen/ops/cummaxmin_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5061750Z 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-08-14T20:48:00.5062880Z copying torch/include/ATen/ops/sparse_bsc_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5064120Z copying torch/include/ATen/ops/gcd_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5068410Z copying torch/include/ATen/ops/index_add_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5070200Z copying torch/include/ATen/ops/logit_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5076520Z 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-08-14T20:48:00.5077240Z copying torch/include/ATen/ops/fft_hfftn_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5079500Z copying torch/include/ATen/ops/_flash_attention_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5085640Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5086780Z copying torch/include/ATen/ops/linalg_cholesky_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5090280Z copying torch/include/ATen/ops/_foreach_trunc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5098050Z copying torch/include/ATen/ops/avg_pool3d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5099060Z copying torch/include/ATen/ops/arccos_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5104600Z copying torch/include/ATen/ops/unfold_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5106530Z copying torch/include/ATen/ops/conv_tbc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5112380Z copying torch/include/ATen/ops/_foreach_frac_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5113470Z copying torch/include/ATen/ops/new_empty_strided_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5115720Z copying torch/include/ATen/ops/slow_conv_dilated3d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5122090Z copying torch/include/ATen/ops/sparse_mask.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5123080Z copying torch/include/ATen/ops/hardtanh_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5129440Z copying torch/include/ATen/ops/atanh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5130590Z copying torch/include/ATen/ops/multilabel_margin_loss_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5138290Z copying torch/include/ATen/ops/exponential_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5139270Z copying torch/include/ATen/ops/_sparse_semi_structured_apply.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5140480Z copying torch/include/ATen/ops/lift_fresh_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5146240Z copying torch/include/ATen/ops/ones_like_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5147060Z copying torch/include/ATen/ops/_foreach_sign_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5153750Z copying torch/include/ATen/ops/adjoint_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5154720Z copying torch/include/ATen/ops/addcdiv_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5155990Z 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-08-14T20:48:00.5163400Z copying torch/include/ATen/ops/linalg_vander_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5164460Z copying torch/include/ATen/ops/cov_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5170580Z copying torch/include/ATen/ops/mish_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5172180Z copying torch/include/ATen/ops/full.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5177720Z 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-08-14T20:48:00.5179470Z copying torch/include/ATen/ops/view_as_real_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5180660Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5185580Z 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-08-14T20:48:00.5186740Z copying torch/include/ATen/ops/_foreach_log2_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5193210Z copying torch/include/ATen/ops/linear_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5194590Z copying torch/include/ATen/ops/addmm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5202350Z copying torch/include/ATen/ops/reshape_as.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5203360Z copying torch/include/ATen/ops/upsample_nearest1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5210370Z copying torch/include/ATen/ops/prod_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5211350Z copying torch/include/ATen/ops/abs_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5217980Z copying torch/include/ATen/ops/lift_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5219100Z copying torch/include/ATen/ops/median_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5220980Z 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-08-14T20:48:00.5225510Z copying torch/include/ATen/ops/erfc_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5226570Z copying torch/include/ATen/ops/reflection_pad1d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5232880Z copying torch/include/ATen/ops/nll_loss2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5234430Z copying torch/include/ATen/ops/_linalg_slogdet_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5235710Z copying torch/include/ATen/ops/linalg_lu_solve_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5242720Z copying torch/include/ATen/ops/pad_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5243880Z copying torch/include/ATen/ops/signbit_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5251110Z copying torch/include/ATen/ops/adaptive_max_pool1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5252000Z 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-08-14T20:48:00.5258080Z copying torch/include/ATen/ops/convolution_backward_overrideable_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5259170Z copying torch/include/ATen/ops/linalg_ldl_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5260300Z copying torch/include/ATen/ops/clamp_max_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5265530Z copying torch/include/ATen/ops/sort_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5267330Z copying torch/include/ATen/ops/triu_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5274330Z 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-08-14T20:48:00.5275260Z copying torch/include/ATen/ops/_autocast_to_reduced_precision_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5276430Z copying torch/include/ATen/ops/special_i0.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5282210Z copying torch/include/ATen/ops/atleast_3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5283560Z copying torch/include/ATen/ops/_nested_select_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5289920Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5291270Z copying torch/include/ATen/ops/special_airy_ai_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5298540Z copying torch/include/ATen/ops/addmm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5299560Z copying torch/include/ATen/ops/_validate_compressed_sparse_indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5306080Z copying torch/include/ATen/ops/special_gammaincc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5307560Z copying torch/include/ATen/ops/mish_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5314330Z copying torch/include/ATen/ops/min_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5315120Z copying torch/include/ATen/ops/acosh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5316420Z copying torch/include/ATen/ops/_pad_enum_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5321860Z copying torch/include/ATen/ops/inverse_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5323240Z copying torch/include/ATen/ops/_safe_softmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5330890Z copying torch/include/ATen/ops/mm_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5331780Z copying torch/include/ATen/ops/broadcast_tensors_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5333560Z copying torch/include/ATen/ops/_slow_conv2d_forward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5334910Z copying torch/include/ATen/ops/zero_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5338690Z copying torch/include/ATen/ops/_foreach_tanh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5343180Z copying torch/include/ATen/ops/upsample_trilinear3d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5344400Z copying torch/include/ATen/ops/reflection_pad1d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5347570Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5352080Z copying torch/include/ATen/ops/addcmul_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5352990Z copying torch/include/ATen/ops/huber_loss_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5357090Z copying torch/include/ATen/ops/renorm_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5360820Z copying torch/include/ATen/ops/addmm_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5365170Z 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-08-14T20:48:00.5366320Z 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-08-14T20:48:00.5371370Z copying torch/include/ATen/ops/conv_depthwise3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5374920Z copying torch/include/ATen/ops/_pack_padded_sequence_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5379050Z copying torch/include/ATen/ops/_foreach_reciprocal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5380320Z 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-08-14T20:48:00.5383420Z copying torch/include/ATen/ops/poisson_nll_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5387900Z copying torch/include/ATen/ops/logdet_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5391590Z copying torch/include/ATen/ops/rsub_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5395410Z copying torch/include/ATen/ops/fractional_max_pool3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5396280Z copying torch/include/ATen/ops/_sparse_sum_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5397500Z copying torch/include/ATen/ops/isneginf_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5406560Z copying torch/include/ATen/ops/unsafe_split_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5412250Z copying torch/include/ATen/ops/cat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5413400Z copying torch/include/ATen/ops/_thnn_fused_gru_cell.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5420420Z copying torch/include/ATen/ops/_cudnn_rnn_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5421510Z copying torch/include/ATen/ops/rand_like_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5422800Z copying torch/include/ATen/ops/stft_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5427800Z copying torch/include/ATen/ops/trapezoid_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5429360Z copying torch/include/ATen/ops/relu_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5435750Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5437030Z copying torch/include/ATen/ops/_nested_get_jagged_dummy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5443830Z copying torch/include/ATen/ops/clamp_max_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5444700Z copying torch/include/ATen/ops/_unpack_dual_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5446050Z copying torch/include/ATen/ops/slow_conv_dilated2d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5451550Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5459270Z copying torch/include/ATen/ops/var_mean_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5460760Z copying torch/include/ATen/ops/polar_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5467480Z copying torch/include/ATen/ops/narrow_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5468320Z copying torch/include/ATen/ops/vstack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5469520Z copying torch/include/ATen/ops/convolution_overrideable_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5475140Z copying torch/include/ATen/ops/_foreach_exp_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5475950Z copying torch/include/ATen/ops/transpose_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5482450Z copying torch/include/ATen/ops/threshold_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5484640Z copying torch/include/ATen/ops/tanh_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5490390Z copying torch/include/ATen/ops/bucketize_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5491490Z copying torch/include/ATen/ops/special_airy_ai_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5492860Z 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-08-14T20:48:00.5495300Z copying torch/include/ATen/ops/ccol_indices_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5500290Z copying torch/include/ATen/ops/_cdist_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5508910Z copying torch/include/ATen/ops/view_as_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5511580Z copying torch/include/ATen/ops/reflection_pad2d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5512950Z copying torch/include/ATen/ops/log_sigmoid_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5517770Z copying torch/include/ATen/ops/_cudnn_ctc_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5519860Z copying torch/include/ATen/ops/channel_shuffle_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5526000Z copying torch/include/ATen/ops/view_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5527040Z copying torch/include/ATen/ops/_sparse_coo_tensor_unsafe.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5534130Z copying torch/include/ATen/ops/div_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5534950Z copying torch/include/ATen/ops/eye_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5536230Z copying torch/include/ATen/ops/exp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5541840Z copying torch/include/ATen/ops/randn_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5543310Z copying torch/include/ATen/ops/expm1_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5549380Z copying torch/include/ATen/ops/_sparse_csr_prod_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5550880Z copying torch/include/ATen/ops/numpy_T_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5552250Z copying torch/include/ATen/ops/_empty_affine_quantized_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5558740Z copying torch/include/ATen/ops/rsqrt_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5559760Z copying torch/include/ATen/ops/triu_indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5566500Z copying torch/include/ATen/ops/convolution_overrideable.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5567390Z copying torch/include/ATen/ops/diag_embed_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5574350Z copying torch/include/ATen/ops/std_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5575170Z copying torch/include/ATen/ops/_weight_norm_interface_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5576420Z copying torch/include/ATen/ops/lift_fresh_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5582450Z copying torch/include/ATen/ops/atanh_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5583540Z copying torch/include/ATen/ops/reciprocal_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5590050Z copying torch/include/ATen/ops/im2col_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5591730Z copying torch/include/ATen/ops/linalg_solve_triangular_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5593070Z copying torch/include/ATen/ops/_nested_view_from_buffer_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5599340Z copying torch/include/ATen/ops/sum_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5600300Z copying torch/include/ATen/ops/fft_ifft_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5607960Z copying torch/include/ATen/ops/combinations.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5609030Z copying torch/include/ATen/ops/_to_sparse_csr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5613220Z copying torch/include/ATen/ops/_fft_r2c_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5616040Z copying torch/include/ATen/ops/hardtanh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5622080Z copying torch/include/ATen/ops/promote_types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5624030Z copying torch/include/ATen/ops/cross_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5629510Z copying torch/include/ATen/ops/nansum_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5630600Z copying torch/include/ATen/ops/fft_ihfftn_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5633250Z copying torch/include/ATen/ops/log1p_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5638630Z copying torch/include/ATen/ops/_foreach_sub.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5641280Z copying torch/include/ATen/ops/copysign_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5646600Z copying torch/include/ATen/ops/_cast_Int_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5647660Z 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-08-14T20:48:00.5649130Z copying torch/include/ATen/ops/lshift_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5655720Z copying torch/include/ATen/ops/special_i1_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5657110Z copying torch/include/ATen/ops/negative_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5663310Z copying torch/include/ATen/ops/_cast_Byte.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5664710Z copying torch/include/ATen/ops/_version_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5666260Z copying torch/include/ATen/ops/logaddexp2_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5671410Z copying torch/include/ATen/ops/mish_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5672740Z copying torch/include/ATen/ops/_scaled_mm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5679580Z copying torch/include/ATen/ops/special_laguerre_polynomial_l_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5680740Z copying torch/include/ATen/ops/linalg_cross_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5687670Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5688580Z copying torch/include/ATen/ops/view_as_complex_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5689760Z copying torch/include/ATen/ops/cos.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5695940Z copying torch/include/ATen/ops/bernoulli_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5696890Z 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-08-14T20:48:00.5703130Z copying torch/include/ATen/ops/rrelu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5704730Z copying torch/include/ATen/ops/special_logit_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5706160Z copying torch/include/ATen/ops/can_cast_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5707490Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5716870Z copying torch/include/ATen/ops/to_sparse_csr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5722280Z copying torch/include/ATen/ops/median_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5723860Z 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-08-14T20:48:00.5729910Z copying torch/include/ATen/ops/linalg_diagonal_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5731190Z copying torch/include/ATen/ops/uniform_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5732480Z copying torch/include/ATen/ops/mkldnn_linear_backward_weights_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5738940Z copying torch/include/ATen/ops/linalg_diagonal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5740000Z copying torch/include/ATen/ops/sparse_dim_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5741340Z copying torch/include/ATen/ops/index_reduce_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5749740Z copying torch/include/ATen/ops/_foobar_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5750570Z 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-08-14T20:48:00.5751290Z copying torch/include/ATen/ops/randn_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5755650Z copying torch/include/ATen/ops/logical_or_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5756980Z copying torch/include/ATen/ops/special_softmax_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5763730Z copying torch/include/ATen/ops/neg.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5765090Z copying torch/include/ATen/ops/igamma_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5771920Z copying torch/include/ATen/ops/mkldnn_linear_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5773140Z copying torch/include/ATen/ops/reflection_pad3d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5774310Z copying torch/include/ATen/ops/norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5780490Z copying torch/include/ATen/ops/trace_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5781390Z copying torch/include/ATen/ops/log_sigmoid.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5787740Z copying torch/include/ATen/ops/linalg_ldl_factor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5788770Z copying torch/include/ATen/ops/eq_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5789930Z copying torch/include/ATen/ops/put_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5795520Z copying torch/include/ATen/ops/hinge_embedding_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5797630Z copying torch/include/ATen/ops/cartesian_prod_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5803370Z copying torch/include/ATen/ops/softshrink_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5804240Z copying torch/include/ATen/ops/native_dropout_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5807140Z copying torch/include/ATen/ops/argmin_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5811860Z copying torch/include/ATen/ops/vstack_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5813070Z copying torch/include/ATen/ops/_ctc_loss_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5821790Z copying torch/include/ATen/ops/addcdiv_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5829600Z copying torch/include/ATen/ops/can_cast_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5830630Z copying torch/include/ATen/ops/_make_dual_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5831930Z copying torch/include/ATen/ops/_to_sparse_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5837570Z copying torch/include/ATen/ops/lstm_mps_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5838540Z copying torch/include/ATen/ops/topk_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.5839860Z copying torch/include/ATen/ops/_foreach_tan_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6047230Z copying torch/include/ATen/ops/expm1_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6063890Z copying torch/include/ATen/ops/_nested_get_values_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6064850Z copying torch/include/ATen/ops/_amp_update_scale_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6081250Z copying torch/include/ATen/ops/_masked_softmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6082210Z copying torch/include/ATen/ops/_foreach_lerp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6083460Z copying torch/include/ATen/ops/matmul_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6084760Z copying torch/include/ATen/ops/special_zeta_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6108510Z copying torch/include/ATen/ops/huber_loss_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6109580Z copying torch/include/ATen/ops/slow_conv_dilated2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6110770Z copying torch/include/ATen/ops/conv_transpose2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6112040Z copying torch/include/ATen/ops/avg_pool2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6113440Z copying torch/include/ATen/ops/convolution_overrideable_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6114650Z copying torch/include/ATen/ops/std_mean_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6116200Z copying torch/include/ATen/ops/signbit_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6117370Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6118810Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6119970Z copying torch/include/ATen/ops/logsumexp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6121280Z copying torch/include/ATen/ops/_foreach_neg_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6122690Z copying torch/include/ATen/ops/_embedding_bag_forward_only_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6124010Z copying torch/include/ATen/ops/_log_softmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6167250Z copying torch/include/ATen/ops/neg_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6168240Z copying torch/include/ATen/ops/take_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6169470Z copying torch/include/ATen/ops/_convert_weight_to_int4pack_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6171500Z copying torch/include/ATen/ops/i0_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6172450Z copying torch/include/ATen/ops/linalg_cholesky_ex_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6173800Z copying torch/include/ATen/ops/special_gammainc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6175170Z copying torch/include/ATen/ops/squeeze_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6176500Z copying torch/include/ATen/ops/_sparse_broadcast_to.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6211120Z copying torch/include/ATen/ops/hardtanh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6212250Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6229760Z 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-08-14T20:48:00.6230990Z copying torch/include/ATen/ops/leaky_relu_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6232130Z copying torch/include/ATen/ops/row_stack_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6233240Z copying torch/include/ATen/ops/_reshape_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6234620Z copying torch/include/ATen/ops/index_reduce_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6236020Z copying torch/include/ATen/ops/diagonal_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6237550Z copying torch/include/ATen/ops/dsplit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6238540Z copying torch/include/ATen/ops/gather_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6239870Z 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-08-14T20:48:00.6241340Z copying torch/include/ATen/ops/trace_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6242480Z copying torch/include/ATen/ops/_spdiags_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6243830Z copying torch/include/ATen/ops/_debug_has_internal_overlap_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6245010Z copying torch/include/ATen/ops/_assert_scalar_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6246520Z 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-08-14T20:48:00.6247540Z copying torch/include/ATen/ops/_unique.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6249070Z 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-08-14T20:48:00.6250350Z copying torch/include/ATen/ops/index_copy_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6251590Z copying torch/include/ATen/ops/silu_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6252820Z copying torch/include/ATen/ops/resize_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6254120Z copying torch/include/ATen/ops/range_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6255480Z copying torch/include/ATen/ops/max_pool1d_with_indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6256760Z copying torch/include/ATen/ops/replication_pad1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6257920Z copying torch/include/ATen/ops/int_repr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6259220Z copying torch/include/ATen/ops/upsample_linear1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6260590Z copying torch/include/ATen/ops/_foreach_addcmul_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6261830Z copying torch/include/ATen/ops/hardsigmoid_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6263050Z copying torch/include/ATen/ops/_lstm_mps_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6264220Z copying torch/include/ATen/ops/mul_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6265690Z copying torch/include/ATen/ops/replication_pad3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6267010Z 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-08-14T20:48:00.6268110Z copying torch/include/ATen/ops/cos_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6269400Z 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-08-14T20:48:00.6270580Z copying torch/include/ATen/ops/exp2_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6271950Z copying torch/include/ATen/ops/_test_serialization_subcmul_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6273240Z copying torch/include/ATen/ops/nll_loss2d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6274620Z copying torch/include/ATen/ops/coalesce_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6275890Z 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-08-14T20:48:00.6277130Z 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-08-14T20:48:00.6278400Z 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-08-14T20:48:00.6279750Z 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-08-14T20:48:00.6281000Z copying torch/include/ATen/ops/add_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6282270Z copying torch/include/ATen/ops/bitwise_xor_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6283600Z 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-08-14T20:48:00.6284820Z copying torch/include/ATen/ops/bmm_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6286320Z copying torch/include/ATen/ops/to_mkldnn_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6287450Z copying torch/include/ATen/ops/tanh_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6288630Z copying torch/include/ATen/ops/special_bessel_y0_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6290440Z copying torch/include/ATen/ops/row_indices_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6291280Z copying torch/include/ATen/ops/real_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6292560Z copying torch/include/ATen/ops/_amp_update_scale_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6293970Z 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-08-14T20:48:00.6295200Z copying torch/include/ATen/ops/max_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6296570Z copying torch/include/ATen/ops/_reshape_alias_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6297710Z copying torch/include/ATen/ops/col_indices_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6298970Z copying torch/include/ATen/ops/logcumsumexp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6300320Z 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-08-14T20:48:00.6301490Z copying torch/include/ATen/ops/fmod_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6302680Z copying torch/include/ATen/ops/_foreach_clamp_max_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6304160Z copying torch/include/ATen/ops/_linalg_eigh_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6305540Z copying torch/include/ATen/ops/adaptive_max_pool3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6306660Z copying torch/include/ATen/ops/_foreach_max_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6307960Z copying torch/include/ATen/ops/logcumsumexp_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6309410Z 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-08-14T20:48:00.6311230Z 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-08-14T20:48:00.6312270Z 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-08-14T20:48:00.6313500Z copying torch/include/ATen/ops/nll_loss_forward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6314790Z copying torch/include/ATen/ops/copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6316060Z copying torch/include/ATen/ops/adaptive_max_pool2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6317300Z copying torch/include/ATen/ops/linalg_lstsq_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6318560Z copying torch/include/ATen/ops/_foreach_abs_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6319860Z copying torch/include/ATen/ops/cudnn_convolution_add_relu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6321110Z copying torch/include/ATen/ops/linalg_solve_triangular_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6322300Z copying torch/include/ATen/ops/max_unpool2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6323560Z copying torch/include/ATen/ops/bitwise_xor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6324800Z copying torch/include/ATen/ops/feature_alpha_dropout_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6326280Z copying torch/include/ATen/ops/_empty_affine_quantized_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6327530Z copying torch/include/ATen/ops/upsample_nearest1d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6328830Z copying torch/include/ATen/ops/_standard_gamma.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6330140Z copying torch/include/ATen/ops/kaiser_window_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6331450Z copying torch/include/ATen/ops/_has_compatible_shallow_copy_type.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6332740Z copying torch/include/ATen/ops/batch_norm_update_stats_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6334050Z copying torch/include/ATen/ops/special_i1e_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6335460Z copying torch/include/ATen/ops/baddbmm_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6336450Z copying torch/include/ATen/ops/cummax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6337660Z copying torch/include/ATen/ops/_cdist_forward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6339060Z copying torch/include/ATen/ops/svd_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6340150Z copying torch/include/ATen/ops/norm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6341480Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_view.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6342640Z copying torch/include/ATen/ops/concat_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6343980Z copying torch/include/ATen/ops/uniform_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6350920Z copying torch/include/ATen/ops/gcd_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6351850Z copying torch/include/ATen/ops/avg_pool2d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6358560Z copying torch/include/ATen/ops/new_zeros_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6359550Z copying torch/include/ATen/ops/sigmoid_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6360900Z copying torch/include/ATen/ops/isposinf_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6366630Z copying torch/include/ATen/ops/_cast_Int_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6367610Z copying torch/include/ATen/ops/_unsafe_index_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6372560Z copying torch/include/ATen/ops/lerp_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6375050Z copying torch/include/ATen/ops/_foreach_add.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6376430Z copying torch/include/ATen/ops/unfold_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6381620Z copying torch/include/ATen/ops/max_pool1d_with_indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6383790Z copying torch/include/ATen/ops/alias_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6389300Z copying torch/include/ATen/ops/masked_fill.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6390200Z copying torch/include/ATen/ops/_log_softmax_backward_data.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6393080Z copying torch/include/ATen/ops/_sparse_log_softmax_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6398290Z copying torch/include/ATen/ops/_cufft_clear_plan_cache_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6406510Z copying torch/include/ATen/ops/unflatten_dense_tensors.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6407440Z copying torch/include/ATen/ops/new_ones_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6415080Z copying torch/include/ATen/ops/addcdiv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6416320Z 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-08-14T20:48:00.6417540Z copying torch/include/ATen/ops/_to_sparse_bsr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6422430Z copying torch/include/ATen/ops/_test_string_default_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6423470Z copying torch/include/ATen/ops/ravel_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6430360Z copying torch/include/ATen/ops/_foreach_addcdiv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6431580Z 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-08-14T20:48:00.6432770Z copying torch/include/ATen/ops/linalg_pinv_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6440530Z 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-08-14T20:48:00.6441550Z copying torch/include/ATen/ops/view_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6447850Z copying torch/include/ATen/ops/max_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6449290Z copying torch/include/ATen/ops/msort_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6456220Z copying torch/include/ATen/ops/q_per_channel_scales_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6457360Z copying torch/include/ATen/ops/binomial_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6458530Z copying torch/include/ATen/ops/random_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6463770Z copying torch/include/ATen/ops/scatter_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6464770Z 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-08-14T20:48:00.6468170Z copying torch/include/ATen/ops/linalg_cross_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6472650Z copying torch/include/ATen/ops/square_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6476700Z copying torch/include/ATen/ops/mkldnn_linear.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6481280Z copying torch/include/ATen/ops/index_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6485640Z 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-08-14T20:48:00.6486720Z copying torch/include/ATen/ops/float_power_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6491040Z copying torch/include/ATen/ops/lerp_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6494230Z copying torch/include/ATen/ops/mul_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6499050Z copying torch/include/ATen/ops/_foreach_addcdiv_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6500100Z 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-08-14T20:48:00.6503670Z copying torch/include/ATen/ops/softmax_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6507940Z copying torch/include/ATen/ops/_add_relu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6511670Z copying torch/include/ATen/ops/fft_ihfft2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6515750Z copying torch/include/ATen/ops/mul_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6516660Z copying torch/include/ATen/ops/sin_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6520690Z copying torch/include/ATen/ops/hardsigmoid_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6523680Z copying torch/include/ATen/ops/fmin_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6529080Z copying torch/include/ATen/ops/hardshrink_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6530030Z copying torch/include/ATen/ops/hsplit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6534040Z copying torch/include/ATen/ops/nll_loss_forward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6538730Z copying torch/include/ATen/ops/signbit_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6542160Z copying torch/include/ATen/ops/adaptive_max_pool3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6543120Z copying torch/include/ATen/ops/hardtanh_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6548120Z copying torch/include/ATen/ops/special_modified_bessel_i0_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6551290Z copying torch/include/ATen/ops/_mps_convolution_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6555610Z copying torch/include/ATen/ops/hash_tensor_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6556690Z copying torch/include/ATen/ops/repeat_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6559700Z copying torch/include/ATen/ops/_reshape_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6564140Z 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-08-14T20:48:00.6568210Z copying torch/include/ATen/ops/slice_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6571950Z copying torch/include/ATen/ops/less_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6572840Z copying torch/include/ATen/ops/one_hot_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6577200Z copying torch/include/ATen/ops/gcd_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6580830Z copying torch/include/ATen/ops/_fft_c2c_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6584510Z copying torch/include/ATen/ops/max_pool2d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6585750Z 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-08-14T20:48:00.6590140Z copying torch/include/ATen/ops/hsplit_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6594200Z copying torch/include/ATen/ops/_foreach_log1p.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6598500Z copying torch/include/ATen/ops/cauchy_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6601320Z copying torch/include/ATen/ops/rsqrt_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6602280Z copying torch/include/ATen/ops/_foreach_trunc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6608150Z copying torch/include/ATen/ops/trapz_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6609380Z copying torch/include/ATen/ops/expand_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6616500Z copying torch/include/ATen/ops/mps_convolution_transpose_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6617420Z copying torch/include/ATen/ops/linalg_matrix_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6624540Z copying torch/include/ATen/ops/mkldnn_linear_backward_weights.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6625500Z 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-08-14T20:48:00.6626710Z copying torch/include/ATen/ops/mul_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6632220Z copying torch/include/ATen/ops/miopen_batch_norm_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6633510Z copying torch/include/ATen/ops/divide_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6640020Z copying torch/include/ATen/ops/unfold_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6642320Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6643460Z copying torch/include/ATen/ops/linalg_svd_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6649660Z copying torch/include/ATen/ops/bitwise_and_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6650870Z copying torch/include/ATen/ops/div_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6657790Z copying torch/include/ATen/ops/linalg_eigvals_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6658920Z copying torch/include/ATen/ops/fft_fft2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6660120Z copying torch/include/ATen/ops/var_mean_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6666830Z copying torch/include/ATen/ops/normal_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6667590Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6673740Z copying torch/include/ATen/ops/max_pool2d_with_indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6675280Z copying torch/include/ATen/ops/adaptive_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6676550Z copying torch/include/ATen/ops/fft_ifft2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6678230Z copying torch/include/ATen/ops/argmax_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6688660Z copying torch/include/ATen/ops/_thnn_fused_gru_cell_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6690410Z copying torch/include/ATen/ops/adaptive_max_pool3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6694560Z copying torch/include/ATen/ops/logaddexp2_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6696940Z copying torch/include/ATen/ops/amax_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6698040Z copying torch/include/ATen/ops/native_dropout_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6700270Z copying torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6703800Z copying torch/include/ATen/ops/tril_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6706450Z copying torch/include/ATen/ops/_unsafe_view_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6710100Z copying torch/include/ATen/ops/_sparse_semi_structured_apply_dense.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6716330Z copying torch/include/ATen/ops/upsample_bilinear2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6717430Z copying torch/include/ATen/ops/_compute_linear_combination_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6724400Z copying torch/include/ATen/ops/log_sigmoid_forward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6725430Z copying torch/include/ATen/ops/masked_fill_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6726680Z copying torch/include/ATen/ops/polygamma_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6731200Z copying torch/include/ATen/ops/l1_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6733990Z copying torch/include/ATen/ops/trace_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6739670Z copying torch/include/ATen/ops/block_diag_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6740600Z copying torch/include/ATen/ops/values_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6743080Z copying torch/include/ATen/ops/sort.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6749140Z copying torch/include/ATen/ops/upsample_nearest2d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6750130Z copying torch/include/ATen/ops/mish_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6755780Z copying torch/include/ATen/ops/is_set_to.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6758270Z copying torch/include/ATen/ops/unflatten_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6764100Z copying torch/include/ATen/ops/_fused_adam_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6765400Z copying torch/include/ATen/ops/_dirichlet_grad_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6766630Z copying torch/include/ATen/ops/einsum_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6772920Z copying torch/include/ATen/ops/nan_to_num.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6773890Z copying torch/include/ATen/ops/q_zero_point_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6780650Z copying torch/include/ATen/ops/as_strided_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6781630Z copying torch/include/ATen/ops/t_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6788140Z copying torch/include/ATen/ops/logical_and_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6789120Z copying torch/include/ATen/ops/split_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6790460Z copying torch/include/ATen/ops/gru_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6796080Z copying torch/include/ATen/ops/_addmm_activation_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6797020Z copying torch/include/ATen/ops/lerp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6805030Z copying torch/include/ATen/ops/nansum_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6806100Z copying torch/include/ATen/ops/_linalg_slogdet_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6807320Z copying torch/include/ATen/ops/_fft_c2r_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6812840Z copying torch/include/ATen/ops/_foreach_addcmul_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6814590Z copying torch/include/ATen/ops/infinitely_differentiable_gelu_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6820310Z copying torch/include/ATen/ops/cosine_similarity_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6821280Z copying torch/include/ATen/ops/fix_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6823570Z copying torch/include/ATen/ops/_reshape_alias_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6829300Z copying torch/include/ATen/ops/flatten_dense_tensors_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6830390Z copying torch/include/ATen/ops/special_xlog1py_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6833160Z copying torch/include/ATen/ops/dstack_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6839210Z copying torch/include/ATen/ops/igamma_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6840940Z copying torch/include/ATen/ops/poisson_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6846450Z copying torch/include/ATen/ops/full_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6848930Z copying torch/include/ATen/ops/convolution_backward_overrideable_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6854270Z copying torch/include/ATen/ops/_conj_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6855310Z 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-08-14T20:48:00.6861920Z copying torch/include/ATen/ops/linalg_eig_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6863160Z copying torch/include/ATen/ops/_test_parallel_materialize_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6868970Z copying torch/include/ATen/ops/_cudnn_rnn_flatten_weight.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6870930Z copying torch/include/ATen/ops/soft_margin_loss_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6877140Z 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-08-14T20:48:00.6878120Z copying torch/include/ATen/ops/expm1_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6879510Z copying torch/include/ATen/ops/crow_indices_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6885400Z copying torch/include/ATen/ops/cummax_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6886350Z copying torch/include/ATen/ops/sinh_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6890310Z copying torch/include/ATen/ops/upsample_linear1d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6894880Z copying torch/include/ATen/ops/baddbmm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6898300Z copying torch/include/ATen/ops/native_batch_norm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6902390Z copying torch/include/ATen/ops/group_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6903460Z copying torch/include/ATen/ops/cumsum_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6908050Z copying torch/include/ATen/ops/_autocast_to_full_precision_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6909890Z copying torch/include/ATen/ops/exp_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6914460Z 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-08-14T20:48:00.6915690Z copying torch/include/ATen/ops/upsample_bilinear2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6919270Z copying torch/include/ATen/ops/upsample_nearest1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6924350Z copying torch/include/ATen/ops/avg_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6928040Z copying torch/include/ATen/ops/as_strided_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6932060Z 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-08-14T20:48:00.6932960Z 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-08-14T20:48:00.6937100Z copying torch/include/ATen/ops/bitwise_right_shift_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6940310Z copying torch/include/ATen/ops/clamp_max_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6945040Z 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-08-14T20:48:00.6945980Z copying torch/include/ATen/ops/_cslt_compress_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6952200Z copying torch/include/ATen/ops/arange.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6953480Z 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-08-14T20:48:00.6960300Z copying torch/include/ATen/ops/quantize_per_tensor_dynamic.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6961190Z copying torch/include/ATen/ops/hardshrink.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6962570Z copying torch/include/ATen/ops/_is_any_true_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6968820Z copying torch/include/ATen/ops/special_round_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6969870Z copying torch/include/ATen/ops/_reshape_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6976360Z copying torch/include/ATen/ops/_fft_r2c_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6977480Z copying torch/include/ATen/ops/index_fill.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6984200Z copying torch/include/ATen/ops/ceil_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6984890Z copying torch/include/ATen/ops/convolution_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6986230Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6992160Z copying torch/include/ATen/ops/linalg_diagonal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6992990Z copying torch/include/ATen/ops/nonzero_numpy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.6999590Z copying torch/include/ATen/ops/_index_put_impl_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7001040Z copying torch/include/ATen/ops/istft.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7007490Z copying torch/include/ATen/ops/_foreach_erfc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7008670Z copying torch/include/ATen/ops/logit_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7010000Z copying torch/include/ATen/ops/chain_matmul_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7014970Z copying torch/include/ATen/ops/_conj_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7015810Z copying torch/include/ATen/ops/softplus_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7022660Z copying torch/include/ATen/ops/_foreach_addcmul_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7030530Z copying torch/include/ATen/ops/slice_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7031580Z copying torch/include/ATen/ops/_compute_linear_combination.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7032810Z 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-08-14T20:48:00.7039520Z copying torch/include/ATen/ops/_nnz_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7040550Z copying torch/include/ATen/ops/cummaxmin_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7047010Z copying torch/include/ATen/ops/fft_rfft2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7047800Z copying torch/include/ATen/ops/_stack_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7055140Z 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-08-14T20:48:00.7056040Z copying torch/include/ATen/ops/cartesian_prod_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7057330Z copying torch/include/ATen/ops/_cudnn_attention_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7062950Z copying torch/include/ATen/ops/_test_optional_filled_intlist.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7064030Z copying torch/include/ATen/ops/huber_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7070890Z copying torch/include/ATen/ops/index_select_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7072070Z copying torch/include/ATen/ops/grid_sampler_3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7081110Z copying torch/include/ATen/ops/view_as_real_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7082190Z copying torch/include/ATen/ops/_foreach_sign_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7083330Z copying torch/include/ATen/ops/index_add_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7085040Z copying torch/include/ATen/ops/_to_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7088620Z copying torch/include/ATen/ops/max_unpool3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7089880Z copying torch/include/ATen/ops/_trilinear_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7091050Z copying torch/include/ATen/ops/native_batch_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7095310Z copying torch/include/ATen/ops/avg_pool2d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7097010Z copying torch/include/ATen/ops/_fw_primal_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7100310Z copying torch/include/ATen/ops/isnan_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7104190Z copying torch/include/ATen/ops/full_like_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7105650Z copying torch/include/ATen/ops/slice_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7112060Z copying torch/include/ATen/ops/fmax_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7113200Z copying torch/include/ATen/ops/randint_like.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7120670Z copying torch/include/ATen/ops/_neg_view_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7121730Z copying torch/include/ATen/ops/lshift_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7123070Z copying torch/include/ATen/ops/unfold_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7128670Z 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-08-14T20:48:00.7130390Z copying torch/include/ATen/ops/istft_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7136480Z copying torch/include/ATen/ops/_unique_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7138510Z copying torch/include/ATen/ops/fmin_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7139780Z copying torch/include/ATen/ops/constant_pad_nd_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7146200Z 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-08-14T20:48:00.7147060Z copying torch/include/ATen/ops/rsqrt_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7153970Z copying torch/include/ATen/ops/searchsorted_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7154990Z copying torch/include/ATen/ops/ones_like_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7156170Z copying torch/include/ATen/ops/erfc_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7162900Z copying torch/include/ATen/ops/tanh_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7163700Z copying torch/include/ATen/ops/_cdist_forward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7169770Z copying torch/include/ATen/ops/_softmax_backward_data.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7170840Z copying torch/include/ATen/ops/_foreach_log10_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7172000Z copying torch/include/ATen/ops/_to_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7178970Z copying torch/include/ATen/ops/sinh_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7187070Z copying torch/include/ATen/ops/special_expm1_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7187950Z copying torch/include/ATen/ops/_sparse_compressed_tensor_unsafe.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7195030Z copying torch/include/ATen/ops/unsafe_split_with_sizes_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7196050Z copying torch/include/ATen/ops/geometric_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7197440Z 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-08-14T20:48:00.7203220Z copying torch/include/ATen/ops/erf_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7204360Z copying torch/include/ATen/ops/align_as_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7211250Z copying torch/include/ATen/ops/zero.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7212170Z copying torch/include/ATen/ops/xlogy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7213470Z copying torch/include/ATen/ops/upsample_nearest3d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7219050Z copying torch/include/ATen/ops/mT.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7220090Z copying torch/include/ATen/ops/uniform_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7226560Z copying torch/include/ATen/ops/embedding_dense_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7227360Z copying torch/include/ATen/ops/orgqr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7236010Z 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-08-14T20:48:00.7236990Z copying torch/include/ATen/ops/cumprod_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7243740Z copying torch/include/ATen/ops/range_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7244950Z 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-08-14T20:48:00.7251420Z copying torch/include/ATen/ops/_adaptive_avg_pool3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7252410Z copying torch/include/ATen/ops/_masked_softmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7253650Z copying torch/include/ATen/ops/linalg_ldl_solve.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7259060Z 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-08-14T20:48:00.7260060Z 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-08-14T20:48:00.7266950Z copying torch/include/ATen/ops/slice_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7267790Z copying torch/include/ATen/ops/random_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7275370Z copying torch/include/ATen/ops/_sparse_semi_structured_addmm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7276360Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7277810Z copying torch/include/ATen/ops/_shape_as_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7284310Z copying torch/include/ATen/ops/linalg_solve_triangular_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7285090Z copying torch/include/ATen/ops/floor_divide_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7291870Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7292910Z copying torch/include/ATen/ops/_linalg_det_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7294120Z copying torch/include/ATen/ops/sin_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7300410Z copying torch/include/ATen/ops/can_cast.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7301280Z copying torch/include/ATen/ops/cumsum_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7308410Z copying torch/include/ATen/ops/atanh_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7309350Z 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-08-14T20:48:00.7310470Z copying torch/include/ATen/ops/kl_div_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7316260Z 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-08-14T20:48:00.7317120Z copying torch/include/ATen/ops/clip_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7323580Z copying torch/include/ATen/ops/special_airy_ai_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7324710Z copying torch/include/ATen/ops/linalg_vector_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7326010Z copying torch/include/ATen/ops/embedding_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7332540Z copying torch/include/ATen/ops/igamma_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7333410Z copying torch/include/ATen/ops/sparse_bsc_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7340490Z copying torch/include/ATen/ops/special_i0e_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7341850Z copying torch/include/ATen/ops/is_floating_point.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7348310Z copying torch/include/ATen/ops/fft_fft2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7349260Z copying torch/include/ATen/ops/xlogy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7350730Z 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-08-14T20:48:00.7356250Z copying torch/include/ATen/ops/ceil_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7357330Z copying torch/include/ATen/ops/avg_pool3d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7364080Z copying torch/include/ATen/ops/masked_scatter_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7364890Z copying torch/include/ATen/ops/ge_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7366260Z copying torch/include/ATen/ops/_test_check_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7372310Z copying torch/include/ATen/ops/resize_as_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7373190Z copying torch/include/ATen/ops/squeeze.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7380410Z copying torch/include/ATen/ops/_to_sparse_bsc_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7382440Z copying torch/include/ATen/ops/linalg_pinv_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7389090Z copying torch/include/ATen/ops/log_softmax_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7389960Z copying torch/include/ATen/ops/permute_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7391210Z copying torch/include/ATen/ops/is_distributed_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7396490Z copying torch/include/ATen/ops/_histogramdd_bin_edges.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7397480Z copying torch/include/ATen/ops/max_unpool2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7398780Z copying torch/include/ATen/ops/relu6_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7405840Z copying torch/include/ATen/ops/sigmoid_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7406950Z 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-08-14T20:48:00.7413660Z copying torch/include/ATen/ops/fft_fft2_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7414630Z copying torch/include/ATen/ops/fft_hfft2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7421110Z copying torch/include/ATen/ops/rad2deg_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7422480Z 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-08-14T20:48:00.7423840Z copying torch/include/ATen/ops/leaky_relu_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7429150Z copying torch/include/ATen/ops/copysign_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7430230Z copying torch/include/ATen/ops/upsample_nearest2d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7441180Z copying torch/include/ATen/ops/silu_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7441620Z copying torch/include/ATen/ops/linalg_solve.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7441940Z copying torch/include/ATen/ops/special_zeta_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7444740Z copying torch/include/ATen/ops/quantized_rnn_tanh_cell.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7453070Z copying torch/include/ATen/ops/dropout_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7461590Z 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-08-14T20:48:00.7472040Z copying torch/include/ATen/ops/_foreach_sigmoid_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7472960Z copying torch/include/ATen/ops/lshift.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7475590Z copying torch/include/ATen/ops/outer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7479320Z copying torch/include/ATen/ops/bilinear_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7480170Z copying torch/include/ATen/ops/rms_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7481470Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7484780Z copying torch/include/ATen/ops/instance_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7487630Z copying torch/include/ATen/ops/upsample_bilinear2d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7493020Z copying torch/include/ATen/ops/fractional_max_pool2d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7493960Z copying torch/include/ATen/ops/adaptive_max_pool2d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7497170Z copying torch/include/ATen/ops/new_zeros_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7501980Z copying torch/include/ATen/ops/_foreach_asin_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7503180Z copying torch/include/ATen/ops/stft_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7510570Z copying torch/include/ATen/ops/linalg_lu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7511290Z 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-08-14T20:48:00.7518600Z copying torch/include/ATen/ops/_make_dep_token_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7519680Z copying torch/include/ATen/ops/sigmoid_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7526130Z copying torch/include/ATen/ops/_linalg_det.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7527580Z copying torch/include/ATen/ops/cholesky_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7534330Z 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-08-14T20:48:00.7535180Z copying torch/include/ATen/ops/asin_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7536480Z copying torch/include/ATen/ops/from_file_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7541520Z copying torch/include/ATen/ops/_sparse_softmax_backward_data_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7542840Z copying torch/include/ATen/ops/_test_serialization_subcmul_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7549160Z 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-08-14T20:48:00.7550570Z copying torch/include/ATen/ops/_assert_async_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7557560Z copying torch/include/ATen/ops/nansum_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7558560Z copying torch/include/ATen/ops/native_dropout_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7559850Z copying torch/include/ATen/ops/add_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7565620Z copying torch/include/ATen/ops/linalg_householder_product_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7566540Z copying torch/include/ATen/ops/argmax_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7573350Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7574430Z copying torch/include/ATen/ops/norm_except_dim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7581270Z copying torch/include/ATen/ops/fft_irfft2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7582210Z copying torch/include/ATen/ops/_make_dual_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7583500Z copying torch/include/ATen/ops/unique_consecutive_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7589600Z copying torch/include/ATen/ops/linalg_solve_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7590530Z copying torch/include/ATen/ops/concatenate_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7597740Z copying torch/include/ATen/ops/log1p_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7598660Z copying torch/include/ATen/ops/view_as_complex_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7599960Z copying torch/include/ATen/ops/repeat_interleave_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7605190Z copying torch/include/ATen/ops/is_complex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7607220Z copying torch/include/ATen/ops/softplus_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7614430Z copying torch/include/ATen/ops/var_mean_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7615420Z copying torch/include/ATen/ops/_weight_int4pack_mm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7616940Z copying torch/include/ATen/ops/_version.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7622370Z copying torch/include/ATen/ops/grid_sampler_2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7628010Z copying torch/include/ATen/ops/_fused_adamw_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7632840Z copying torch/include/ATen/ops/softplus_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7634800Z copying torch/include/ATen/ops/_reshape_alias_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7636030Z copying torch/include/ATen/ops/scatter_add_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7641660Z copying torch/include/ATen/ops/tril_indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7642980Z copying torch/include/ATen/ops/isneginf_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7648730Z copying torch/include/ATen/ops/clip_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7649670Z copying torch/include/ATen/ops/matmul_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7653300Z copying torch/include/ATen/ops/linalg_solve_ex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7657480Z copying torch/include/ATen/ops/special_bessel_y0_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7658440Z copying torch/include/ATen/ops/_mkldnn_transpose_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7663280Z copying torch/include/ATen/ops/special_ndtri_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7669160Z copying torch/include/ATen/ops/tensor_split_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7670890Z copying torch/include/ATen/ops/align_to_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7679080Z 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-08-14T20:48:00.7680040Z copying torch/include/ATen/ops/convolution_backward_overrideable.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7686930Z 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-08-14T20:48:00.7687680Z copying torch/include/ATen/ops/geometric.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7694690Z copying torch/include/ATen/ops/randn_like_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7695590Z 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-08-14T20:48:00.7696780Z copying torch/include/ATen/ops/i0_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7701940Z copying torch/include/ATen/ops/hardshrink_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7703030Z copying torch/include/ATen/ops/requires_grad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7709930Z copying torch/include/ATen/ops/elu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7710830Z copying torch/include/ATen/ops/threshold_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7716920Z copying torch/include/ATen/ops/special_entr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7718290Z copying torch/include/ATen/ops/heaviside_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7719680Z copying torch/include/ATen/ops/_coalesce_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7723610Z copying torch/include/ATen/ops/bitwise_xor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7731600Z copying torch/include/ATen/ops/special_xlogy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7733890Z copying torch/include/ATen/ops/acos_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7739040Z copying torch/include/ATen/ops/cumprod_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7740210Z copying torch/include/ATen/ops/upsample_bicubic2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7742790Z copying torch/include/ATen/ops/lgamma_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7749040Z copying torch/include/ATen/ops/_amp_update_scale_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7751050Z copying torch/include/ATen/ops/expm1_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7756670Z 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-08-14T20:48:00.7757770Z 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-08-14T20:48:00.7759100Z 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-08-14T20:48:00.7765510Z copying torch/include/ATen/ops/_index_put_impl_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7766410Z copying torch/include/ATen/ops/unfold_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7772660Z copying torch/include/ATen/ops/reflection_pad3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7773860Z copying torch/include/ATen/ops/fbgemm_linear_fp16_weight.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7780460Z copying torch/include/ATen/ops/addbmm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7781490Z copying torch/include/ATen/ops/matrix_power_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7782720Z copying torch/include/ATen/ops/upsample_nearest1d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7789570Z copying torch/include/ATen/ops/matmul_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7797040Z copying torch/include/ATen/ops/max_pool3d_with_indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7798190Z copying torch/include/ATen/ops/_lstm_mps_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7804770Z copying torch/include/ATen/ops/_softmax_backward_data_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7805980Z 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-08-14T20:48:00.7807180Z copying torch/include/ATen/ops/mps_convolution_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7812700Z copying torch/include/ATen/ops/detach_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7813510Z copying torch/include/ATen/ops/_coalesce_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7820920Z copying torch/include/ATen/ops/special_exp2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7821710Z copying torch/include/ATen/ops/special_erfcx_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7828610Z copying torch/include/ATen/ops/min_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7829810Z 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-08-14T20:48:00.7831060Z copying torch/include/ATen/ops/logit_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7836860Z copying torch/include/ATen/ops/scalar_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7838010Z copying torch/include/ATen/ops/quantize_per_tensor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7845060Z copying torch/include/ATen/ops/_cholesky_solve_helper_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7846010Z copying torch/include/ATen/ops/rnn_relu_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7847350Z copying torch/include/ATen/ops/_test_functorch_fallback_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7852630Z copying torch/include/ATen/ops/special_legendre_polynomial_p_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7853740Z copying torch/include/ATen/ops/mps_convolution_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7860420Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7861370Z copying torch/include/ATen/ops/_softmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7862600Z copying torch/include/ATen/ops/_foreach_reciprocal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7869700Z copying torch/include/ATen/ops/softplus_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7871490Z copying torch/include/ATen/ops/is_inference_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7874370Z copying torch/include/ATen/ops/any_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7875420Z copying torch/include/ATen/ops/digamma_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7879870Z copying torch/include/ATen/ops/abs_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7881290Z 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-08-14T20:48:00.7882460Z copying torch/include/ATen/ops/elu_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7889210Z copying torch/include/ATen/ops/mH_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7890220Z 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-08-14T20:48:00.7896800Z copying torch/include/ATen/ops/linalg_cross.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7898480Z copying torch/include/ATen/ops/inner.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7904580Z copying torch/include/ATen/ops/nanmedian_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7905560Z copying torch/include/ATen/ops/fractional_max_pool2d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7906890Z copying torch/include/ATen/ops/kthvalue_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7912460Z copying torch/include/ATen/ops/conj.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7913570Z copying torch/include/ATen/ops/native_group_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7920890Z copying torch/include/ATen/ops/mkldnn_linear_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7921780Z copying torch/include/ATen/ops/select_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7926900Z copying torch/include/ATen/ops/special_log_softmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7929540Z copying torch/include/ATen/ops/reshape_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7935130Z copying torch/include/ATen/ops/addcmul_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7936200Z copying torch/include/ATen/ops/atan_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7943530Z copying torch/include/ATen/ops/_test_serialization_subcmul_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7944380Z copying torch/include/ATen/ops/_scaled_mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7951780Z 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-08-14T20:48:00.7952470Z copying torch/include/ATen/ops/neg_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7953840Z copying torch/include/ATen/ops/_weight_int4pack_mm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7958730Z copying torch/include/ATen/ops/addmm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7961150Z copying torch/include/ATen/ops/hardshrink_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7966380Z copying torch/include/ATen/ops/_cudnn_attention_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7967830Z copying torch/include/ATen/ops/softmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7969690Z copying torch/include/ATen/ops/silu_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7975620Z copying torch/include/ATen/ops/copy_sparse_to_sparse_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7983240Z copying torch/include/ATen/ops/mse_loss_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7984550Z copying torch/include/ATen/ops/index_add_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7991000Z copying torch/include/ATen/ops/vander_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7992370Z copying torch/include/ATen/ops/quantize_per_tensor_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7993730Z copying torch/include/ATen/ops/cumprod_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.7999050Z copying torch/include/ATen/ops/_upsample_nearest_exact3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8000210Z copying torch/include/ATen/ops/upsample_bilinear2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8006850Z copying torch/include/ATen/ops/matrix_H_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8007950Z copying torch/include/ATen/ops/_resize_output.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8015150Z 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-08-14T20:48:00.8016140Z 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-08-14T20:48:00.8017260Z copying torch/include/ATen/ops/linalg_cond.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8022860Z copying torch/include/ATen/ops/special_polygamma.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8023810Z copying torch/include/ATen/ops/smooth_l1_loss_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8030830Z copying torch/include/ATen/ops/replication_pad2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8031940Z copying torch/include/ATen/ops/nll_loss_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8033150Z copying torch/include/ATen/ops/hardswish_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8039100Z copying torch/include/ATen/ops/_addmm_activation_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8039880Z copying torch/include/ATen/ops/smm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8047070Z copying torch/include/ATen/ops/native_batch_norm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8048140Z copying torch/include/ATen/ops/_addmm_activation.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8055010Z copying torch/include/ATen/ops/ormqr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8056080Z copying torch/include/ATen/ops/_cudnn_rnn_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8057390Z copying torch/include/ATen/ops/floor_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8062940Z copying torch/include/ATen/ops/sin.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8063950Z copying torch/include/ATen/ops/_spdiags_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8072130Z copying torch/include/ATen/ops/float_power_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8073140Z copying torch/include/ATen/ops/imag_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8074460Z 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-08-14T20:48:00.8079450Z copying torch/include/ATen/ops/_foreach_pow_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8081270Z copying torch/include/ATen/ops/sinh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8086820Z copying torch/include/ATen/ops/_validate_sparse_coo_tensor_args.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8088720Z copying torch/include/ATen/ops/special_log_ndtr_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8090110Z copying torch/include/ATen/ops/crow_indices_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8096200Z copying torch/include/ATen/ops/fft_ifftn_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8097240Z 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-08-14T20:48:00.8098390Z copying torch/include/ATen/ops/sum_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8106020Z copying torch/include/ATen/ops/exp2_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8107130Z 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-08-14T20:48:00.8113750Z copying torch/include/ATen/ops/_assert_scalar_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8115080Z 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-08-14T20:48:00.8121690Z copying torch/include/ATen/ops/view_as_complex_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8122630Z copying torch/include/ATen/ops/_log_softmax_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8124250Z copying torch/include/ATen/ops/sigmoid_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8129470Z 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-08-14T20:48:00.8135810Z copying torch/include/ATen/ops/uniform_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8138380Z copying torch/include/ATen/ops/empty_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8139630Z 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-08-14T20:48:00.8144970Z copying torch/include/ATen/ops/is_neg_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8146240Z copying torch/include/ATen/ops/special_i1e_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8153150Z copying torch/include/ATen/ops/floor_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8154170Z copying torch/include/ATen/ops/fbgemm_linear_int8_weight_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8160690Z copying torch/include/ATen/ops/prelu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8161840Z copying torch/include/ATen/ops/take_along_dim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8163090Z copying torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8168500Z copying torch/include/ATen/ops/glu_backward_jvp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8169650Z copying torch/include/ATen/ops/xlogy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8177670Z copying torch/include/ATen/ops/_unsafe_index_put_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8178560Z copying torch/include/ATen/ops/softshrink_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8183870Z 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-08-14T20:48:00.8184780Z copying torch/include/ATen/ops/_cudnn_rnn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8186480Z copying torch/include/ATen/ops/replication_pad1d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8192090Z copying torch/include/ATen/ops/_histogramdd_from_bin_tensors.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8192860Z copying torch/include/ATen/ops/_linalg_det_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8199650Z copying torch/include/ATen/ops/sort_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8200490Z copying torch/include/ATen/ops/max_unpool3d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8206850Z copying torch/include/ATen/ops/_cdist_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8208050Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8209800Z copying torch/include/ATen/ops/reflection_pad3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8215760Z 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-08-14T20:48:00.8216610Z copying torch/include/ATen/ops/select_scatter_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8223520Z copying torch/include/ATen/ops/_cdist_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8225100Z copying torch/include/ATen/ops/multi_margin_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8231540Z copying torch/include/ATen/ops/_foreach_add_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8232360Z copying torch/include/ATen/ops/group_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8233760Z copying torch/include/ATen/ops/special_erfcx_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8239460Z copying torch/include/ATen/ops/_foreach_minimum_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8240470Z copying torch/include/ATen/ops/randint_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8247070Z copying torch/include/ATen/ops/leaky_relu_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8248020Z copying torch/include/ATen/ops/_standard_gamma_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8249230Z copying torch/include/ATen/ops/_coalesced.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8255790Z copying torch/include/ATen/ops/sgn_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8256880Z copying torch/include/ATen/ops/_nested_get_ragged_idx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8263510Z copying torch/include/ATen/ops/segment_reduce_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8264520Z copying torch/include/ATen/ops/conv2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8271670Z copying torch/include/ATen/ops/special_logsumexp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8272570Z copying torch/include/ATen/ops/linalg_eigvalsh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8274010Z copying torch/include/ATen/ops/upsample_nearest2d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8279290Z copying torch/include/ATen/ops/log_sigmoid_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8280160Z copying torch/include/ATen/ops/dsplit_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8287380Z 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-08-14T20:48:00.8288430Z 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-08-14T20:48:00.8289740Z copying torch/include/ATen/ops/igammac.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8295160Z copying torch/include/ATen/ops/_efficientzerotensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8296530Z copying torch/include/ATen/ops/arange_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8303420Z 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-08-14T20:48:00.8304730Z copying torch/include/ATen/ops/clamp_min_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8306260Z 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-08-14T20:48:00.8313400Z 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-08-14T20:48:00.8314230Z copying torch/include/ATen/ops/celu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8321680Z 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-08-14T20:48:00.8322740Z copying torch/include/ATen/ops/mkldnn_rnn_layer_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8329220Z 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-08-14T20:48:00.8330240Z copying torch/include/ATen/ops/_foreach_addcdiv_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8331480Z 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-08-14T20:48:00.8336720Z copying torch/include/ATen/ops/clamp_max_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8337690Z copying torch/include/ATen/ops/_chunk_cat_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8342930Z copying torch/include/ATen/ops/adaptive_max_pool3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8345320Z copying torch/include/ATen/ops/fmin_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8346210Z copying torch/include/ATen/ops/upsample_nearest2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8351460Z copying torch/include/ATen/ops/fft_ifftshift_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8359540Z copying torch/include/ATen/ops/unsqueeze_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8360600Z copying torch/include/ATen/ops/_embedding_bag_sparse_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8367060Z copying torch/include/ATen/ops/softplus_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8368120Z copying torch/include/ATen/ops/_euclidean_dist_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8375120Z copying torch/include/ATen/ops/index_fill_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8376270Z copying torch/include/ATen/ops/quantized_max_pool3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8377540Z copying torch/include/ATen/ops/logaddexp_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8383150Z copying torch/include/ATen/ops/arange_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8384170Z copying torch/include/ATen/ops/_nnpack_spatial_convolution.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8391200Z copying torch/include/ATen/ops/bitwise_not_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8392500Z copying torch/include/ATen/ops/conv_depthwise3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8393970Z copying torch/include/ATen/ops/logsumexp_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8398560Z copying torch/include/ATen/ops/convolution_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8400020Z 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-08-14T20:48:00.8406640Z copying torch/include/ATen/ops/_sparse_semi_structured_apply_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8407790Z copying torch/include/ATen/ops/_batch_norm_impl_index_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8409360Z copying torch/include/ATen/ops/rrelu_with_noise_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8416280Z 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-08-14T20:48:00.8417230Z copying torch/include/ATen/ops/_foreach_sub_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8424060Z copying torch/include/ATen/ops/sub_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8424930Z copying torch/include/ATen/ops/_to_sparse_semi_structured_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8432430Z copying torch/include/ATen/ops/unbind_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8433610Z copying torch/include/ATen/ops/minimum_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8434760Z copying torch/include/ATen/ops/signbit_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8439760Z copying torch/include/ATen/ops/gelu_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8440780Z copying torch/include/ATen/ops/is_neg_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8448490Z copying torch/include/ATen/ops/numpy_T_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8449650Z copying torch/include/ATen/ops/unfold_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8450860Z copying torch/include/ATen/ops/to_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8455870Z copying torch/include/ATen/ops/upsample_trilinear3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8457340Z copying torch/include/ATen/ops/replication_pad2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8464280Z copying torch/include/ATen/ops/is_floating_point_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8467000Z copying torch/include/ATen/ops/scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8471750Z copying torch/include/ATen/ops/avg_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8472660Z copying torch/include/ATen/ops/_nested_tensor_strides.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8476920Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8481420Z 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-08-14T20:48:00.8485580Z copying torch/include/ATen/ops/all_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8488320Z copying torch/include/ATen/ops/tanh_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8489610Z copying torch/include/ATen/ops/adaptive_avg_pool1d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8494760Z copying torch/include/ATen/ops/slow_conv_transpose3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8496560Z copying torch/include/ATen/ops/linalg_vector_norm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8502600Z copying torch/include/ATen/ops/masked_select_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8503440Z copying torch/include/ATen/ops/_flash_attention_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8506660Z copying torch/include/ATen/ops/logit_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8511840Z copying torch/include/ATen/ops/to_dense_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8514630Z copying torch/include/ATen/ops/chunk_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8519190Z copying torch/include/ATen/ops/_foobar_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8520110Z copying torch/include/ATen/ops/atan2_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8524300Z copying torch/include/ATen/ops/nextafter_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8528020Z copying torch/include/ATen/ops/amin.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8531760Z copying torch/include/ATen/ops/pixel_shuffle_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8533340Z copying torch/include/ATen/ops/_cudnn_init_dropout_state_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8537480Z copying torch/include/ATen/ops/_sparse_csr_prod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8540210Z copying torch/include/ATen/ops/_cholesky_solve_helper_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8545610Z copying torch/include/ATen/ops/frexp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8546930Z copying torch/include/ATen/ops/alias_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8549420Z copying torch/include/ATen/ops/bitwise_or_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8555960Z copying torch/include/ATen/ops/gru_cell.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8557050Z copying torch/include/ATen/ops/isclose_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8560310Z copying torch/include/ATen/ops/batch_norm_gather_stats_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8568650Z copying torch/include/ATen/ops/gather_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8572610Z copying torch/include/ATen/ops/mkldnn_linear_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8573610Z copying torch/include/ATen/ops/grid_sampler_3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8578080Z copying torch/include/ATen/ops/diagonal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8579890Z copying torch/include/ATen/ops/sspaddmm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8585520Z copying torch/include/ATen/ops/_reshape_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8586540Z copying torch/include/ATen/ops/_test_string_default_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8589770Z copying torch/include/ATen/ops/_logcumsumexp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8594080Z copying torch/include/ATen/ops/_softmax_backward_data_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8595500Z 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-08-14T20:48:00.8601240Z copying torch/include/ATen/ops/_unique_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8603020Z copying torch/include/ATen/ops/_sobol_engine_draw.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8609760Z copying torch/include/ATen/ops/is_vulkan_available_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8610610Z copying torch/include/ATen/ops/feature_dropout_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8616690Z copying torch/include/ATen/ops/diagflat_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8618030Z copying torch/include/ATen/ops/_values.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8619620Z 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-08-14T20:48:00.8626220Z copying torch/include/ATen/ops/index_add_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8627080Z copying torch/include/ATen/ops/glu_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8634440Z copying torch/include/ATen/ops/_wrapped_linear_prepack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8635450Z copying torch/include/ATen/ops/special_chebyshev_polynomial_w_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8636800Z copying torch/include/ATen/ops/combinations_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8642010Z copying torch/include/ATen/ops/_assert_scalar_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8643200Z copying torch/include/ATen/ops/_test_check_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8649840Z copying torch/include/ATen/ops/lt_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8651000Z copying torch/include/ATen/ops/swapdims_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8657770Z copying torch/include/ATen/ops/view_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8658760Z 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-08-14T20:48:00.8660200Z 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-08-14T20:48:00.8666400Z copying torch/include/ATen/ops/isreal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8667440Z copying torch/include/ATen/ops/addcmul_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8673830Z copying torch/include/ATen/ops/less_equal_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8674950Z copying torch/include/ATen/ops/cumulative_trapezoid_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8681900Z copying torch/include/ATen/ops/arctan.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8682830Z 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-08-14T20:48:00.8684140Z copying torch/include/ATen/ops/_sparse_sum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8689850Z 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-08-14T20:48:00.8690690Z copying torch/include/ATen/ops/sinh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8697260Z copying torch/include/ATen/ops/reflection_pad1d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8698230Z copying torch/include/ATen/ops/arctanh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8699430Z copying torch/include/ATen/ops/col2im.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8705320Z copying torch/include/ATen/ops/batch_norm_stats_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8706550Z copying torch/include/ATen/ops/kl_div_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8712330Z copying torch/include/ATen/ops/_histogramdd_bin_edges_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8715250Z copying torch/include/ATen/ops/special_chebyshev_polynomial_t.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8720110Z copying torch/include/ATen/ops/upsample_linear1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8721470Z copying torch/include/ATen/ops/_cudnn_rnn_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8723150Z copying torch/include/ATen/ops/_sparse_semi_structured_mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8728870Z copying torch/include/ATen/ops/_foreach_log1p_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8729900Z copying torch/include/ATen/ops/histc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8733160Z copying torch/include/ATen/ops/unique_dim_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8739290Z copying torch/include/ATen/ops/gru_cell_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8740210Z copying torch/include/ATen/ops/_indices_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8747440Z copying torch/include/ATen/ops/_coalesce_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8748280Z copying torch/include/ATen/ops/index_select_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8755730Z copying torch/include/ATen/ops/floor_divide_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8756660Z copying torch/include/ATen/ops/_prelu_kernel_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8757970Z copying torch/include/ATen/ops/geometric_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8763480Z copying torch/include/ATen/ops/logit_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8764480Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8768670Z copying torch/include/ATen/ops/mH.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8772160Z copying torch/include/ATen/ops/count_nonzero_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8773280Z copying torch/include/ATen/ops/fmax_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8777950Z copying torch/include/ATen/ops/_nested_view_from_buffer_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8780840Z copying torch/include/ATen/ops/avg_pool3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8785260Z copying torch/include/ATen/ops/_to_sparse_bsc_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8786340Z copying torch/include/ATen/ops/trace_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8793850Z copying torch/include/ATen/ops/_weight_norm_interface_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8798780Z copying torch/include/ATen/ops/addbmm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8801020Z copying torch/include/ATen/ops/empty_strided_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8801990Z copying torch/include/ATen/ops/mv_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8808750Z copying torch/include/ATen/ops/_nested_from_padded_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8809590Z copying torch/include/ATen/ops/tensor_split.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8816060Z copying torch/include/ATen/ops/adaptive_avg_pool3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8817250Z copying torch/include/ATen/ops/var_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8823660Z copying torch/include/ATen/ops/slice_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8824790Z copying torch/include/ATen/ops/feature_alpha_dropout_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8826030Z copying torch/include/ATen/ops/softshrink.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8831700Z copying torch/include/ATen/ops/bitwise_left_shift_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8832520Z copying torch/include/ATen/ops/lgamma.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8840010Z 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-08-14T20:48:00.8841220Z copying torch/include/ATen/ops/upsample_bicubic2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8847580Z copying torch/include/ATen/ops/polar_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8848840Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8850050Z copying torch/include/ATen/ops/mean_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8856320Z 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-08-14T20:48:00.8857730Z copying torch/include/ATen/ops/_adaptive_avg_pool2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8862610Z copying torch/include/ATen/ops/pow.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8864850Z copying torch/include/ATen/ops/_foreach_zero_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8866270Z copying torch/include/ATen/ops/lt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8872550Z copying torch/include/ATen/ops/_foreach_cosh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8873670Z 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-08-14T20:48:00.8874940Z copying torch/include/ATen/ops/repeat_interleave_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8881300Z copying torch/include/ATen/ops/gelu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8882120Z copying torch/include/ATen/ops/adaptive_max_pool1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8883390Z copying torch/include/ATen/ops/_foreach_ceil_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8889240Z copying torch/include/ATen/ops/logical_not.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8890470Z copying torch/include/ATen/ops/min_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8897600Z copying torch/include/ATen/ops/multiply_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8898620Z copying torch/include/ATen/ops/max_pool1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8904910Z copying torch/include/ATen/ops/clamp_max_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8905990Z copying torch/include/ATen/ops/cross_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8907230Z copying torch/include/ATen/ops/_foreach_lerp_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8913570Z copying torch/include/ATen/ops/outer_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8914740Z copying torch/include/ATen/ops/unbind_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8921990Z copying torch/include/ATen/ops/frac_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8922930Z 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-08-14T20:48:00.8924190Z copying torch/include/ATen/ops/arcsin_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8930010Z copying torch/include/ATen/ops/select_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8931110Z copying torch/include/ATen/ops/slice_inverse.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8932480Z copying torch/include/ATen/ops/slice_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8938820Z copying torch/include/ATen/ops/ravel_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8939670Z copying torch/include/ATen/ops/_nested_select_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8946270Z copying torch/include/ATen/ops/_cast_Float_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8947430Z copying torch/include/ATen/ops/floor_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8954600Z copying torch/include/ATen/ops/and_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8955750Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8957030Z copying torch/include/ATen/ops/as_strided_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8962500Z copying torch/include/ATen/ops/renorm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8963960Z 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-08-14T20:48:00.8970610Z copying torch/include/ATen/ops/_sparse_mm_reduce_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8971510Z copying torch/include/ATen/ops/bernoulli_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8972790Z copying torch/include/ATen/ops/cumsum_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8978600Z copying torch/include/ATen/ops/from_file_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8979460Z copying torch/include/ATen/ops/layer_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8985930Z copying torch/include/ATen/ops/all_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8987220Z copying torch/include/ATen/ops/gelu_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8993010Z copying torch/include/ATen/ops/diagonal_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8994210Z copying torch/include/ATen/ops/fft_ifftn_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.8995740Z copying torch/include/ATen/ops/one_hot_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9002800Z copying torch/include/ATen/ops/miopen_batch_norm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9009630Z copying torch/include/ATen/ops/allclose_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9010910Z copying torch/include/ATen/ops/special_bessel_j0.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9017620Z copying torch/include/ATen/ops/tensordot_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9018750Z copying torch/include/ATen/ops/_foreach_tanh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9019960Z copying torch/include/ATen/ops/linalg_ldl_factor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9025900Z copying torch/include/ATen/ops/thnn_conv2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9027010Z copying torch/include/ATen/ops/_reshape_alias_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9034450Z 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-08-14T20:48:00.9035250Z copying torch/include/ATen/ops/_embedding_bag_forward_only_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9041620Z copying torch/include/ATen/ops/_lu_with_info.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9042790Z copying torch/include/ATen/ops/bincount_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9044290Z copying torch/include/ATen/ops/_conj_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9049240Z 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-08-14T20:48:00.9050630Z copying torch/include/ATen/ops/mm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9057070Z copying torch/include/ATen/ops/digamma_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9057900Z copying torch/include/ATen/ops/positive_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9059150Z copying torch/include/ATen/ops/log10_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9064920Z copying torch/include/ATen/ops/remainder_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9065740Z copying torch/include/ATen/ops/bitwise_not_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9072130Z copying torch/include/ATen/ops/_euclidean_dist.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9074640Z copying torch/include/ATen/ops/_linalg_slogdet_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9080150Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9080980Z copying torch/include/ATen/ops/_sparse_addmm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9082490Z copying torch/include/ATen/ops/logical_xor_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9088710Z copying torch/include/ATen/ops/conv_tbc_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9089750Z copying torch/include/ATen/ops/_foreach_addcdiv_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9096740Z copying torch/include/ATen/ops/resize_as_sparse.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9097510Z copying torch/include/ATen/ops/col2im_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9104800Z copying torch/include/ATen/ops/clamp_max_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9105930Z copying torch/include/ATen/ops/einsum_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9107170Z copying torch/include/ATen/ops/align_tensors.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9113380Z copying torch/include/ATen/ops/_sobol_engine_scramble_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9114720Z copying torch/include/ATen/ops/mode_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9120990Z copying torch/include/ATen/ops/_local_scalar_dense_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9122280Z copying torch/include/ATen/ops/rnn_tanh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9123650Z copying torch/include/ATen/ops/_compute_linear_combination_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9129050Z copying torch/include/ATen/ops/is_set_to_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9129950Z copying torch/include/ATen/ops/linalg_householder_product_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9136600Z copying torch/include/ATen/ops/orgqr_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9138110Z copying torch/include/ATen/ops/imag_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9144800Z copying torch/include/ATen/ops/quantized_rnn_relu_cell_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9146040Z 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-08-14T20:48:00.9147280Z copying torch/include/ATen/ops/reflection_pad3d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9153120Z 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-08-14T20:48:00.9153980Z copying torch/include/ATen/ops/_cast_Byte_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9160750Z copying torch/include/ATen/ops/dstack_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9162010Z copying torch/include/ATen/ops/cudnn_convolution_transpose_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9163130Z copying torch/include/ATen/ops/sign.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9169340Z copying torch/include/ATen/ops/triu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9170280Z copying torch/include/ATen/ops/is_distributed.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9177080Z copying torch/include/ATen/ops/_sparse_softmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9178400Z copying torch/include/ATen/ops/unflatten.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9185030Z copying torch/include/ATen/ops/_segment_reduce_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9185690Z copying torch/include/ATen/ops/_validate_sparse_bsc_tensor_args.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9186040Z 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-08-14T20:48:00.9192020Z copying torch/include/ATen/ops/fft_irfftn_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9195130Z copying torch/include/ATen/ops/dense_dim_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9198930Z copying torch/include/ATen/ops/special_log1p_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9200270Z copying torch/include/ATen/ops/_foreach_clamp_max_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9203180Z copying torch/include/ATen/ops/gelu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9207280Z copying torch/include/ATen/ops/_nested_get_offsets_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9208210Z copying torch/include/ATen/ops/mm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9216290Z copying torch/include/ATen/ops/gru_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9223700Z copying torch/include/ATen/ops/log2_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9224540Z copying torch/include/ATen/ops/_fused_adam_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9231880Z copying torch/include/ATen/ops/one_hot_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9233080Z copying torch/include/ATen/ops/cudnn_affine_grid_generator_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9234320Z copying torch/include/ATen/ops/as_strided_scatter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9238940Z copying torch/include/ATen/ops/_foreach_erfc_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9241890Z 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-08-14T20:48:00.9243310Z copying torch/include/ATen/ops/linalg_lu_solve_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9248170Z copying torch/include/ATen/ops/new_zeros_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9249760Z 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-08-14T20:48:00.9256110Z copying torch/include/ATen/ops/indices_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9257320Z copying torch/include/ATen/ops/_fused_rms_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9263870Z copying torch/include/ATen/ops/_saturate_weight_to_fp16_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9264990Z copying torch/include/ATen/ops/tan_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9271660Z copying torch/include/ATen/ops/lu_solve.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9272830Z copying torch/include/ATen/ops/quantized_batch_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9274040Z copying torch/include/ATen/ops/sgn_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9280050Z copying torch/include/ATen/ops/resolve_neg_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9281610Z copying torch/include/ATen/ops/_test_functorch_fallback_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9288480Z copying torch/include/ATen/ops/_fw_primal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9289660Z 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-08-14T20:48:00.9290770Z copying torch/include/ATen/ops/scatter_reduce_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9296550Z copying torch/include/ATen/ops/fft_irfftn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9297330Z copying torch/include/ATen/ops/addmm_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9304510Z copying torch/include/ATen/ops/embedding_sparse_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9305280Z copying torch/include/ATen/ops/blackman_window_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9306410Z 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-08-14T20:48:00.9312950Z copying torch/include/ATen/ops/_foreach_zero_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9314100Z copying torch/include/ATen/ops/quantize_per_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9320090Z copying torch/include/ATen/ops/transpose.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9321350Z copying torch/include/ATen/ops/_fused_sgd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9322880Z copying torch/include/ATen/ops/amin_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9330000Z copying torch/include/ATen/ops/acosh_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9330910Z copying torch/include/ATen/ops/_foreach_rsqrt_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9337520Z copying torch/include/ATen/ops/sum_to_size_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9338410Z copying torch/include/ATen/ops/var_mean_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9339710Z copying torch/include/ATen/ops/histc_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9345420Z copying torch/include/ATen/ops/align_tensors_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9346300Z copying torch/include/ATen/ops/diagonal_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9353070Z copying torch/include/ATen/ops/sym_size_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9354680Z 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-08-14T20:48:00.9361570Z copying torch/include/ATen/ops/tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9362400Z copying torch/include/ATen/ops/quantile_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9363780Z copying torch/include/ATen/ops/lift_fresh_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9369070Z copying torch/include/ATen/ops/ge_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9369920Z copying torch/include/ATen/ops/triangular_solve_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9376750Z 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-08-14T20:48:00.9377870Z copying torch/include/ATen/ops/hash_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9384010Z copying torch/include/ATen/ops/_slow_conv2d_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9384920Z copying torch/include/ATen/ops/amax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9386240Z 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-08-14T20:48:00.9392270Z 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-08-14T20:48:00.9393150Z copying torch/include/ATen/ops/fft_ifftn_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9399810Z copying torch/include/ATen/ops/log_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9401340Z copying torch/include/ATen/ops/pow_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9407470Z copying torch/include/ATen/ops/_histogramdd_bin_edges_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9408480Z copying torch/include/ATen/ops/q_scale.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9409780Z copying torch/include/ATen/ops/linalg_matmul_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9416080Z copying torch/include/ATen/ops/scalar_tensor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9417170Z copying torch/include/ATen/ops/rot90_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9421590Z copying torch/include/ATen/ops/linalg_eig.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9429090Z copying torch/include/ATen/ops/conj_physical_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9430100Z copying torch/include/ATen/ops/pixel_unshuffle_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9435410Z 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-08-14T20:48:00.9436980Z copying torch/include/ATen/ops/channel_shuffle_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9443030Z copying torch/include/ATen/ops/stride_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9443890Z copying torch/include/ATen/ops/cudnn_is_acceptable.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9445050Z copying torch/include/ATen/ops/special_zeta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9452430Z copying torch/include/ATen/ops/avg_pool2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9453400Z copying torch/include/ATen/ops/renorm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9460850Z 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-08-14T20:48:00.9462180Z copying torch/include/ATen/ops/is_coalesced_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9468390Z copying torch/include/ATen/ops/affine_grid_generator_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9469370Z copying torch/include/ATen/ops/_nested_view_from_buffer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9470540Z copying torch/include/ATen/ops/true_divide_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9475870Z copying torch/include/ATen/ops/_linalg_solve_ex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9477360Z copying torch/include/ATen/ops/squeeze_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9484140Z copying torch/include/ATen/ops/histogram_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9485380Z copying torch/include/ATen/ops/linalg_lu_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9486940Z 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-08-14T20:48:00.9492330Z copying torch/include/ATen/ops/flipud_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9493670Z copying torch/include/ATen/ops/poisson_nll_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9500090Z copying torch/include/ATen/ops/unique_dim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9501140Z copying torch/include/ATen/ops/rshift_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9502640Z 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-08-14T20:48:00.9509390Z copying torch/include/ATen/ops/unsafe_split_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9510610Z 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-08-14T20:48:00.9517310Z copying torch/include/ATen/ops/dense_dim_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9518860Z copying torch/include/ATen/ops/bitwise_right_shift_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9525630Z copying torch/include/ATen/ops/masked_fill_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9526560Z copying torch/include/ATen/ops/masked_fill_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9527760Z copying torch/include/ATen/ops/_use_cudnn_ctc_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9534080Z 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-08-14T20:48:00.9534790Z copying torch/include/ATen/ops/_cast_Byte_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9541020Z copying torch/include/ATen/ops/logit_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9541920Z copying torch/include/ATen/ops/any.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9543420Z copying torch/include/ATen/ops/kthvalue_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9548830Z copying torch/include/ATen/ops/convolution_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9550340Z copying torch/include/ATen/ops/unique_consecutive_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9556180Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9557650Z copying torch/include/ATen/ops/sort_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9558940Z copying torch/include/ATen/ops/_reshape_alias_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9565880Z copying torch/include/ATen/ops/_upsample_nearest_exact2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9566870Z copying torch/include/ATen/ops/nll_loss_forward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9574100Z copying torch/include/ATen/ops/_foreach_lgamma_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9574870Z copying torch/include/ATen/ops/linalg_vector_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9581830Z copying torch/include/ATen/ops/linalg_cross_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9582920Z copying torch/include/ATen/ops/contiguous_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9584120Z copying torch/include/ATen/ops/le_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9589360Z copying torch/include/ATen/ops/convolution_overrideable_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9590750Z copying torch/include/ATen/ops/hardtanh_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9597030Z copying torch/include/ATen/ops/elu_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9597950Z copying torch/include/ATen/ops/_sparse_mm_reduce_impl_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9599140Z copying torch/include/ATen/ops/elu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9605710Z copying torch/include/ATen/ops/angle_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9606780Z copying torch/include/ATen/ops/cross_entropy_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9613820Z copying torch/include/ATen/ops/special_gammaincc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9614620Z copying torch/include/ATen/ops/subtract_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9621880Z copying torch/include/ATen/ops/diagonal_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9622980Z copying torch/include/ATen/ops/poisson_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9624250Z copying torch/include/ATen/ops/floor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9629700Z copying torch/include/ATen/ops/retains_grad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9631160Z copying torch/include/ATen/ops/sspaddmm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9634670Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9638240Z copying torch/include/ATen/ops/index_reduce_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9643380Z copying torch/include/ATen/ops/_cummax_helper_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9647020Z copying torch/include/ATen/ops/scatter_add_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9651220Z copying torch/include/ATen/ops/_copy_from.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9652240Z copying torch/include/ATen/ops/narrow_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9656090Z copying torch/include/ATen/ops/flip_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9660930Z copying torch/include/ATen/ops/result_type_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9664650Z copying torch/include/ATen/ops/logical_not_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9668300Z copying torch/include/ATen/ops/_scaled_grouped_mm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9669370Z copying torch/include/ATen/ops/select_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9674140Z copying torch/include/ATen/ops/mse_loss_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9677140Z copying torch/include/ATen/ops/fractional_max_pool3d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9681670Z copying torch/include/ATen/ops/mkldnn_linear_backward_input.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9682910Z copying torch/include/ATen/ops/special_logsumexp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9685810Z copying torch/include/ATen/ops/adaptive_avg_pool1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9690650Z copying torch/include/ATen/ops/linalg_svd_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9695400Z 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-08-14T20:48:00.9698290Z copying torch/include/ATen/ops/bitwise_or_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9699310Z copying torch/include/ATen/ops/l1_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9704600Z copying torch/include/ATen/ops/geqrf_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9705920Z copying torch/include/ATen/ops/log2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9712430Z copying torch/include/ATen/ops/isposinf_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9713400Z copying torch/include/ATen/ops/_masked_scale_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9719740Z copying torch/include/ATen/ops/special_laguerre_polynomial_l_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9721110Z copying torch/include/ATen/ops/reciprocal_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9727660Z copying torch/include/ATen/ops/lcm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9728740Z copying torch/include/ATen/ops/frexp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9730080Z copying torch/include/ATen/ops/linalg_ldl_solve_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9736260Z copying torch/include/ATen/ops/hardshrink_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9737100Z copying torch/include/ATen/ops/view_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9743150Z copying torch/include/ATen/ops/special_xlog1py_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9744520Z copying torch/include/ATen/ops/exp2_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9750760Z copying torch/include/ATen/ops/mean_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9752060Z copying torch/include/ATen/ops/values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9753190Z copying torch/include/ATen/ops/le_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9758820Z copying torch/include/ATen/ops/conv3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9760010Z copying torch/include/ATen/ops/stack_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9766680Z copying torch/include/ATen/ops/linalg_svdvals_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9768230Z copying torch/include/ATen/ops/special_erfinv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9774500Z copying torch/include/ATen/ops/var_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9775380Z copying torch/include/ATen/ops/rsqrt_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9776760Z copying torch/include/ATen/ops/_convolution_double_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9782050Z copying torch/include/ATen/ops/polar.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9783040Z copying torch/include/ATen/ops/_softmax_backward_data_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9789790Z copying torch/include/ATen/ops/_make_dual_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9791580Z copying torch/include/ATen/ops/trunc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9797450Z copying torch/include/ATen/ops/meshgrid_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9798600Z copying torch/include/ATen/ops/slow_conv_transpose2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9799940Z copying torch/include/ATen/ops/_sample_dirichlet_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9805420Z copying torch/include/ATen/ops/silu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9813760Z copying torch/include/ATen/ops/special_log_softmax_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9814770Z copying torch/include/ATen/ops/zeros_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9822180Z copying torch/include/ATen/ops/special_logit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9822870Z copying torch/include/ATen/ops/affine_grid_generator_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9823960Z copying torch/include/ATen/ops/full_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9829910Z copying torch/include/ATen/ops/lgamma_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9831020Z copying torch/include/ATen/ops/isneginf_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9837470Z 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-08-14T20:48:00.9839470Z copying torch/include/ATen/ops/linalg_inv_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9841400Z copying torch/include/ATen/ops/mkldnn_reorder_conv2d_weight.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9845530Z copying torch/include/ATen/ops/index_put_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9846540Z copying torch/include/ATen/ops/data_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9850470Z copying torch/include/ATen/ops/_prelu_kernel_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9855660Z copying torch/include/ATen/ops/special_exp2_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9858800Z 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-08-14T20:48:00.9865390Z copying torch/include/ATen/ops/div_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9867240Z copying torch/include/ATen/ops/logaddexp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9873480Z 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-08-14T20:48:00.9874420Z copying torch/include/ATen/ops/permute_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9875690Z copying torch/include/ATen/ops/dense_dim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9882400Z copying torch/include/ATen/ops/xor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9883820Z copying torch/include/ATen/ops/max_unpool2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9890440Z copying torch/include/ATen/ops/linalg_inv_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9891710Z copying torch/include/ATen/ops/_sparse_sparse_matmul.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9897730Z copying torch/include/ATen/ops/huber_loss_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9899080Z 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-08-14T20:48:00.9900180Z copying torch/include/ATen/ops/ge.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9906370Z copying torch/include/ATen/ops/_foreach_clamp_min.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9907450Z copying torch/include/ATen/ops/index_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9914090Z copying torch/include/ATen/ops/tanh_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9915030Z copying torch/include/ATen/ops/cos_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9916350Z copying torch/include/ATen/ops/grid_sampler_3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9922410Z copying torch/include/ATen/ops/split.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9923740Z copying torch/include/ATen/ops/div.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9930110Z copying torch/include/ATen/ops/msort_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9931470Z copying torch/include/ATen/ops/refine_names_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9932710Z copying torch/include/ATen/ops/t_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9939920Z copying torch/include/ATen/ops/isneginf_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9941160Z 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-08-14T20:48:00.9947850Z copying torch/include/ATen/ops/slow_conv3d_forward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9948820Z copying torch/include/ATen/ops/_sparse_semi_structured_addmm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9955540Z copying torch/include/ATen/ops/_sparse_mask_projection_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9956720Z copying torch/include/ATen/ops/complex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9958160Z copying torch/include/ATen/ops/masked_scatter_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9964080Z copying torch/include/ATen/ops/copy_sparse_to_sparse.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9965170Z copying torch/include/ATen/ops/bmm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9972020Z copying torch/include/ATen/ops/_foreach_log_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9973130Z copying torch/include/ATen/ops/_foreach_max_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9974570Z copying torch/include/ATen/ops/logaddexp2_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9980090Z copying torch/include/ATen/ops/replication_pad3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9981370Z copying torch/include/ATen/ops/softplus_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9988060Z copying torch/include/ATen/ops/log_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9988900Z copying torch/include/ATen/ops/trapz_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9990150Z copying torch/include/ATen/ops/replication_pad1d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9995600Z copying torch/include/ATen/ops/unique_dim_consecutive_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:00.9996590Z copying torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0003090Z copying torch/include/ATen/ops/arcsin_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0004200Z copying torch/include/ATen/ops/batch_norm_update_stats.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0012280Z copying torch/include/ATen/ops/exp2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0013440Z copying torch/include/ATen/ops/cosine_embedding_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0014550Z copying torch/include/ATen/ops/_sparse_sparse_matmul_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0019640Z copying torch/include/ATen/ops/fractional_max_pool2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0021240Z copying torch/include/ATen/ops/sspaddmm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0027600Z copying torch/include/ATen/ops/col_indices_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0028510Z copying torch/include/ATen/ops/lgamma_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0029920Z copying torch/include/ATen/ops/unique_dim_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0035350Z copying torch/include/ATen/ops/pin_memory_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0036420Z copying torch/include/ATen/ops/_foreach_addcdiv_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0043710Z copying torch/include/ATen/ops/linalg_lu_factor_ex_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0044780Z copying torch/include/ATen/ops/special_bessel_j1_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0050300Z copying torch/include/ATen/ops/div_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0054020Z copying torch/include/ATen/ops/_copy_from_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0055500Z copying torch/include/ATen/ops/_neg_view_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0059220Z copying torch/include/ATen/ops/concat_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0060450Z 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-08-14T20:48:01.0062310Z copying torch/include/ATen/ops/histogramdd_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0067560Z copying torch/include/ATen/ops/_native_batch_norm_legit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0068970Z copying torch/include/ATen/ops/_foreach_rsqrt_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0075970Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0077000Z 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-08-14T20:48:01.0084190Z copying torch/include/ATen/ops/igamma_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0085170Z copying torch/include/ATen/ops/_nested_get_offsets_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0091990Z copying torch/include/ATen/ops/bitwise_not_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0093030Z copying torch/include/ATen/ops/_standard_gamma_grad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0094150Z copying torch/include/ATen/ops/zero_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0099650Z copying torch/include/ATen/ops/_nested_tensor_storage_offsets_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0106890Z 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-08-14T20:48:01.0107570Z copying torch/include/ATen/ops/reflection_pad2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0108700Z copying torch/include/ATen/ops/_foreach_clamp_max_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0109860Z copying torch/include/ATen/ops/pixel_unshuffle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0114880Z 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-08-14T20:48:01.0115930Z copying torch/include/ATen/ops/diagonal_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0122410Z copying torch/include/ATen/ops/logcumsumexp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0124340Z copying torch/include/ATen/ops/leaky_relu_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0130450Z copying torch/include/ATen/ops/isin_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0131680Z copying torch/include/ATen/ops/to_mkldnn_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0132860Z copying torch/include/ATen/ops/upsample_nearest1d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0139180Z copying torch/include/ATen/ops/miopen_depthwise_convolution_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0139950Z 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-08-14T20:48:01.0146470Z copying torch/include/ATen/ops/linalg_matrix_exp_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0147470Z copying torch/include/ATen/ops/_is_any_true_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0154150Z copying torch/include/ATen/ops/linalg_tensorinv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0155130Z copying torch/include/ATen/ops/random.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0156850Z copying torch/include/ATen/ops/upsample_trilinear3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0162380Z copying torch/include/ATen/ops/exponential.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0163640Z copying torch/include/ATen/ops/gt_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0170240Z copying torch/include/ATen/ops/linalg_det_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0171550Z copying torch/include/ATen/ops/masked_select_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0172810Z copying torch/include/ATen/ops/xlogy_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0179620Z copying torch/include/ATen/ops/upsample_linear1d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0180750Z copying torch/include/ATen/ops/cudnn_convolution_transpose_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0187350Z copying torch/include/ATen/ops/linalg_lu_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0188460Z copying torch/include/ATen/ops/expand_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0195390Z copying torch/include/ATen/ops/_foreach_sqrt_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0196390Z copying torch/include/ATen/ops/atleast_1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0197740Z copying torch/include/ATen/ops/isin_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0203690Z 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-08-14T20:48:01.0204710Z copying torch/include/ATen/ops/_to_sparse_csr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0211520Z copying torch/include/ATen/ops/sinc_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0212290Z copying torch/include/ATen/ops/dist_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0213620Z copying torch/include/ATen/ops/norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0219630Z copying torch/include/ATen/ops/hardtanh_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0220510Z 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-08-14T20:48:01.0227880Z copying torch/include/ATen/ops/copysign_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0228760Z 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-08-14T20:48:01.0235300Z copying torch/include/ATen/ops/upsample_trilinear3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0236490Z copying torch/include/ATen/ops/_cummin_helper_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0243320Z copying torch/include/ATen/ops/_reshape_alias_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0244450Z 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-08-14T20:48:01.0252160Z copying torch/include/ATen/ops/histogramdd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0252980Z copying torch/include/ATen/ops/aminmax_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0254250Z copying torch/include/ATen/ops/index_reduce_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0260130Z copying torch/include/ATen/ops/_nested_get_ragged_idx_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0261120Z copying torch/include/ATen/ops/leaky_relu_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0267840Z copying torch/include/ATen/ops/lshift_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0268880Z copying torch/include/ATen/ops/fft_irfft_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0270240Z copying torch/include/ATen/ops/digamma_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0276150Z copying torch/include/ATen/ops/grid_sampler_3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0283720Z 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-08-14T20:48:01.0285530Z copying torch/include/ATen/ops/_sparse_addmm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0291280Z copying torch/include/ATen/ops/gather_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0292350Z copying torch/include/ATen/ops/_has_same_storage_numel_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0293440Z copying torch/include/ATen/ops/_dimI.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0299680Z copying torch/include/ATen/ops/exponential_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0300700Z copying torch/include/ATen/ops/_weight_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0307240Z copying torch/include/ATen/ops/lu_unpack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0308880Z 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-08-14T20:48:01.0314750Z copying torch/include/ATen/ops/_foreach_ceil.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0315850Z copying torch/include/ATen/ops/_convert_weight_to_int4pack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0317260Z copying torch/include/ATen/ops/bmm_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0322900Z copying torch/include/ATen/ops/matmul_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0324540Z copying torch/include/ATen/ops/_print_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0331140Z copying torch/include/ATen/ops/to_dense_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0332130Z copying torch/include/ATen/ops/linalg_ldl_solve_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0333240Z copying torch/include/ATen/ops/nanmedian_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0339320Z copying torch/include/ATen/ops/quantize_per_channel_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0340390Z copying torch/include/ATen/ops/_neg_view_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0347350Z copying torch/include/ATen/ops/replication_pad3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0348360Z copying torch/include/ATen/ops/ctc_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0349530Z copying torch/include/ATen/ops/argwhere.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0355400Z copying torch/include/ATen/ops/_foreach_tan.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0356640Z copying torch/include/ATen/ops/asin_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0363270Z copying torch/include/ATen/ops/index_add_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0364420Z copying torch/include/ATen/ops/avg_pool2d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0365750Z copying torch/include/ATen/ops/bitwise_or.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0372920Z copying torch/include/ATen/ops/_conj_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0374000Z copying torch/include/ATen/ops/embedding_renorm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0380260Z copying torch/include/ATen/ops/diff_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0381060Z copying torch/include/ATen/ops/fix.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0388840Z copying torch/include/ATen/ops/_standard_gamma_grad_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0389790Z copying torch/include/ATen/ops/special_expit_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0390970Z copying torch/include/ATen/ops/rsub.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0396520Z copying torch/include/ATen/ops/cos_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0397650Z 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-08-14T20:48:01.0404290Z copying torch/include/ATen/ops/_fft_c2c_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0406070Z copying torch/include/ATen/ops/std.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0407630Z copying torch/include/ATen/ops/_is_all_true_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0412480Z 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-08-14T20:48:01.0413420Z copying torch/include/ATen/ops/broadcast_tensors_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0420140Z copying torch/include/ATen/ops/polygamma_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0421480Z copying torch/include/ATen/ops/index_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0427800Z copying torch/include/ATen/ops/_efficientzerotensor_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0428620Z copying torch/include/ATen/ops/_test_optional_floatlist.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0429870Z copying torch/include/ATen/ops/to_mkldnn_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0435510Z copying torch/include/ATen/ops/_embedding_bag_forward_only.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0436350Z copying torch/include/ATen/ops/index_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0443370Z copying torch/include/ATen/ops/aminmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0444350Z copying torch/include/ATen/ops/_log_softmax_backward_data_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0454110Z 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-08-14T20:48:01.0455080Z copying torch/include/ATen/ops/tril_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0456470Z copying torch/include/ATen/ops/_conj_physical_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0459330Z copying torch/include/ATen/ops/threshold_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0461260Z copying torch/include/ATen/ops/fmod_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0462510Z copying torch/include/ATen/ops/randint_like_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0463830Z copying torch/include/ATen/ops/linalg_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0469590Z copying torch/include/ATen/ops/fmin_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0470390Z 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-08-14T20:48:01.0476910Z copying torch/include/ATen/ops/_dirichlet_grad_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0485560Z copying torch/include/ATen/ops/special_expm1.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0486490Z copying torch/include/ATen/ops/special_erfinv_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0493210Z copying torch/include/ATen/ops/linalg_ldl_solve_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0495140Z copying torch/include/ATen/ops/linalg_qr_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0501120Z copying torch/include/ATen/ops/pad_sequence.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0502080Z copying torch/include/ATen/ops/hardswish.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0503950Z copying torch/include/ATen/ops/geqrf_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0508640Z copying torch/include/ATen/ops/reflection_pad3d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0509540Z copying torch/include/ATen/ops/grid_sampler_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0516260Z copying torch/include/ATen/ops/logit_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0517630Z copying torch/include/ATen/ops/ones_like.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0524540Z copying torch/include/ATen/ops/_test_optional_filled_intlist_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0525530Z copying torch/include/ATen/ops/split_with_sizes_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0526930Z copying torch/include/ATen/ops/_test_warn_in_autograd_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0532070Z copying torch/include/ATen/ops/neg_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0533090Z copying torch/include/ATen/ops/isfinite.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0540810Z copying torch/include/ATen/ops/_coalesced_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0541770Z copying torch/include/ATen/ops/q_per_channel_axis_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0548860Z copying torch/include/ATen/ops/_to_sparse_csc_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0549970Z copying torch/include/ATen/ops/_batch_norm_no_update.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0551390Z copying torch/include/ATen/ops/hardsigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0557070Z copying torch/include/ATen/ops/deg2rad_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0558870Z copying torch/include/ATen/ops/special_bessel_j1_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0564900Z copying torch/include/ATen/ops/upsample_nearest3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0565850Z 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-08-14T20:48:01.0567000Z copying torch/include/ATen/ops/sparse_coo_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0573100Z copying torch/include/ATen/ops/_is_zerotensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0574070Z copying torch/include/ATen/ops/xlogy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0576210Z copying torch/include/ATen/ops/is_conj_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0582360Z copying torch/include/ATen/ops/log10_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0584170Z copying torch/include/ATen/ops/_standard_gamma_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0589720Z copying torch/include/ATen/ops/conv2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0590720Z copying torch/include/ATen/ops/dequantize_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0592680Z copying torch/include/ATen/ops/nll_loss2d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0598090Z copying torch/include/ATen/ops/special_round_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0599160Z copying torch/include/ATen/ops/_pin_memory.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0606730Z copying torch/include/ATen/ops/fliplr_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0607600Z copying torch/include/ATen/ops/gcd_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0614240Z copying torch/include/ATen/ops/_convolution_mode_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0615220Z copying torch/include/ATen/ops/convolution_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0616630Z copying torch/include/ATen/ops/cosine_similarity_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0621930Z copying torch/include/ATen/ops/_shape_as_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0623140Z copying torch/include/ATen/ops/inner_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0629660Z copying torch/include/ATen/ops/isposinf_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0630690Z copying torch/include/ATen/ops/conv_transpose3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0632120Z copying torch/include/ATen/ops/_nested_tensor_from_mask_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0639590Z copying torch/include/ATen/ops/reflection_pad3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0640560Z copying torch/include/ATen/ops/unflatten_dense_tensors_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0646870Z copying torch/include/ATen/ops/_version_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0648220Z copying torch/include/ATen/ops/_pdist_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0655810Z copying torch/include/ATen/ops/sum_to_size_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0656770Z copying torch/include/ATen/ops/empty_like_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0657960Z copying torch/include/ATen/ops/uniform.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0662920Z copying torch/include/ATen/ops/grid_sampler_3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0664280Z copying torch/include/ATen/ops/masked_scatter_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0670900Z copying torch/include/ATen/ops/rshift_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0671870Z copying torch/include/ATen/ops/cumprod_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0673280Z copying torch/include/ATen/ops/adaptive_max_pool2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0678510Z copying torch/include/ATen/ops/mse_loss_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0679630Z copying torch/include/ATen/ops/diagonal_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0684650Z copying torch/include/ATen/ops/_nested_tensor_from_tensor_list.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0688660Z copying torch/include/ATen/ops/avg_pool2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0692750Z copying torch/include/ATen/ops/count_nonzero_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0697860Z copying torch/include/ATen/ops/sparse_coo_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0702110Z copying torch/include/ATen/ops/slow_conv_transpose3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0705770Z copying torch/include/ATen/ops/bmm_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0706690Z copying torch/include/ATen/ops/detach_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0711830Z copying torch/include/ATen/ops/set.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0714720Z copying torch/include/ATen/ops/upsample_bilinear2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0719670Z copying torch/include/ATen/ops/feature_dropout_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0720720Z 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-08-14T20:48:01.0723340Z copying torch/include/ATen/ops/silu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0728170Z copying torch/include/ATen/ops/native_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0729060Z copying torch/include/ATen/ops/_fused_sgd_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0736090Z copying torch/include/ATen/ops/_add_relu_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0737260Z copying torch/include/ATen/ops/acos_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0743680Z copying torch/include/ATen/ops/replication_pad2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0744740Z copying torch/include/ATen/ops/randperm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0746150Z copying torch/include/ATen/ops/special_ndtri_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0753120Z copying torch/include/ATen/ops/det.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0754260Z copying torch/include/ATen/ops/diagflat_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0760270Z copying torch/include/ATen/ops/exp_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0761530Z copying torch/include/ATen/ops/special_modified_bessel_k0_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0768380Z copying torch/include/ATen/ops/_fft_c2r_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0769290Z copying torch/include/ATen/ops/_add_batch_dim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0770760Z 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-08-14T20:48:01.0776010Z copying torch/include/ATen/ops/threshold_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0777050Z copying torch/include/ATen/ops/_foreach_tanh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0779090Z copying torch/include/ATen/ops/linalg_vander.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0785690Z copying torch/include/ATen/ops/sigmoid_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0786610Z copying torch/include/ATen/ops/mish_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0793530Z copying torch/include/ATen/ops/_sparse_mm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0794610Z copying torch/include/ATen/ops/_has_same_storage_numel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0801290Z copying torch/include/ATen/ops/embedding_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0802450Z 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-08-14T20:48:01.0803680Z copying torch/include/ATen/ops/_cast_Double_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0808290Z copying torch/include/ATen/ops/nll_loss_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0809410Z copying torch/include/ATen/ops/_softmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0816270Z copying torch/include/ATen/ops/diagonal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0817010Z copying torch/include/ATen/ops/new_full_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0823730Z copying torch/include/ATen/ops/isposinf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0824790Z copying torch/include/ATen/ops/new_empty_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0825930Z copying torch/include/ATen/ops/_weight_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0831750Z copying torch/include/ATen/ops/triu_indices_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0832880Z copying torch/include/ATen/ops/upsample_nearest1d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0839440Z copying torch/include/ATen/ops/special_round.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0840500Z copying torch/include/ATen/ops/cumprod_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0848480Z copying torch/include/ATen/ops/_has_same_storage_numel_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0849360Z copying torch/include/ATen/ops/quantile_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0852240Z copying torch/include/ATen/ops/_slow_conv2d_forward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0855340Z copying torch/include/ATen/ops/index_select_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0857600Z copying torch/include/ATen/ops/_dyn_quant_matmul_4bit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0858850Z copying torch/include/ATen/ops/pad_sequence_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0860210Z copying torch/include/ATen/ops/upsample_nearest1d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0864430Z 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-08-14T20:48:01.0866740Z copying torch/include/ATen/ops/elu_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0868740Z copying torch/include/ATen/ops/glu_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0874190Z 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-08-14T20:48:01.0881300Z 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-08-14T20:48:01.0882410Z copying torch/include/ATen/ops/_fw_primal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0887890Z copying torch/include/ATen/ops/sym_size.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0889730Z copying torch/include/ATen/ops/_scaled_dot_product_attention_math.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0895970Z copying torch/include/ATen/ops/_validate_sparse_bsr_tensor_args.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0896920Z copying torch/include/ATen/ops/hardsigmoid_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0901100Z copying torch/include/ATen/ops/reflection_pad3d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0908700Z copying torch/include/ATen/ops/batch_norm_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0909570Z copying torch/include/ATen/ops/row_indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0914590Z copying torch/include/ATen/ops/batch_norm_backward_elemt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0916770Z copying torch/include/ATen/ops/slow_conv3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0922270Z copying torch/include/ATen/ops/_foobar_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0923090Z copying torch/include/ATen/ops/special_bessel_j1_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0926010Z copying torch/include/ATen/ops/t_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0931080Z copying torch/include/ATen/ops/det_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0934820Z copying torch/include/ATen/ops/_to_sparse_bsr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0938720Z copying torch/include/ATen/ops/randperm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0939650Z copying torch/include/ATen/ops/expand_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0944050Z copying torch/include/ATen/ops/_fft_c2r.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0947250Z copying torch/include/ATen/ops/sqrt_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0951970Z copying torch/include/ATen/ops/cosine_similarity.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0952890Z copying torch/include/ATen/ops/_foreach_add_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0956590Z copying torch/include/ATen/ops/nonzero_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0961490Z 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-08-14T20:48:01.0965390Z copying torch/include/ATen/ops/sparse_csc_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0968880Z copying torch/include/ATen/ops/trunc_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0969950Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0974160Z copying torch/include/ATen/ops/q_per_channel_axis_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0977860Z copying torch/include/ATen/ops/logdet_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0981830Z copying torch/include/ATen/ops/take_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0983030Z copying torch/include/ATen/ops/miopen_rnn_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0987130Z copying torch/include/ATen/ops/minimum_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0991630Z 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-08-14T20:48:01.0994340Z copying torch/include/ATen/ops/greater_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.0995570Z 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-08-14T20:48:01.1000820Z copying torch/include/ATen/ops/sparse_resize_and_clear_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1003410Z copying torch/include/ATen/ops/prod_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1008140Z copying torch/include/ATen/ops/tril_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1009230Z copying torch/include/ATen/ops/miopen_depthwise_convolution.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1013410Z copying torch/include/ATen/ops/_functional_assert_async_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1017310Z copying torch/include/ATen/ops/arctanh_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1022150Z copying torch/include/ATen/ops/_is_any_true_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1024000Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1025210Z copying torch/include/ATen/ops/_fused_adam_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1031420Z copying torch/include/ATen/ops/max_unpool3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1032550Z copying torch/include/ATen/ops/linalg_pinv_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1039410Z copying torch/include/ATen/ops/_cast_Half_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1040500Z copying torch/include/ATen/ops/neg_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1047160Z copying torch/include/ATen/ops/native_batch_norm_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1048160Z copying torch/include/ATen/ops/unique_dim_consecutive_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1054820Z copying torch/include/ATen/ops/geometric_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1055680Z copying torch/include/ATen/ops/col2im_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1057020Z copying torch/include/ATen/ops/replication_pad2d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1062110Z 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-08-14T20:48:01.1063710Z copying torch/include/ATen/ops/crow_indices_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1070220Z copying torch/include/ATen/ops/cosh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1071270Z copying torch/include/ATen/ops/rshift_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1072620Z copying torch/include/ATen/ops/threshold_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1079120Z copying torch/include/ATen/ops/_sparse_semi_structured_tile_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1080170Z 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-08-14T20:48:01.1086830Z copying torch/include/ATen/ops/_foreach_exp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1087850Z 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-08-14T20:48:01.1094880Z copying torch/include/ATen/ops/binary_cross_entropy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1095850Z copying torch/include/ATen/ops/_softmax_backward_data_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1097030Z copying torch/include/ATen/ops/log_softmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1102540Z copying torch/include/ATen/ops/special_modified_bessel_i0_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1103840Z copying torch/include/ATen/ops/_cudnn_attention_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1107930Z copying torch/include/ATen/ops/sparse_coo_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1112320Z copying torch/include/ATen/ops/_to_sparse_csr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1116780Z 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-08-14T20:48:01.1120460Z copying torch/include/ATen/ops/lu_unpack_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1125760Z copying torch/include/ATen/ops/expand_as_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1127580Z 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-08-14T20:48:01.1128800Z copying torch/include/ATen/ops/is_pinned_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1135570Z 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-08-14T20:48:01.1136680Z copying torch/include/ATen/ops/isposinf_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1142800Z 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-08-14T20:48:01.1144120Z copying torch/include/ATen/ops/_cslt_compress_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1145380Z copying torch/include/ATen/ops/slow_conv_dilated3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1152290Z copying torch/include/ATen/ops/_foreach_abs.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1153300Z copying torch/include/ATen/ops/upsample_bilinear2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1160010Z copying torch/include/ATen/ops/upsample_bicubic2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1160850Z copying torch/include/ATen/ops/histc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1167170Z copying torch/include/ATen/ops/upsample_trilinear3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1168130Z copying torch/include/ATen/ops/_sparse_sum_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1169550Z copying torch/include/ATen/ops/glu_backward_jvp_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1181620Z copying torch/include/ATen/ops/relu_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1182290Z copying torch/include/ATen/ops/gradient_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1183000Z copying torch/include/ATen/ops/linalg_matrix_exp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1185170Z copying torch/include/ATen/ops/_index_put_impl_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1191710Z copying torch/include/ATen/ops/diag_embed_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1192510Z copying torch/include/ATen/ops/_scaled_mm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1193940Z copying torch/include/ATen/ops/_weight_norm_interface_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1198500Z copying torch/include/ATen/ops/trapz_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1199490Z copying torch/include/ATen/ops/block_diag_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1202820Z copying torch/include/ATen/ops/logical_or_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1208230Z copying torch/include/ATen/ops/copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1211500Z 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-08-14T20:48:01.1215890Z 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-08-14T20:48:01.1216810Z copying torch/include/ATen/ops/cumsum_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1220740Z copying torch/include/ATen/ops/special_entr_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1225180Z copying torch/include/ATen/ops/fft_ifftshift.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1228030Z copying torch/include/ATen/ops/batch_norm_elemt_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1228800Z copying torch/include/ATen/ops/_assert_async.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1234550Z copying torch/include/ATen/ops/q_zero_point_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1235990Z copying torch/include/ATen/ops/special_zeta_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1243200Z copying torch/include/ATen/ops/_values_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1244170Z copying torch/include/ATen/ops/is_same_size.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1245370Z copying torch/include/ATen/ops/atan2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1252020Z copying torch/include/ATen/ops/linalg_cond_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1253040Z copying torch/include/ATen/ops/diagonal_scatter_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1254370Z copying torch/include/ATen/ops/upsample_bicubic2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1259390Z copying torch/include/ATen/ops/special_xlog1py_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1260380Z copying torch/include/ATen/ops/isnan_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1268340Z copying torch/include/ATen/ops/scaled_dot_product_attention_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1269380Z copying torch/include/ATen/ops/bitwise_left_shift_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1275830Z copying torch/include/ATen/ops/l1_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1278320Z 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-08-14T20:48:01.1283410Z copying torch/include/ATen/ops/_foreach_add_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1284470Z copying torch/include/ATen/ops/cholesky_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1287630Z copying torch/include/ATen/ops/nuclear_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1292100Z copying torch/include/ATen/ops/lift_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1293130Z 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-08-14T20:48:01.1296490Z copying torch/include/ATen/ops/addr_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1301550Z copying torch/include/ATen/ops/repeat_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1305380Z copying torch/include/ATen/ops/linear_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1309320Z copying torch/include/ATen/ops/and_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1310270Z copying torch/include/ATen/ops/select.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1314440Z 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-08-14T20:48:01.1315610Z copying torch/include/ATen/ops/true_divide.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1323320Z 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-08-14T20:48:01.1330690Z copying torch/include/ATen/ops/_foreach_tan_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1331720Z copying torch/include/ATen/ops/_cudnn_ctc_loss_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1338500Z copying torch/include/ATen/ops/nonzero_numpy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1339290Z copying torch/include/ATen/ops/special_sinc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1340540Z copying torch/include/ATen/ops/special_chebyshev_polynomial_u_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1345610Z copying torch/include/ATen/ops/_foreach_cos_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1348750Z 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-08-14T20:48:01.1353780Z copying torch/include/ATen/ops/_pdist_forward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1354760Z copying torch/include/ATen/ops/_pdist_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1357050Z copying torch/include/ATen/ops/cos_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1362660Z copying torch/include/ATen/ops/pixel_shuffle_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1363580Z copying torch/include/ATen/ops/tan_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1367520Z copying torch/include/ATen/ops/ones_like_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1372070Z copying torch/include/ATen/ops/_conj_physical_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1374810Z copying torch/include/ATen/ops/nll_loss2d_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1376020Z 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-08-14T20:48:01.1380920Z copying torch/include/ATen/ops/_to_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1382960Z copying torch/include/ATen/ops/cos_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1389240Z 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-08-14T20:48:01.1390250Z copying torch/include/ATen/ops/mkldnn_convolution_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1397050Z copying torch/include/ATen/ops/_fused_rms_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1397900Z copying torch/include/ATen/ops/_linalg_eigh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1405230Z copying torch/include/ATen/ops/_print_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1406270Z 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-08-14T20:48:01.1407510Z copying torch/include/ATen/ops/embedding_renorm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1413060Z copying torch/include/ATen/ops/cat_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1414030Z copying torch/include/ATen/ops/ne_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1420910Z copying torch/include/ATen/ops/expand_as_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1421850Z 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-08-14T20:48:01.1422960Z copying torch/include/ATen/ops/complex_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1429340Z copying torch/include/ATen/ops/linalg_ldl_solve_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-14T20:48:01.1430370Z 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-08-14T20:48:01.1437170Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-08-14T20:48:01.1437740Z copying torch/include/ATen/functorch/BatchedFallback.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-08-14T20:48:01.1439000Z copying torch/include/ATen/functorch/FunctionalizeInterpreter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-08-14T20:48:01.1445560Z copying torch/include/ATen/functorch/ADInterpreters.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-08-14T20:48:01.1446550Z copying torch/include/ATen/functorch/Interpreter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-08-14T20:48:01.1447730Z copying torch/include/ATen/functorch/TensorWrapper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-08-14T20:48:01.1453530Z copying torch/include/ATen/functorch/BatchRulesHelper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-08-14T20:48:01.1454760Z copying torch/include/ATen/functorch/PlumbingHelper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-08-14T20:48:01.1461710Z copying torch/include/ATen/functorch/VmapInterpreter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-08-14T20:48:01.1462690Z copying torch/include/ATen/functorch/Macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-08-14T20:48:01.1464090Z copying torch/include/ATen/functorch/BatchingMetaprogramming.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-08-14T20:48:01.1469190Z copying torch/include/ATen/functorch/BatchedTensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-08-14T20:48:01.1471000Z copying torch/include/ATen/functorch/LegacyVmapTransforms.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-08-14T20:48:01.1477310Z copying torch/include/ATen/functorch/DynamicLayer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-08-14T20:48:01.1478300Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cudnn 2025-08-14T20:48:01.1478970Z copying torch/include/ATen/cudnn/Handles.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cudnn 2025-08-14T20:48:01.1480200Z copying torch/include/ATen/cudnn/Utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cudnn 2025-08-14T20:48:01.1484790Z copying torch/include/ATen/cudnn/Types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cudnn 2025-08-14T20:48:01.1485820Z copying torch/include/ATen/cudnn/Descriptors.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cudnn 2025-08-14T20:48:01.1492910Z copying torch/include/ATen/cudnn/Handle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cudnn 2025-08-14T20:48:01.1493900Z copying torch/include/ATen/cudnn/cudnn-wrapper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cudnn 2025-08-14T20:48:01.1500960Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10 2025-08-14T20:48:01.1501160Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-14T20:48:01.1501880Z copying torch/include/c10/core/RefcountedDeleter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-14T20:48:01.1503220Z copying torch/include/c10/core/QEngine.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-14T20:48:01.1504460Z copying torch/include/c10/core/TensorOptions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-14T20:48:01.1507960Z copying torch/include/c10/core/SymFloat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-14T20:48:01.1509730Z copying torch/include/c10/core/GradMode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-14T20:48:01.1515390Z copying torch/include/c10/core/Device.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-14T20:48:01.1516850Z copying torch/include/c10/core/CPUAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-14T20:48:01.1518690Z copying torch/include/c10/core/DefaultDtype.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-14T20:48:01.1523640Z copying torch/include/c10/core/DefaultTensorOptions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-14T20:48:01.1532490Z copying torch/include/c10/core/alignment.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-14T20:48:01.1533400Z copying torch/include/c10/core/Event.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-14T20:48:01.1539770Z copying torch/include/c10/core/Backend.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-14T20:48:01.1541320Z copying torch/include/c10/core/AllocatorConfig.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-14T20:48:01.1547680Z copying torch/include/c10/core/CompileTimeFunctionPointer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-14T20:48:01.1549430Z copying torch/include/c10/core/DeviceArray.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-14T20:48:01.1550450Z copying torch/include/c10/core/PyHandleCache.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-14T20:48:01.1555430Z copying torch/include/c10/core/ConstantSymNodeImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-14T20:48:01.1556330Z copying torch/include/c10/core/WrapDimMinimal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-14T20:48:01.1559980Z copying torch/include/c10/core/QScheme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-14T20:48:01.1565180Z copying torch/include/c10/core/SafePyObject.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-14T20:48:01.1568560Z copying torch/include/c10/core/Stream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-14T20:48:01.1573270Z copying torch/include/c10/core/UndefinedTensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-14T20:48:01.1574190Z copying torch/include/c10/core/Scalar.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-14T20:48:01.1577200Z copying torch/include/c10/core/AutogradState.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-14T20:48:01.1581900Z copying torch/include/c10/core/SymIntArrayRef.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-14T20:48:01.1582780Z copying torch/include/c10/core/thread_pool.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-14T20:48:01.1586970Z copying torch/include/c10/core/CopyBytes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-14T20:48:01.1591480Z copying torch/include/c10/core/SymNodeImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-14T20:48:01.1595780Z copying torch/include/c10/core/StreamGuard.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-14T20:48:01.1598900Z copying torch/include/c10/core/DynamicCast.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-14T20:48:01.1599820Z copying torch/include/c10/core/Layout.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-14T20:48:01.1605360Z copying torch/include/c10/core/GeneratorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-14T20:48:01.1606170Z copying torch/include/c10/core/DispatchKeySet.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-14T20:48:01.1612860Z copying torch/include/c10/core/Allocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-14T20:48:01.1613890Z copying torch/include/c10/core/TensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-14T20:48:01.1620130Z copying torch/include/c10/core/Contiguity.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-14T20:48:01.1621030Z copying torch/include/c10/core/ScalarType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-14T20:48:01.1622450Z copying torch/include/c10/core/Storage.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-14T20:48:01.1629240Z copying torch/include/c10/core/DeviceType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-14T20:48:01.1630030Z copying torch/include/c10/core/DeviceGuard.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-14T20:48:01.1636740Z copying torch/include/c10/core/StorageImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-14T20:48:01.1637920Z copying torch/include/c10/core/SymbolicShapeMeta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-14T20:48:01.1644620Z copying torch/include/c10/core/MemoryFormat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-14T20:48:01.1647850Z copying torch/include/c10/core/SymBool.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-14T20:48:01.1648760Z copying torch/include/c10/core/DispatchKey.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-14T20:48:01.1652670Z copying torch/include/c10/core/ScalarTypeToTypeMeta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-14T20:48:01.1653560Z copying torch/include/c10/core/InferenceMode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-14T20:48:01.1654950Z copying torch/include/c10/core/SymInt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-14T20:48:01.1656230Z copying torch/include/c10/core/OptionalRef.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-14T20:48:01.1661330Z copying torch/include/c10/core/CachingDeviceAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-14T20:48:01.1665040Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-08-14T20:48:01.1665400Z copying torch/include/c10/core/impl/InlineStreamGuard.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-08-14T20:48:01.1669610Z copying torch/include/c10/core/impl/SizesAndStrides.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-08-14T20:48:01.1670640Z copying torch/include/c10/core/impl/InlineDeviceGuard.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-08-14T20:48:01.1673330Z copying torch/include/c10/core/impl/GPUTrace.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-08-14T20:48:01.1677800Z copying torch/include/c10/core/impl/COWDeleter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-08-14T20:48:01.1681650Z copying torch/include/c10/core/impl/LocalDispatchKeySet.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-08-14T20:48:01.1686040Z copying torch/include/c10/core/impl/alloc_cpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-08-14T20:48:01.1690550Z copying torch/include/c10/core/impl/PyInterpreterHooks.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-08-14T20:48:01.1693610Z copying torch/include/c10/core/impl/VirtualGuardImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-08-14T20:48:01.1699010Z copying torch/include/c10/core/impl/HermeticPyObjectTLS.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-08-14T20:48:01.1699960Z copying torch/include/c10/core/impl/PyObjectSlot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-08-14T20:48:01.1703440Z copying torch/include/c10/core/impl/TorchDispatchModeTLS.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-08-14T20:48:01.1708480Z copying torch/include/c10/core/impl/PyInterpreter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-08-14T20:48:01.1711620Z copying torch/include/c10/core/impl/PythonDispatcherTLS.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-08-14T20:48:01.1714570Z copying torch/include/c10/core/impl/COW.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-08-14T20:48:01.1715980Z copying torch/include/c10/core/impl/InlineEvent.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-08-14T20:48:01.1718760Z copying torch/include/c10/core/impl/DeviceGuardImplInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-08-14T20:48:01.1724070Z copying torch/include/c10/core/impl/FakeGuardImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-08-14T20:48:01.1728560Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/test 2025-08-14T20:48:01.1728780Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/test/util 2025-08-14T20:48:01.1729450Z copying torch/include/c10/test/util/complex_test_common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/test/util 2025-08-14T20:48:01.1731520Z 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-08-14T20:48:01.1732910Z copying torch/include/c10/test/util/Macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/test/util 2025-08-14T20:48:01.1737980Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1738490Z copying torch/include/c10/util/Type.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1740670Z copying torch/include/c10/util/order_preserving_flat_hash_map.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1745700Z copying torch/include/c10/util/Float8_e4m3fn-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1746820Z copying torch/include/c10/util/quint4x2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1750500Z copying torch/include/c10/util/FbcodeMaps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1754840Z copying torch/include/c10/util/Semaphore.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1758030Z copying torch/include/c10/util/signal_handler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1758920Z copying torch/include/c10/util/error.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1764780Z copying torch/include/c10/util/safe_numerics.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1765870Z copying torch/include/c10/util/Half.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1772930Z copying torch/include/c10/util/flat_hash_map.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1774240Z copying torch/include/c10/util/env.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1780760Z copying torch/include/c10/util/llvmMathExtras.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1781700Z copying torch/include/c10/util/Gauge.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1782940Z copying torch/include/c10/util/WaitCounterDynamicBackend.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1789010Z copying torch/include/c10/util/Float8_e8m0fnu-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1789850Z copying torch/include/c10/util/Synchronized.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1796900Z copying torch/include/c10/util/Bitset.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1798150Z copying torch/include/c10/util/typeid.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1805730Z copying torch/include/c10/util/Float8_e4m3fnuz-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1806700Z copying torch/include/c10/util/TypeSafeSignMath.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1807890Z copying torch/include/c10/util/intrusive_ptr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1814090Z copying torch/include/c10/util/string_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1815350Z copying torch/include/c10/util/IntrusiveList.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1818380Z copying torch/include/c10/util/win32-headers.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1822550Z copying torch/include/c10/util/AlignOf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1823740Z copying torch/include/c10/util/static_tracepoint.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1828820Z copying torch/include/c10/util/ssize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1832680Z copying torch/include/c10/util/Enumerate.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1833570Z copying torch/include/c10/util/numa.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1834840Z copying torch/include/c10/util/qint32.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1836070Z copying torch/include/c10/util/Float4_e2m1fn_x2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1837200Z copying torch/include/c10/util/CallOnce.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1840380Z copying torch/include/c10/util/Float8_e5m2fnuz.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1841640Z copying torch/include/c10/util/MaybeOwned.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1842900Z copying torch/include/c10/util/Half-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1848330Z copying torch/include/c10/util/TypeTraits.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1856590Z copying torch/include/c10/util/DeadlockDetection.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1857450Z copying torch/include/c10/util/FunctionRef.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1864840Z copying torch/include/c10/util/Backtrace.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1866010Z copying torch/include/c10/util/overflows.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1867350Z copying torch/include/c10/util/ExclusivelyOwned.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1872670Z copying torch/include/c10/util/Load.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1874100Z copying torch/include/c10/util/BFloat16-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1880560Z copying torch/include/c10/util/static_tracepoint_elfx86.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1881620Z copying torch/include/c10/util/ConstexprCrc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1883070Z copying torch/include/c10/util/ThreadLocal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1889070Z copying torch/include/c10/util/IdWrapper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1890100Z copying torch/include/c10/util/Flags.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1897520Z copying torch/include/c10/util/overloaded.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1898940Z copying torch/include/c10/util/Float8_e4m3fnuz.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1905460Z copying torch/include/c10/util/quint8.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1906560Z copying torch/include/c10/util/Float8_e5m2-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1908010Z copying torch/include/c10/util/StringUtil.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1914000Z copying torch/include/c10/util/Logging.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1914870Z copying torch/include/c10/util/MathConstants.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1921990Z copying torch/include/c10/util/Registry.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1923020Z copying torch/include/c10/util/Optional.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1924190Z copying torch/include/c10/util/Float8_e5m2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1930790Z copying torch/include/c10/util/tempfile.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1931670Z copying torch/include/c10/util/copysign.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1938640Z copying torch/include/c10/util/ArrayRef.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1939630Z copying torch/include/c10/util/thread_name.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1940830Z copying torch/include/c10/util/strides.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1946180Z copying torch/include/c10/util/Unicode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1947500Z copying torch/include/c10/util/Float8_e8m0fnu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1954450Z copying torch/include/c10/util/TypeCast.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1955350Z copying torch/include/c10/util/sparse_bitset.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1956820Z copying torch/include/c10/util/OptionalArrayRef.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1962760Z copying torch/include/c10/util/BFloat16.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1963520Z copying torch/include/c10/util/TypeList.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1970600Z copying torch/include/c10/util/TypeIndex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1971470Z copying torch/include/c10/util/NetworkFlow.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1972700Z copying torch/include/c10/util/Array.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1979300Z copying torch/include/c10/util/logging_is_google_glog.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1980430Z copying torch/include/c10/util/Metaprogramming.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1981560Z copying torch/include/c10/util/WaitCounter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1982880Z copying torch/include/c10/util/quint2x4.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1984080Z copying torch/include/c10/util/floating_point_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1985280Z copying torch/include/c10/util/ParallelGuard.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1986430Z copying torch/include/c10/util/BFloat16-math.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1987820Z copying torch/include/c10/util/int128.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1990200Z copying torch/include/c10/util/Lazy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1991110Z copying torch/include/c10/util/Deprecated.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1994980Z copying torch/include/c10/util/irange.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1995890Z copying torch/include/c10/util/SmallBuffer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1997210Z copying torch/include/c10/util/ScopeExit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1998450Z copying torch/include/c10/util/Unroll.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.1999670Z copying torch/include/c10/util/LeftRight.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.2000920Z copying torch/include/c10/util/bit_cast.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.2002140Z copying torch/include/c10/util/qint8.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.2003440Z copying torch/include/c10/util/complex_math.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.2004690Z copying torch/include/c10/util/logging_is_not_google_glog.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.2006080Z copying torch/include/c10/util/DynamicCounter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.2007260Z copying torch/include/c10/util/Exception.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.2008780Z copying torch/include/c10/util/UniqueVoidPtr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.2010090Z copying torch/include/c10/util/ThreadLocalDebugInfo.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.2011280Z copying torch/include/c10/util/Float8_e4m3fn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.2012510Z copying torch/include/c10/util/AbortHandler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.2013930Z copying torch/include/c10/util/DimVector.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.2014820Z copying torch/include/c10/util/accumulate.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.2015980Z copying torch/include/c10/util/C++17.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.2017200Z copying torch/include/c10/util/strong_type.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.2019470Z copying torch/include/c10/util/ApproximateClock.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.2020930Z copying torch/include/c10/util/SmallVector.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.2022550Z copying torch/include/c10/util/Float8_e5m2fnuz-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.2029940Z copying torch/include/c10/util/hash.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.2030970Z copying torch/include/c10/util/python_stub.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.2037990Z copying torch/include/c10/util/complex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.2039180Z copying torch/include/c10/util/bits.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.2046110Z copying torch/include/c10/util/string_view.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.2047110Z copying torch/include/c10/util/complex_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.2048370Z copying torch/include/c10/util/ExclusivelyOwnedTensorTraits.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.2055100Z copying torch/include/c10/util/generic_math.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-14T20:48:01.2055960Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal 2025-08-14T20:48:01.2056780Z copying torch/include/c10/metal/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal 2025-08-14T20:48:01.2057820Z copying torch/include/c10/metal/special_math.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal 2025-08-14T20:48:01.2063380Z copying torch/include/c10/metal/reduction_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal 2025-08-14T20:48:01.2064210Z copying torch/include/c10/metal/expm1f.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal 2025-08-14T20:48:01.2071550Z copying torch/include/c10/metal/common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal 2025-08-14T20:48:01.2072350Z copying torch/include/c10/metal/indexing.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal 2025-08-14T20:48:01.2073850Z copying torch/include/c10/metal/random.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal 2025-08-14T20:48:01.2079490Z copying torch/include/c10/metal/atomic.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal 2025-08-14T20:48:01.2080620Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-08-14T20:48:01.2081290Z copying torch/include/c10/cuda/CUDADeviceAssertion.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-08-14T20:48:01.2086510Z copying torch/include/c10/cuda/driver_api.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-08-14T20:48:01.2087820Z copying torch/include/c10/cuda/CUDAMathCompat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-08-14T20:48:01.2089130Z copying torch/include/c10/cuda/CUDAAlgorithm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-08-14T20:48:01.2096480Z copying torch/include/c10/cuda/CUDAStream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-08-14T20:48:01.2097430Z copying torch/include/c10/cuda/CUDAGuard.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-08-14T20:48:01.2104060Z copying torch/include/c10/cuda/CUDAMiscFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-08-14T20:48:01.2105130Z copying torch/include/c10/cuda/CUDAGraphsC10Utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-08-14T20:48:01.2111800Z copying torch/include/c10/cuda/CUDAMacros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-08-14T20:48:01.2112840Z copying torch/include/c10/cuda/CUDAAllocatorConfig.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-08-14T20:48:01.2114010Z copying torch/include/c10/cuda/CUDAFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-08-14T20:48:01.2119780Z copying torch/include/c10/cuda/CUDAException.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-08-14T20:48:01.2120920Z copying torch/include/c10/cuda/CUDACachingAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-08-14T20:48:01.2128480Z copying torch/include/c10/cuda/CUDADeviceAssertionHost.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-08-14T20:48:01.2129440Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda/impl 2025-08-14T20:48:01.2130080Z copying torch/include/c10/cuda/impl/CUDATest.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda/impl 2025-08-14T20:48:01.2131460Z copying torch/include/c10/cuda/impl/CUDAGuardImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda/impl 2025-08-14T20:48:01.2136440Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu 2025-08-14T20:48:01.2136750Z copying torch/include/c10/xpu/XPUStream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu 2025-08-14T20:48:01.2137990Z copying torch/include/c10/xpu/XPUDeviceProp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu 2025-08-14T20:48:01.2142240Z copying torch/include/c10/xpu/XPUCachingAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu 2025-08-14T20:48:01.2145530Z copying torch/include/c10/xpu/XPUMacros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu 2025-08-14T20:48:01.2146540Z copying torch/include/c10/xpu/XPUException.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu 2025-08-14T20:48:01.2150860Z copying torch/include/c10/xpu/XPUFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu 2025-08-14T20:48:01.2153990Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu/impl 2025-08-14T20:48:01.2154320Z copying torch/include/c10/xpu/impl/XPUGuardImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu/impl 2025-08-14T20:48:01.2158790Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu/test 2025-08-14T20:48:01.2159060Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu/test/impl 2025-08-14T20:48:01.2159510Z copying torch/include/c10/xpu/test/impl/XPUTest.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu/test/impl 2025-08-14T20:48:01.2160700Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/macros 2025-08-14T20:48:01.2161390Z copying torch/include/c10/macros/cmake_macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/macros 2025-08-14T20:48:01.2162530Z copying torch/include/c10/macros/Export.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/macros 2025-08-14T20:48:01.2168090Z copying torch/include/c10/macros/Macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/macros 2025-08-14T20:48:01.2171630Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/mobile 2025-08-14T20:48:01.2171980Z copying torch/include/c10/mobile/CPUCachingAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/mobile 2025-08-14T20:48:01.2175110Z copying torch/include/c10/mobile/CPUProfilingAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/mobile 2025-08-14T20:48:01.2176150Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/fp16 2025-08-14T20:48:01.2176650Z copying torch/include/fp16/fp16.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fp16 2025-08-14T20:48:01.2180900Z copying torch/include/fp16/psimd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fp16 2025-08-14T20:48:01.2188260Z copying torch/include/fp16/bitcasts.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fp16 2025-08-14T20:48:01.2189500Z copying torch/include/torch/csrc/distributed/c10d/ProcessGroup.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-14T20:48:01.2193530Z copying torch/include/torch/csrc/distributed/c10d/PyProcessGroup.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-14T20:48:01.2197940Z copying torch/include/torch/csrc/distributed/c10d/logger.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-14T20:48:01.2201640Z copying torch/include/torch/csrc/distributed/c10d/Work.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-14T20:48:01.2205290Z copying torch/include/torch/csrc/distributed/c10d/FlightRecorder.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-14T20:48:01.2206500Z 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-08-14T20:48:01.2211410Z copying torch/include/torch/csrc/distributed/c10d/TCPStoreBackend.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-14T20:48:01.2213860Z copying torch/include/torch/csrc/distributed/c10d/Store.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-14T20:48:01.2219170Z copying torch/include/torch/csrc/distributed/c10d/WinSockUtils.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-14T20:48:01.2220040Z copying torch/include/torch/csrc/distributed/c10d/ProcessGroupUCC.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-14T20:48:01.2222710Z copying torch/include/torch/csrc/distributed/c10d/GlooDeviceFactory.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-14T20:48:01.2228630Z copying torch/include/torch/csrc/distributed/c10d/RankLocal.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-14T20:48:01.2231010Z copying torch/include/torch/csrc/distributed/c10d/UnixSockUtils.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-14T20:48:01.2235810Z copying torch/include/torch/csrc/distributed/c10d/FileStore.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-14T20:48:01.2237280Z copying torch/include/torch/csrc/distributed/c10d/reducer.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-14T20:48:01.2239620Z copying torch/include/torch/csrc/distributed/c10d/ProcessGroupWrapper.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-14T20:48:01.2245310Z copying torch/include/torch/csrc/distributed/c10d/NCCLUtils.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-14T20:48:01.2246350Z copying torch/include/torch/csrc/distributed/c10d/FakeProcessGroup.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-14T20:48:01.2252860Z copying torch/include/torch/csrc/distributed/c10d/comm.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-14T20:48:01.2254380Z copying torch/include/torch/csrc/distributed/c10d/Functional.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-14T20:48:01.2260890Z copying torch/include/torch/csrc/distributed/c10d/Backoff.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-14T20:48:01.2261950Z copying torch/include/torch/csrc/distributed/c10d/TCPStore.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-14T20:48:01.2263300Z copying torch/include/torch/csrc/distributed/c10d/ProcessGroupMPI.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-14T20:48:01.2269210Z copying torch/include/torch/csrc/distributed/c10d/ProcessGroupGloo.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-14T20:48:01.2270210Z copying torch/include/torch/csrc/distributed/c10d/NanCheck.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-14T20:48:01.2276990Z copying torch/include/torch/csrc/distributed/c10d/GroupRegistry.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-14T20:48:01.2278360Z copying torch/include/torch/csrc/distributed/c10d/UCCUtils.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-14T20:48:01.2284210Z 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-08-14T20:48:01.2285230Z copying torch/include/torch/csrc/distributed/c10d/HashStore.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-14T20:48:01.2286420Z 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-08-14T20:48:01.2293330Z copying torch/include/torch/csrc/distributed/c10d/UCCTracing.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-14T20:48:01.2294930Z copying torch/include/torch/csrc/distributed/c10d/ProcessGroupGlooDetail.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-14T20:48:01.2303370Z copying torch/include/torch/csrc/distributed/c10d/ProcessGroupNCCL.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-14T20:48:01.2304570Z copying torch/include/torch/csrc/distributed/c10d/Backend.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-14T20:48:01.2305960Z copying torch/include/torch/csrc/distributed/c10d/FlightRecorderDetail.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-14T20:48:01.2307310Z copying torch/include/torch/csrc/distributed/c10d/Utils.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-14T20:48:01.2308670Z copying torch/include/torch/csrc/distributed/c10d/Types.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-14T20:48:01.2309850Z copying torch/include/torch/csrc/distributed/c10d/PrefixStore.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-14T20:48:01.2311250Z copying torch/include/torch/csrc/distributed/c10d/ParamCommsUtils.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-14T20:48:01.2312690Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/control_collectives 2025-08-14T20:48:01.2313340Z 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-08-14T20:48:01.2314670Z 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-08-14T20:48:01.2315750Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/cuda 2025-08-14T20:48:01.2316450Z 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-08-14T20:48:01.2317720Z 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-08-14T20:48:01.2318930Z 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-08-14T20:48:01.2320140Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/control_plane 2025-08-14T20:48:01.2320940Z 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-08-14T20:48:01.2322160Z 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-08-14T20:48:01.2323500Z 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-08-14T20:48:01.2324780Z 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-08-14T20:48:01.2326130Z 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-08-14T20:48:01.2327490Z 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-08-14T20:48:01.2328740Z 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-08-14T20:48:01.2330020Z 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-08-14T20:48:01.2331250Z 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-08-14T20:48:01.2337320Z copying torch/include/ATen/native/cuda/Normalization.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-14T20:48:01.2338650Z copying torch/include/ATen/native/cuda/SortingRadixSelect.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-14T20:48:01.2344590Z copying torch/include/ATen/native/cuda/block_reduce.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-14T20:48:01.2345860Z copying torch/include/ATen/native/cuda/TensorModeKernel.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-14T20:48:01.2347160Z copying torch/include/ATen/native/cuda/MemoryAccess.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-14T20:48:01.2350530Z copying torch/include/ATen/native/cuda/CUDAJitLoops.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-14T20:48:01.2358060Z copying torch/include/ATen/native/cuda/im2col.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-14T20:48:01.2359120Z copying torch/include/ATen/native/cuda/cutlass_common.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-14T20:48:01.2364170Z copying torch/include/ATen/native/cuda/SortUtils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-14T20:48:01.2367260Z copying torch/include/ATen/native/cuda/DeviceSqrt.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-14T20:48:01.2371660Z copying torch/include/ATen/native/cuda/UpSample.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-14T20:48:01.2372540Z copying torch/include/ATen/native/cuda/Randperm.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-14T20:48:01.2376230Z copying torch/include/ATen/native/cuda/vol2col.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-14T20:48:01.2380820Z copying torch/include/ATen/native/cuda/Pow.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-14T20:48:01.2384660Z copying torch/include/ATen/native/cuda/reduction_template.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-14T20:48:01.2387730Z copying torch/include/ATen/native/cuda/fused_adamw_impl.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-14T20:48:01.2388960Z copying torch/include/ATen/native/cuda/Math.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-14T20:48:01.2394410Z copying torch/include/ATen/native/cuda/SortingCommon.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-14T20:48:01.2396750Z copying torch/include/ATen/native/cuda/ScanUtils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-14T20:48:01.2401810Z copying torch/include/ATen/native/cuda/MultiTensorApply.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-14T20:48:01.2403170Z copying torch/include/ATen/native/cuda/fused_adagrad_impl.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-14T20:48:01.2409470Z copying torch/include/ATen/native/cuda/EmbeddingBackwardKernel.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-14T20:48:01.2410960Z copying torch/include/ATen/native/cuda/fused_adagrad_utils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-14T20:48:01.2412420Z 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-08-14T20:48:01.2418850Z copying torch/include/ATen/native/cuda/fused_adam_utils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-14T20:48:01.2420070Z copying torch/include/ATen/native/cuda/GroupMMCommon.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-14T20:48:01.2426670Z copying torch/include/ATen/native/cuda/JitLoops.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-14T20:48:01.2427670Z copying torch/include/ATen/native/cuda/KernelUtils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-14T20:48:01.2433730Z copying torch/include/ATen/native/cuda/ForeachFunctors.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-14T20:48:01.2434880Z 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-08-14T20:48:01.2436250Z copying torch/include/ATen/native/cuda/Loops.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-14T20:48:01.2442620Z copying torch/include/ATen/native/cuda/UniqueCub.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-14T20:48:01.2443950Z copying torch/include/ATen/native/cuda/CUDALoops.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-14T20:48:01.2451140Z copying torch/include/ATen/native/cuda/GridSampler.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-14T20:48:01.2452180Z copying torch/include/ATen/native/cuda/PersistentSoftmax.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-14T20:48:01.2453520Z copying torch/include/ATen/native/cuda/Reduce.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-14T20:48:01.2455100Z copying torch/include/ATen/native/cuda/ForeachMinMaxFunctors.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-14T20:48:01.2456410Z copying torch/include/ATen/native/cuda/fused_adam_impl.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-14T20:48:01.2457790Z copying torch/include/ATen/cuda/AsmUtils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-14T20:48:01.2459030Z copying torch/include/ATen/cuda/cub-RadixSortPairs.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-14T20:48:01.2460210Z copying torch/include/ATen/cuda/DeviceUtils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-14T20:48:01.2461520Z copying torch/include/ATen/cuda/cub_definitions.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-14T20:48:01.2462770Z copying torch/include/ATen/cuda/ApplyGridUtils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-14T20:48:01.2464060Z copying torch/include/ATen/cuda/PhiloxUtils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-14T20:48:01.2465190Z copying torch/include/ATen/cuda/ScanUtils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-14T20:48:01.2466440Z copying torch/include/ATen/cuda/NumericLimits.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-14T20:48:01.2467800Z copying torch/include/ATen/cuda/CUDATensorMethods.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-14T20:48:01.2468920Z copying torch/include/ATen/cuda/cub.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-14T20:48:01.2470290Z copying torch/include/ATen/cuda/CUDAGraphsUtils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-14T20:48:01.2475850Z copying torch/include/ATen/cuda/CUDAApplyUtils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-14T20:48:01.2477180Z copying torch/include/ATen/cuda/Atomic.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-14T20:48:01.2483160Z copying torch/include/ATen/cuda/detail/TensorInfo.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-08-14T20:48:01.2484560Z copying torch/include/ATen/cuda/detail/IntegerDivider.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-08-14T20:48:01.2485930Z copying torch/include/ATen/cuda/detail/PhiloxCudaStateRaw.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-08-14T20:48:01.2492160Z copying torch/include/ATen/cuda/detail/OffsetCalculator.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-08-14T20:48:01.2493070Z copying torch/include/ATen/cuda/detail/IndexUtils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-08-14T20:48:01.2500370Z copying torch/include/ATen/cuda/detail/UnpackRaw.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-08-14T20:48:01.2501570Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/csrc 2025-08-14T20:48:01.2502150Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/csrc/inductor 2025-08-14T20:48:01.2502640Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/csrc/inductor/aoti_runtime 2025-08-14T20:48:01.2503310Z copying torch/csrc/inductor/aoti_runtime/model.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/csrc/inductor/aoti_runtime 2025-08-14T20:48:01.2504700Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/aoti_runtime 2025-08-14T20:48:01.2505480Z copying torch/_inductor/codegen/aoti_runtime/interface.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/aoti_runtime 2025-08-14T20:48:01.2617940Z copying torch/_inductor/script.ld -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-14T20:48:01.2630350Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex/templates 2025-08-14T20:48:01.2630750Z copying torch/_inductor/kernel/flex/templates/flex_backwards.py.jinja -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex/templates 2025-08-14T20:48:01.2648580Z copying torch/_inductor/kernel/flex/templates/flex_decode.py.jinja -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex/templates 2025-08-14T20:48:01.2655250Z copying torch/_inductor/kernel/flex/templates/utilities.py.jinja -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex/templates 2025-08-14T20:48:01.2664760Z copying torch/_inductor/kernel/flex/templates/flex_attention.py.jinja -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex/templates 2025-08-14T20:48:01.2674740Z copying torch/_inductor/kernel/flex/templates/common.py.jinja -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex/templates 2025-08-14T20:48:01.2683900Z copying torch/_export/serde/schema.yaml -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde 2025-08-14T20:48:01.2694320Z copying torch/_export/serde/export_schema.thrift -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde 2025-08-14T20:48:01.2704140Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/share 2025-08-14T20:48:01.2704320Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake 2025-08-14T20:48:01.2704840Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/ATen 2025-08-14T20:48:01.2705440Z copying torch/share/cmake/ATen/ATenConfig.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/ATen 2025-08-14T20:48:01.2706740Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2 2025-08-14T20:48:01.2707380Z copying torch/share/cmake/Caffe2/Caffe2Config.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2 2025-08-14T20:48:01.2708850Z copying torch/share/cmake/Caffe2/FindSYCLToolkit.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2 2025-08-14T20:48:01.2710120Z copying torch/share/cmake/Caffe2/FindCUSPARSELT.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2 2025-08-14T20:48:01.2711320Z copying torch/share/cmake/Caffe2/FindCUDAToolkit.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2 2025-08-14T20:48:01.2712800Z copying torch/share/cmake/Caffe2/Caffe2Targets.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2 2025-08-14T20:48:01.2714100Z copying torch/share/cmake/Caffe2/Caffe2Targets-release.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2 2025-08-14T20:48:01.2715260Z copying torch/share/cmake/Caffe2/FindCUDSS.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2 2025-08-14T20:48:01.2716530Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public 2025-08-14T20:48:01.2717140Z copying torch/share/cmake/Caffe2/public/LoadHIP.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public 2025-08-14T20:48:01.2718400Z copying torch/share/cmake/Caffe2/public/mkldnn.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public 2025-08-14T20:48:01.2719880Z copying torch/share/cmake/Caffe2/public/glog.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public 2025-08-14T20:48:01.2721090Z copying torch/share/cmake/Caffe2/public/utils.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public 2025-08-14T20:48:01.2722430Z copying torch/share/cmake/Caffe2/public/protobuf.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public 2025-08-14T20:48:01.2723650Z copying torch/share/cmake/Caffe2/public/mkl.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public 2025-08-14T20:48:01.2724890Z copying torch/share/cmake/Caffe2/public/gflags.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public 2025-08-14T20:48:01.2726160Z copying torch/share/cmake/Caffe2/public/cuda.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public 2025-08-14T20:48:01.2727360Z copying torch/share/cmake/Caffe2/public/xpu.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public 2025-08-14T20:48:01.2728690Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix 2025-08-14T20:48:01.2729340Z 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-08-14T20:48:01.2730750Z 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-08-14T20:48:01.2731940Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream 2025-08-14T20:48:01.2732670Z 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-08-14T20:48:01.2733900Z 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-08-14T20:48:01.2736680Z 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-08-14T20:48:01.2737410Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA 2025-08-14T20:48:01.2738100Z 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-08-14T20:48:01.2739370Z 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-08-14T20:48:01.2740650Z 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-08-14T20:48:01.2742020Z 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-08-14T20:48:01.2744300Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Torch 2025-08-14T20:48:01.2744740Z copying torch/share/cmake/Torch/TorchConfig.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Torch 2025-08-14T20:48:01.2746430Z copying torch/share/cmake/Torch/TorchConfigVersion.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Torch 2025-08-14T20:48:01.2747720Z copying torch/utils/benchmark/utils/timeit_template.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils 2025-08-14T20:48:01.2755200Z 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-08-14T20:48:01.2763840Z 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-08-14T20:48:01.2772070Z copying torch/utils/benchmark/utils/valgrind_wrapper/valgrind.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/valgrind_wrapper 2025-08-14T20:48:01.2775230Z copying torch/utils/benchmark/utils/valgrind_wrapper/callgrind.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/valgrind_wrapper 2025-08-14T20:48:01.2776130Z copying torch/utils/model_dump/skeleton.html -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/model_dump 2025-08-14T20:48:01.2789380Z copying torch/utils/model_dump/code.js -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/model_dump 2025-08-14T20:48:01.2802410Z copying torch/utils/model_dump/preact.mjs -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/model_dump 2025-08-14T20:48:01.2809640Z copying torch/utils/model_dump/htm.mjs -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/model_dump 2025-08-14T20:48:01.2817440Z copying torch/_dynamo/graph_break_registry.json -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-14T20:48:01.2845120Z copying torch/lib/libtorch_python.dylib -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib 2025-08-14T20:48:01.3482460Z copying torch/lib/libtorch.dylib -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib 2025-08-14T20:48:01.3492150Z copying torch/lib/libtorch_global_deps.dylib -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib 2025-08-14T20:48:01.3504230Z copying torch/lib/libtorch_cpu.dylib -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib 2025-08-14T20:48:02.6262020Z copying torch/lib/libc10.dylib -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib 2025-08-14T20:48:02.6434490Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged 2025-08-14T20:48:02.6434890Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-08-14T20:48:02.6435570Z copying torchgen/packaged/autograd/load_derivatives.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-08-14T20:48:02.6437200Z copying torchgen/packaged/autograd/build.bzl -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-08-14T20:48:02.6438600Z copying torchgen/packaged/autograd/gen_autograd.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-08-14T20:48:02.6440030Z copying torchgen/packaged/autograd/gen_python_functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-08-14T20:48:02.6441540Z copying torchgen/packaged/autograd/gen_autograd_functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-08-14T20:48:02.6443060Z copying torchgen/packaged/autograd/gen_variable_factories.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-08-14T20:48:02.6444270Z copying torchgen/packaged/autograd/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-08-14T20:48:02.6445330Z copying torchgen/packaged/autograd/gen_variable_type.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-08-14T20:48:02.6447090Z copying torchgen/packaged/autograd/README.md -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-08-14T20:48:02.6448290Z copying torchgen/packaged/autograd/context.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-08-14T20:48:02.6449590Z copying torchgen/packaged/autograd/gen_inplace_or_view_type.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-08-14T20:48:02.6451070Z copying torchgen/packaged/autograd/deprecated.yaml -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-08-14T20:48:02.6452190Z copying torchgen/packaged/autograd/BUILD.bazel -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-08-14T20:48:02.6453390Z copying torchgen/packaged/autograd/gen_trace_type.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-08-14T20:48:02.6454960Z copying torchgen/packaged/autograd/gen_annotated_fn_args.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-08-14T20:48:02.6456200Z copying torchgen/packaged/autograd/derivatives.yaml -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-08-14T20:48:02.6458690Z copying torchgen/packaged/autograd/gen_view_funcs.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-08-14T20:48:02.6459650Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-08-14T20:48:02.6460320Z copying torchgen/packaged/autograd/templates/python_return_types.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-08-14T20:48:02.6461580Z copying torchgen/packaged/autograd/templates/python_enum_tag.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-08-14T20:48:02.6462880Z copying torchgen/packaged/autograd/templates/python_nn_functions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-08-14T20:48:02.6464110Z copying torchgen/packaged/autograd/templates/python_functions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-08-14T20:48:02.6465290Z copying torchgen/packaged/autograd/templates/python_fft_functions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-08-14T20:48:02.6466670Z copying torchgen/packaged/autograd/templates/python_sparse_functions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-08-14T20:48:02.6467940Z copying torchgen/packaged/autograd/templates/python_linalg_functions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-08-14T20:48:02.6469210Z copying torchgen/packaged/autograd/templates/ViewFuncs.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-08-14T20:48:02.6470490Z copying torchgen/packaged/autograd/templates/python_return_types.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-08-14T20:48:02.6471760Z copying torchgen/packaged/autograd/templates/ADInplaceOrViewType.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-08-14T20:48:02.6473130Z copying torchgen/packaged/autograd/templates/TraceType.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-08-14T20:48:02.6474320Z copying torchgen/packaged/autograd/templates/python_variable_methods.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-08-14T20:48:02.6475950Z copying torchgen/packaged/autograd/templates/ViewFuncs.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-08-14T20:48:02.6477150Z copying torchgen/packaged/autograd/templates/python_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-08-14T20:48:02.6478550Z copying torchgen/packaged/autograd/templates/python_nested_functions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-08-14T20:48:02.6479720Z copying torchgen/packaged/autograd/templates/VariableType.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-08-14T20:48:02.6481150Z copying torchgen/packaged/autograd/templates/annotated_fn_args.py.in -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-08-14T20:48:02.6482320Z copying torchgen/packaged/autograd/templates/VariableType.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-08-14T20:48:02.6483680Z copying torchgen/packaged/autograd/templates/Functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-08-14T20:48:02.6484880Z copying torchgen/packaged/autograd/templates/python_special_functions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-08-14T20:48:02.6486270Z copying torchgen/packaged/autograd/templates/variable_factories.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-08-14T20:48:02.6487380Z copying torchgen/packaged/autograd/templates/python_torch_functions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-08-14T20:48:02.6488750Z copying torchgen/packaged/autograd/templates/Functions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-08-14T20:48:02.6489870Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen 2025-08-14T20:48:02.6490390Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/native 2025-08-14T20:48:02.6491050Z copying torchgen/packaged/ATen/native/native_functions.yaml -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/native 2025-08-14T20:48:02.6495390Z copying torchgen/packaged/ATen/native/tags.yaml -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/native 2025-08-14T20:48:02.6496380Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-14T20:48:02.6497090Z copying torchgen/packaged/ATen/templates/CompositeViewCopyKernels.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-14T20:48:02.6498270Z copying torchgen/packaged/ATen/templates/TensorBody.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-14T20:48:02.6499860Z copying torchgen/packaged/ATen/templates/UnboxingFunctions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-14T20:48:02.6501300Z copying torchgen/packaged/ATen/templates/DispatchKeyFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-14T20:48:02.6502670Z copying torchgen/packaged/ATen/templates/RedispatchFunctions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-14T20:48:02.6503900Z copying torchgen/packaged/ATen/templates/Operators.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-14T20:48:02.6505200Z copying torchgen/packaged/ATen/templates/NativeMetaFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-14T20:48:02.6506440Z copying torchgen/packaged/ATen/templates/NativeFunction.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-14T20:48:02.6507660Z copying torchgen/packaged/ATen/templates/Operator.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-14T20:48:02.6508990Z copying torchgen/packaged/ATen/templates/RegistrationDeclarations.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-14T20:48:02.6510090Z copying torchgen/packaged/ATen/templates/UfuncCPU.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-14T20:48:02.6511370Z copying torchgen/packaged/ATen/templates/UfuncCUDA.cu -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-14T20:48:02.6512710Z copying torchgen/packaged/ATen/templates/RegisterFunctionalization.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-14T20:48:02.6514130Z copying torchgen/packaged/ATen/templates/RegisterDispatchDefinitions.ini -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-14T20:48:02.6515300Z copying torchgen/packaged/ATen/templates/RedispatchFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-14T20:48:02.6516590Z copying torchgen/packaged/ATen/templates/aten_interned_strings.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-14T20:48:02.6517830Z copying torchgen/packaged/ATen/templates/MethodOperators.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-14T20:48:02.6519190Z copying torchgen/packaged/ATen/templates/RegisterCodegenUnboxedKernels.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-14T20:48:02.6520350Z copying torchgen/packaged/ATen/templates/Operators.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-14T20:48:02.6521630Z copying torchgen/packaged/ATen/templates/ATenOpList.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-14T20:48:02.6522840Z copying torchgen/packaged/ATen/templates/RegisterBackendSelect.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-14T20:48:02.6524130Z copying torchgen/packaged/ATen/templates/RegisterDispatchKey.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-14T20:48:02.6525290Z copying torchgen/packaged/ATen/templates/TensorMethods.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-14T20:48:02.6526660Z copying torchgen/packaged/ATen/templates/DispatchKeyNativeFunctions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-14T20:48:02.6527810Z copying torchgen/packaged/ATen/templates/DispatchKeyFunction.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-14T20:48:02.6529070Z copying torchgen/packaged/ATen/templates/UnboxingFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-14T20:48:02.6530590Z copying torchgen/packaged/ATen/templates/DispatchKeyNativeFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-14T20:48:02.6531940Z copying torchgen/packaged/ATen/templates/Functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-14T20:48:02.6533070Z copying torchgen/packaged/ATen/templates/NativeFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-14T20:48:02.6534370Z copying torchgen/packaged/ATen/templates/DispatchKeyFunctions_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-14T20:48:02.6535700Z copying torchgen/packaged/ATen/templates/UfuncCPUKernel.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-14T20:48:02.6536870Z copying torchgen/packaged/ATen/templates/enum_tag.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-14T20:48:02.6538120Z copying torchgen/packaged/ATen/templates/Functions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-14T20:48:02.6539360Z copying torchgen/packaged/ATen/templates/RegisterSchema.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-14T20:48:02.6540530Z copying torchgen/packaged/ATen/templates/LazyNonNativeIr.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-14T20:48:02.6541840Z copying torchgen/packaged/ATen/templates/Function.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-14T20:48:02.6543060Z copying torchgen/packaged/ATen/templates/FunctionalInverses.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-14T20:48:02.6544340Z copying torchgen/packaged/ATen/templates/NativeMetaFunction.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-14T20:48:02.6545490Z copying torchgen/packaged/ATen/templates/LazyIr.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-14T20:48:02.6546770Z copying torch/nn/parameter.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-08-14T20:48:02.6549180Z copying torch/nn/functional.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-08-14T20:48:02.6550810Z copying torch/utils/_config_typing.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-14T20:48:02.6553030Z copying torch/jit/_script.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-08-14T20:48:02.6554670Z copying torch/distributed/optim/zero_redundancy_optimizer.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-08-14T20:48:02.6556300Z copying torch/optim/_multi_tensor/__init__.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim/_multi_tensor 2025-08-14T20:48:02.6558030Z copying torch/utils/data/datapipes/datapipe.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes 2025-08-14T20:48:02.7624740Z running build_ext 2025-08-14T20:48:02.7643140Z -- Building with NumPy bindings 2025-08-14T20:48:02.7643350Z -- Not using cuDNN 2025-08-14T20:48:02.7643500Z -- Not using CUDA 2025-08-14T20:48:02.7643630Z -- Not using XPU 2025-08-14T20:48:02.7643750Z -- Not using MKLDNN 2025-08-14T20:48:02.7643880Z -- Not using NCCL 2025-08-14T20:48:02.7644020Z -- Building with distributed package: 2025-08-14T20:48:02.7644220Z -- USE_TENSORPIPE=False 2025-08-14T20:48:02.7644360Z -- USE_GLOO=False 2025-08-14T20:48:02.7644480Z -- USE_MPI=False 2025-08-14T20:48:02.7644610Z -- Not using ITT 2025-08-14T20:48:02.8478970Z 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-08-14T20:48:02.8479820Z 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-08-14T20:48:02.8533820Z building 'torch._C' extension 2025-08-14T20:48:02.8534290Z creating build/temp.macosx-14.0-arm64-cpython-312 2025-08-14T20:48:02.8534940Z creating build/temp.macosx-14.0-arm64-cpython-312/torch 2025-08-14T20:48:02.8535530Z creating build/temp.macosx-14.0-arm64-cpython-312/torch/csrc 2025-08-14T20:48:02.8537800Z 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-1755204260/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-08-14T20:48:03.0064440Z 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-08-14T20:48:03.1255820Z copying /opt/homebrew/opt/libomp/lib/libomp.dylib -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib 2025-08-14T20:48:03.7959520Z copying /opt/homebrew/opt/libomp/include/omp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-08-14T20:48:03.7994960Z /Users/ec2-user/runner/_work/_temp/venv-3.12-1755204260/lib/python3.12/site-packages/setuptools/_distutils/cmd.py:66: SetuptoolsDeprecationWarning: setup.py install is deprecated. 2025-08-14T20:48:03.7995520Z !! 2025-08-14T20:48:03.7995590Z 2025-08-14T20:48:03.7995670Z ******************************************************************************** 2025-08-14T20:48:03.7995900Z Please avoid running ``setup.py`` directly. 2025-08-14T20:48:03.7996140Z Instead, use pypa/build, pypa/installer or other 2025-08-14T20:48:03.7996440Z standards-based tools. 2025-08-14T20:48:03.7996560Z 2025-08-14T20:48:03.7996740Z See https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html for details. 2025-08-14T20:48:03.7997050Z ******************************************************************************** 2025-08-14T20:48:03.7997190Z 2025-08-14T20:48:03.7997230Z !! 2025-08-14T20:48:03.7997340Z self.initialize_options() 2025-08-14T20:48:03.8020450Z installing to build/bdist.macosx-14.0-arm64/wheel 2025-08-14T20:48:03.8020670Z running install 2025-08-14T20:48:03.8059570Z running install_lib 2025-08-14T20:48:03.8086530Z creating build/bdist.macosx-14.0-arm64 2025-08-14T20:48:03.8086840Z creating build/bdist.macosx-14.0-arm64/wheel 2025-08-14T20:48:03.8088300Z creating build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-14T20:48:03.8089320Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-08-14T20:48:03.8090080Z 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-08-14T20:48:03.8091520Z 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-08-14T20:48:03.8092680Z 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-08-14T20:48:03.8093910Z 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-08-14T20:48:03.8095230Z 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-08-14T20:48:03.8096530Z 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-08-14T20:48:03.8097790Z 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-08-14T20:48:03.8099060Z 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-08-14T20:48:03.8100220Z 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-08-14T20:48:03.8101430Z 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-08-14T20:48:03.8102470Z 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-08-14T20:48:03.8103600Z 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-08-14T20:48:03.8104830Z 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-08-14T20:48:03.8105960Z 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-08-14T20:48:03.8107110Z 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-08-14T20:48:03.8108440Z 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-08-14T20:48:03.8109560Z 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-08-14T20:48:03.8110680Z 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-08-14T20:48:03.8112080Z 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-08-14T20:48:03.8113220Z 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-08-14T20:48:03.8114480Z 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-08-14T20:48:03.8115950Z 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-08-14T20:48:03.8117640Z 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-08-14T20:48:03.8118770Z 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-08-14T20:48:03.8119980Z 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-08-14T20:48:03.8121370Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_prims 2025-08-14T20:48:03.8122030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_prims/debug_prims.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_prims 2025-08-14T20:48:03.8123200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_prims/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_prims 2025-08-14T20:48:03.8124750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_prims/context.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_prims 2025-08-14T20:48:03.8125800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_prims/rng_prims.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_prims 2025-08-14T20:48:03.8127020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_prims/executor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_prims 2025-08-14T20:48:03.8128300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_storage_docs.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-14T20:48:03.8129930Z creating build/bdist.macosx-14.0-arm64/wheel/torch/csrc 2025-08-14T20:48:03.8130610Z creating build/bdist.macosx-14.0-arm64/wheel/torch/csrc/inductor 2025-08-14T20:48:03.8131520Z creating build/bdist.macosx-14.0-arm64/wheel/torch/csrc/inductor/aoti_runtime 2025-08-14T20:48:03.8132320Z 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-08-14T20:48:03.8133650Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_logging 2025-08-14T20:48:03.8134340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_logging/_internal.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_logging 2025-08-14T20:48:03.8135850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_logging/scribe.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_logging 2025-08-14T20:48:03.8137040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_logging/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_logging 2025-08-14T20:48:03.8138240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_logging/_registrations.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_logging 2025-08-14T20:48:03.8139440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_logging/structured.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_logging 2025-08-14T20:48:03.8141020Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-08-14T20:48:03.8141680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/partitioners.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-08-14T20:48:03.8143710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/compile_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-08-14T20:48:03.8144900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/config.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-08-14T20:48:03.8146130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/autograd_function.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-08-14T20:48:03.8147740Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_activation_checkpointing 2025-08-14T20:48:03.8148520Z 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-08-14T20:48:03.8150910Z 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-08-14T20:48:03.8152430Z 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-08-14T20:48:03.8153810Z 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-08-14T20:48:03.8155000Z 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-08-14T20:48:03.8156120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/python_key.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-08-14T20:48:03.8157380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/pytree_hacks.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-08-14T20:48:03.8158520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/pyfunctorch.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-08-14T20:48:03.8159690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/deprecated.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-08-14T20:48:03.8160960Z 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-08-14T20:48:03.8162310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-08-14T20:48:03.8163500Z 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-08-14T20:48:03.8164620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/fx_minifier.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-08-14T20:48:03.8166450Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_aot_autograd 2025-08-14T20:48:03.8167180Z 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-08-14T20:48:03.8168600Z 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-08-14T20:48:03.8170390Z 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-08-14T20:48:03.8171470Z 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-08-14T20:48:03.8172730Z 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-08-14T20:48:03.8174170Z 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-08-14T20:48:03.8175520Z 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-08-14T20:48:03.8176920Z 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-08-14T20:48:03.8178280Z 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-08-14T20:48:03.8179610Z 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-08-14T20:48:03.8180770Z 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-08-14T20:48:03.8182110Z 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-08-14T20:48:03.8183160Z 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-08-14T20:48:03.8184470Z 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-08-14T20:48:03.8186020Z 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-08-14T20:48:03.8187300Z 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-08-14T20:48:03.8188400Z 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-08-14T20:48:03.8189590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/apis.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-08-14T20:48:03.8190720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-08-14T20:48:03.8191800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/aot_autograd.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-08-14T20:48:03.8193380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/compilers.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-08-14T20:48:03.8194530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/eager_transforms.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-08-14T20:48:03.8196040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/vmap.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-08-14T20:48:03.8197320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/benchmark_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-08-14T20:48:03.8198400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/make_functional.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-08-14T20:48:03.8199680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/functional_call.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-08-14T20:48:03.8201270Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-08-14T20:48:03.8201940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_reductions_impl.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-08-14T20:48:03.8203150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_getlimits.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-08-14T20:48:03.8204290Z 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-08-14T20:48:03.8205380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_casting_dicts.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-08-14T20:48:03.8206680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-08-14T20:48:03.8207890Z 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-08-14T20:48:03.8209010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/random.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-08-14T20:48:03.8210330Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_numpy/testing 2025-08-14T20:48:03.8211010Z 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-08-14T20:48:03.8212230Z 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-08-14T20:48:03.8214100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_dtypes.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-08-14T20:48:03.8215290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/linalg.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-08-14T20:48:03.8216530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_ndarray.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-08-14T20:48:03.8217980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_ufuncs.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-08-14T20:48:03.8219200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_util.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-08-14T20:48:03.8220610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_normalizations.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-08-14T20:48:03.8221980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_dtypes_impl.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-08-14T20:48:03.8223170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/fft.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-08-14T20:48:03.8224480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_funcs_impl.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-08-14T20:48:03.8226160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_funcs.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-08-14T20:48:03.8227800Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_export 2025-08-14T20:48:03.8228570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/error.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export 2025-08-14T20:48:03.8229830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/tools.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export 2025-08-14T20:48:03.8231370Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_export/pass_infra 2025-08-14T20:48:03.8232060Z 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-08-14T20:48:03.8232960Z 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-08-14T20:48:03.8239290Z 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-08-14T20:48:03.8239850Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_export/passes 2025-08-14T20:48:03.8240400Z 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-08-14T20:48:03.8241270Z 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-08-14T20:48:03.8242120Z 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-08-14T20:48:03.8242920Z 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-08-14T20:48:03.8243730Z 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-08-14T20:48:03.8244460Z 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-08-14T20:48:03.8245160Z 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-08-14T20:48:03.8245900Z 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-08-14T20:48:03.8246630Z 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-08-14T20:48:03.8247420Z 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-08-14T20:48:03.8248300Z 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-08-14T20:48:03.8249110Z 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-08-14T20:48:03.8250440Z 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-08-14T20:48:03.8251260Z 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-08-14T20:48:03.8252290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/converter.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export 2025-08-14T20:48:03.8253840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export 2025-08-14T20:48:03.8254910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/pass_base.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export 2025-08-14T20:48:03.8256160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export 2025-08-14T20:48:03.8257500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/wrappers.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export 2025-08-14T20:48:03.8258930Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_export/db 2025-08-14T20:48:03.8259610Z 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-08-14T20:48:03.8260680Z 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-08-14T20:48:03.8261780Z 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-08-14T20:48:03.8263280Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-08-14T20:48:03.8263970Z 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-08-14T20:48:03.8265120Z 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-08-14T20:48:03.8266270Z 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-08-14T20:48:03.8267360Z 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-08-14T20:48:03.8268530Z 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-08-14T20:48:03.8269640Z 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-08-14T20:48:03.8270760Z 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-08-14T20:48:03.8271890Z 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-08-14T20:48:03.8272970Z 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-08-14T20:48:03.8274060Z 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-08-14T20:48:03.8275210Z 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-08-14T20:48:03.8276360Z 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-08-14T20:48:03.8277590Z 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-08-14T20:48:03.8278530Z 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-08-14T20:48:03.8279590Z 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-08-14T20:48:03.8280760Z 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-08-14T20:48:03.8281910Z 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-08-14T20:48:03.8283070Z 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-08-14T20:48:03.8284220Z 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-08-14T20:48:03.8285320Z 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-08-14T20:48:03.8286390Z 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-08-14T20:48:03.8287550Z 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-08-14T20:48:03.8288600Z 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-08-14T20:48:03.8289670Z 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-08-14T20:48:03.8290840Z 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-08-14T20:48:03.8292040Z 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-08-14T20:48:03.8293140Z 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-08-14T20:48:03.8294550Z 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-08-14T20:48:03.8295350Z 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-08-14T20:48:03.8296400Z 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-08-14T20:48:03.8297490Z 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-08-14T20:48:03.8298600Z 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-08-14T20:48:03.8299690Z 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-08-14T20:48:03.8300880Z 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-08-14T20:48:03.8302100Z 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-08-14T20:48:03.8303160Z 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-08-14T20:48:03.8304240Z 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-08-14T20:48:03.8305360Z 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-08-14T20:48:03.8306420Z 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-08-14T20:48:03.8308110Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_export/serde 2025-08-14T20:48:03.8308750Z 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-08-14T20:48:03.8310670Z 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-08-14T20:48:03.8311510Z 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-08-14T20:48:03.8312740Z 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-08-14T20:48:03.8313850Z 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-08-14T20:48:03.8314990Z 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-08-14T20:48:03.8316070Z 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-08-14T20:48:03.8317250Z 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-08-14T20:48:03.8318330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/verifier.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export 2025-08-14T20:48:03.8319840Z creating build/bdist.macosx-14.0-arm64/wheel/torch/monitor 2025-08-14T20:48:03.8320490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/monitor/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/monitor 2025-08-14T20:48:03.8321880Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_dispatch 2025-08-14T20:48:03.8322480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dispatch/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dispatch 2025-08-14T20:48:03.8323360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dispatch/python.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dispatch 2025-08-14T20:48:03.8324690Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_subclasses 2025-08-14T20:48:03.8325390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses/functional_tensor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_subclasses 2025-08-14T20:48:03.8326700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses/meta_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_subclasses 2025-08-14T20:48:03.8328320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_subclasses 2025-08-14T20:48:03.8329450Z 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-08-14T20:48:03.8330540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses/fake_impls.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_subclasses 2025-08-14T20:48:03.8331920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses/fake_tensor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_subclasses 2025-08-14T20:48:03.8333660Z 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-08-14T20:48:03.8334750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses/fake_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_subclasses 2025-08-14T20:48:03.8335830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_meta_registrations.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-14T20:48:03.8338610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/version.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-14T20:48:03.8339530Z creating build/bdist.macosx-14.0-arm64/wheel/torch/futures 2025-08-14T20:48:03.8340170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/futures/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/futures 2025-08-14T20:48:03.8341290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/library.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-14T20:48:03.8343050Z creating build/bdist.macosx-14.0-arm64/wheel/torch/linalg 2025-08-14T20:48:03.8343680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/linalg/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/linalg 2025-08-14T20:48:03.8345390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_jit_internal.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-14T20:48:03.8347020Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_custom_op 2025-08-14T20:48:03.8347650Z 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-08-14T20:48:03.8348540Z 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-08-14T20:48:03.8349690Z 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-08-14T20:48:03.8351190Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn 2025-08-14T20:48:03.8352090Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/attention 2025-08-14T20:48:03.8352830Z 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-08-14T20:48:03.8354190Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/attention/experimental 2025-08-14T20:48:03.8354980Z 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-08-14T20:48:03.8356150Z 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-08-14T20:48:03.8357200Z 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-08-14T20:48:03.8358320Z 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-08-14T20:48:03.8360130Z 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-08-14T20:48:03.8361140Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/parallel 2025-08-14T20:48:03.8361860Z 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-08-14T20:48:03.8362950Z 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-08-14T20:48:03.8364100Z 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-08-14T20:48:03.8365270Z 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-08-14T20:48:03.8366270Z 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-08-14T20:48:03.8367390Z 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-08-14T20:48:03.8368450Z 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-08-14T20:48:03.8369600Z 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-08-14T20:48:03.8371390Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/qat 2025-08-14T20:48:03.8372230Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/qat/dynamic 2025-08-14T20:48:03.8372900Z 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-08-14T20:48:03.8374580Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/qat/dynamic/modules 2025-08-14T20:48:03.8375170Z 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-08-14T20:48:03.8376000Z 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-08-14T20:48:03.8377010Z 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-08-14T20:48:03.8378400Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/qat/modules 2025-08-14T20:48:03.8379050Z 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-08-14T20:48:03.8380130Z 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-08-14T20:48:03.8381210Z 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-08-14T20:48:03.8382290Z 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-08-14T20:48:03.8383360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/common_types.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn 2025-08-14T20:48:03.8384660Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized 2025-08-14T20:48:03.8385520Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/_reference 2025-08-14T20:48:03.8386220Z 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-08-14T20:48:03.8387610Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/_reference/modules 2025-08-14T20:48:03.8388300Z 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-08-14T20:48:03.8389520Z 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-08-14T20:48:03.8390630Z 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-08-14T20:48:03.8391690Z 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-08-14T20:48:03.8392910Z 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-08-14T20:48:03.8393960Z 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-08-14T20:48:03.8395220Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/dynamic 2025-08-14T20:48:03.8395910Z 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-08-14T20:48:03.8397170Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/dynamic/modules 2025-08-14T20:48:03.8397910Z 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-08-14T20:48:03.8399000Z 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-08-14T20:48:03.8400060Z 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-08-14T20:48:03.8401160Z 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-08-14T20:48:03.8402210Z 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-08-14T20:48:03.8403390Z 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-08-14T20:48:03.8404770Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/modules 2025-08-14T20:48:03.8405460Z 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-08-14T20:48:03.8406650Z 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-08-14T20:48:03.8407720Z 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-08-14T20:48:03.8408920Z 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-08-14T20:48:03.8409910Z 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-08-14T20:48:03.8410950Z 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-08-14T20:48:03.8412090Z 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-08-14T20:48:03.8413170Z 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-08-14T20:48:03.8414350Z 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-08-14T20:48:03.8415460Z 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-08-14T20:48:03.8416660Z 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-08-14T20:48:03.8418140Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/backends 2025-08-14T20:48:03.8418860Z 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-08-14T20:48:03.8420070Z 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-08-14T20:48:03.8420920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parameter.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/nn 2025-08-14T20:48:03.8421940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn 2025-08-14T20:48:03.8423010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/_reduction.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn 2025-08-14T20:48:03.8424430Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils 2025-08-14T20:48:03.8425100Z 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-08-14T20:48:03.8426250Z 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-08-14T20:48:03.8427350Z 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-08-14T20:48:03.8428440Z 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-08-14T20:48:03.8429560Z 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-08-14T20:48:03.8430890Z 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-08-14T20:48:03.8432010Z 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-08-14T20:48:03.8433090Z 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-08-14T20:48:03.8434210Z 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-08-14T20:48:03.8435250Z 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-08-14T20:48:03.8436350Z 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-08-14T20:48:03.8437820Z 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-08-14T20:48:03.8438960Z 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-08-14T20:48:03.8440160Z 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-08-14T20:48:03.8441210Z 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-08-14T20:48:03.8442760Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils/_expanded_weights 2025-08-14T20:48:03.8444030Z 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-08-14T20:48:03.8445910Z 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-08-14T20:48:03.8447100Z 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-08-14T20:48:03.8448330Z 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-08-14T20:48:03.8449580Z 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-08-14T20:48:03.8450870Z 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-08-14T20:48:03.8452090Z 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-08-14T20:48:03.8453370Z 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-08-14T20:48:03.8454520Z 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-08-14T20:48:03.8455700Z 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-08-14T20:48:03.8456940Z 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-08-14T20:48:03.8458440Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantizable 2025-08-14T20:48:03.8459130Z 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-08-14T20:48:03.8460560Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantizable/modules 2025-08-14T20:48:03.8461290Z 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-08-14T20:48:03.8462540Z 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-08-14T20:48:03.8463650Z 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-08-14T20:48:03.8464680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/cpp.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn 2025-08-14T20:48:03.8466090Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic 2025-08-14T20:48:03.8466920Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/qat 2025-08-14T20:48:03.8467600Z 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-08-14T20:48:03.8468990Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/qat/modules 2025-08-14T20:48:03.8469720Z 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-08-14T20:48:03.8470930Z 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-08-14T20:48:03.8472110Z 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-08-14T20:48:03.8473290Z 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-08-14T20:48:03.8474430Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/quantized 2025-08-14T20:48:03.8475360Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/quantized/dynamic 2025-08-14T20:48:03.8476080Z 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-08-14T20:48:03.8477460Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/quantized/dynamic/modules 2025-08-14T20:48:03.8478180Z 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-08-14T20:48:03.8479370Z 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-08-14T20:48:03.8480440Z 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-08-14T20:48:03.8481840Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/quantized/modules 2025-08-14T20:48:03.8482480Z 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-08-14T20:48:03.8483550Z 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-08-14T20:48:03.8484760Z 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-08-14T20:48:03.8485940Z 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-08-14T20:48:03.8486960Z 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-08-14T20:48:03.8488370Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/modules 2025-08-14T20:48:03.8489150Z 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-08-14T20:48:03.8490340Z 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-08-14T20:48:03.8491460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/functional.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn 2025-08-14T20:48:03.8494240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/init.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn 2025-08-14T20:48:03.8495100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/functional.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/nn 2025-08-14T20:48:03.8496280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/grad.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn 2025-08-14T20:48:03.8497920Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-08-14T20:48:03.8498570Z 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-08-14T20:48:03.8499720Z 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-08-14T20:48:03.8500830Z 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-08-14T20:48:03.8502300Z 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-08-14T20:48:03.8503480Z 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-08-14T20:48:03.8504840Z 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-08-14T20:48:03.8505910Z 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-08-14T20:48:03.8507120Z 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-08-14T20:48:03.8508570Z 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-08-14T20:48:03.8509710Z 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-08-14T20:48:03.8510870Z 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-08-14T20:48:03.8512260Z 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-08-14T20:48:03.8513310Z 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-08-14T20:48:03.8514590Z 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-08-14T20:48:03.8516600Z 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-08-14T20:48:03.8517910Z 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-08-14T20:48:03.8518960Z 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-08-14T20:48:03.8520480Z 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-08-14T20:48:03.8521920Z 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-08-14T20:48:03.8524520Z 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-08-14T20:48:03.8525500Z 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-08-14T20:48:03.8527010Z 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-08-14T20:48:03.8528180Z 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-08-14T20:48:03.8529220Z 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-08-14T20:48:03.8530800Z 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-08-14T20:48:03.8532470Z 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-08-14T20:48:03.8533720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parameter.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn 2025-08-14T20:48:03.8535010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_thread_safe_fork.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-14T20:48:03.8536350Z creating build/bdist.macosx-14.0-arm64/wheel/torch/mps 2025-08-14T20:48:03.8537090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/mps/event.py -> build/bdist.macosx-14.0-arm64/wheel/torch/mps 2025-08-14T20:48:03.8538350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/mps/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/mps 2025-08-14T20:48:03.8539540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/mps/profiler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/mps 2025-08-14T20:48:03.8540640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_custom_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-14T20:48:03.8542350Z creating build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-08-14T20:48:03.8542790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_type_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-08-14T20:48:03.8544050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_constants.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-08-14T20:48:03.8545540Z creating build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal 2025-08-14T20:48:03.8546180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/registration.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal 2025-08-14T20:48:03.8547520Z creating build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/fx 2025-08-14T20:48:03.8548400Z creating build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/fx/passes 2025-08-14T20:48:03.8549060Z 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-08-14T20:48:03.8550540Z 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-08-14T20:48:03.8552270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx/passes/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/fx/passes 2025-08-14T20:48:03.8553570Z 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-08-14T20:48:03.8554680Z 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-08-14T20:48:03.8555750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx/patcher.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/fx 2025-08-14T20:48:03.8556810Z 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-08-14T20:48:03.8557990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx/serialization.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/fx 2025-08-14T20:48:03.8559140Z 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-08-14T20:48:03.8565870Z 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-08-14T20:48:03.8566680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/_exporter_legacy.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal 2025-08-14T20:48:03.8567250Z creating build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-08-14T20:48:03.8567840Z 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-08-14T20:48:03.8568630Z 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-08-14T20:48:03.8569410Z 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-08-14T20:48:03.8570220Z 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-08-14T20:48:03.8571020Z 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-08-14T20:48:03.8571840Z 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-08-14T20:48:03.8572660Z 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-08-14T20:48:03.8573450Z 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-08-14T20:48:03.8574220Z 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-08-14T20:48:03.8574990Z 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-08-14T20:48:03.8575840Z 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-08-14T20:48:03.8577590Z creating build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter/_torchlib 2025-08-14T20:48:03.8578400Z 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-08-14T20:48:03.8579630Z 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-08-14T20:48:03.8580930Z creating build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter/_torchlib/ops 2025-08-14T20:48:03.8581760Z 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-08-14T20:48:03.8583080Z 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-08-14T20:48:03.8584270Z 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-08-14T20:48:03.8585390Z 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-08-14T20:48:03.8586560Z 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-08-14T20:48:03.8587720Z 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-08-14T20:48:03.8588900Z 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-08-14T20:48:03.8590100Z 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-08-14T20:48:03.8591480Z 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-08-14T20:48:03.8592620Z 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-08-14T20:48:03.8593990Z 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-08-14T20:48:03.8595660Z 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-08-14T20:48:03.8596820Z 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-08-14T20:48:03.8598000Z 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-08-14T20:48:03.8599110Z 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-08-14T20:48:03.8600290Z 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-08-14T20:48:03.8601470Z 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-08-14T20:48:03.8602580Z 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-08-14T20:48:03.8603660Z 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-08-14T20:48:03.8604840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/onnx_proto_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal 2025-08-14T20:48:03.8606030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/jit_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal 2025-08-14T20:48:03.8607230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset15.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-08-14T20:48:03.8608360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_onnx_supported_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-08-14T20:48:03.8609450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset7.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-08-14T20:48:03.8610700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset11.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-08-14T20:48:03.8612410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/verification.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-08-14T20:48:03.8614040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_flags.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-08-14T20:48:03.8615280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset10.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-08-14T20:48:03.8616770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset20.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-08-14T20:48:03.8618040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset14.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-08-14T20:48:03.8619340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_globals.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-08-14T20:48:03.8620600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_helper.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-08-14T20:48:03.8622450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset9.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-08-14T20:48:03.8624990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-08-14T20:48:03.8626310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset8.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-08-14T20:48:03.8627040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset19.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-08-14T20:48:03.8628130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-08-14T20:48:03.8629790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_experimental.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-08-14T20:48:03.8630760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset18.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-08-14T20:48:03.8632100Z creating build/bdist.macosx-14.0-arm64/wheel/torch/onnx/ops 2025-08-14T20:48:03.8632790Z 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-08-14T20:48:03.8633880Z 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-08-14T20:48:03.8635090Z 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-08-14T20:48:03.8636260Z 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-08-14T20:48:03.8637550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/errors.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-08-14T20:48:03.8638760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset13.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-08-14T20:48:03.8639990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/operators.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-08-14T20:48:03.8641300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset17.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-08-14T20:48:03.8642410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset16.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-08-14T20:48:03.8643520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset12.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-08-14T20:48:03.8644970Z creating build/bdist.macosx-14.0-arm64/wheel/torch/bin 2025-08-14T20:48:03.8645630Z 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-08-14T20:48:03.8709950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/bin/torch_shm_manager -> build/bdist.macosx-14.0-arm64/wheel/torch/bin 2025-08-14T20:48:03.8711440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/bin/protoc -> build/bdist.macosx-14.0-arm64/wheel/torch/bin 2025-08-14T20:48:03.8768260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/return_types.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-14T20:48:03.8769480Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_vendor 2025-08-14T20:48:03.8770490Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_vendor/packaging 2025-08-14T20:48:03.8771170Z 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-08-14T20:48:03.8772360Z 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-08-14T20:48:03.8773640Z 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-08-14T20:48:03.8774670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_vendor/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_vendor 2025-08-14T20:48:03.8775760Z creating build/bdist.macosx-14.0-arm64/wheel/torch/cpu 2025-08-14T20:48:03.8776460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cpu/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cpu 2025-08-14T20:48:03.8777870Z creating build/bdist.macosx-14.0-arm64/wheel/torch/cpu/amp 2025-08-14T20:48:03.8778520Z 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-08-14T20:48:03.8779700Z 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-08-14T20:48:03.8780820Z 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-08-14T20:48:03.8782370Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-08-14T20:48:03.8783230Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_tensor 2025-08-14T20:48:03.8783910Z 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-08-14T20:48:03.8784980Z 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-08-14T20:48:03.8786210Z 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-08-14T20:48:03.8787630Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_sharding_spec 2025-08-14T20:48:03.8788290Z 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-08-14T20:48:03.8789350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable_state.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-08-14T20:48:03.8790510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/logging_handlers.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-08-14T20:48:03.8791750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rendezvous.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-08-14T20:48:03.8792930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/run.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-08-14T20:48:03.8794270Z 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-08-14T20:48:03.8795780Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/launcher 2025-08-14T20:48:03.8796490Z 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-08-14T20:48:03.8797620Z 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-08-14T20:48:03.8799090Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-08-14T20:48:03.8799830Z 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-08-14T20:48:03.8800960Z 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-08-14T20:48:03.8802120Z 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-08-14T20:48:03.8803260Z 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-08-14T20:48:03.8804430Z 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-08-14T20:48:03.8805710Z 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-08-14T20:48:03.8806820Z 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-08-14T20:48:03.8808290Z 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-08-14T20:48:03.8809520Z 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-08-14T20:48:03.8810610Z 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-08-14T20:48:03.8812000Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint/_experimental 2025-08-14T20:48:03.8812690Z 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-08-14T20:48:03.8813860Z 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-08-14T20:48:03.8815000Z 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-08-14T20:48:03.8816090Z 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-08-14T20:48:03.8817200Z 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-08-14T20:48:03.8818350Z 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-08-14T20:48:03.8819520Z 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-08-14T20:48:03.8820690Z 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-08-14T20:48:03.8821840Z 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-08-14T20:48:03.8823020Z 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-08-14T20:48:03.8824150Z 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-08-14T20:48:03.8825360Z 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-08-14T20:48:03.8826780Z 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-08-14T20:48:03.8828090Z 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-08-14T20:48:03.8829160Z 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-08-14T20:48:03.8830570Z 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-08-14T20:48:03.8831780Z 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-08-14T20:48:03.8832990Z 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-08-14T20:48:03.8834070Z 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-08-14T20:48:03.8835140Z 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-08-14T20:48:03.8836350Z 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-08-14T20:48:03.8837370Z 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-08-14T20:48:03.8838580Z 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-08-14T20:48:03.8839730Z 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-08-14T20:48:03.8840870Z 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-08-14T20:48:03.8841940Z 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-08-14T20:48:03.8843200Z 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-08-14T20:48:03.8844360Z 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-08-14T20:48:03.8845480Z 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-08-14T20:48:03.8846750Z 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-08-14T20:48:03.8847950Z 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-08-14T20:48:03.8849040Z 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-08-14T20:48:03.8850290Z 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-08-14T20:48:03.8851380Z 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-08-14T20:48:03.8852440Z 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-08-14T20:48:03.8853540Z 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-08-14T20:48:03.8854830Z 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-08-14T20:48:03.8855920Z 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-08-14T20:48:03.8857130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_serialization.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-08-14T20:48:03.8858430Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_sharded_tensor 2025-08-14T20:48:03.8859190Z 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-08-14T20:48:03.8860770Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/nn 2025-08-14T20:48:03.8861300Z 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-08-14T20:48:03.8862950Z 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-08-14T20:48:03.8864540Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/nn/jit 2025-08-14T20:48:03.8865280Z 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-08-14T20:48:03.8866370Z 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-08-14T20:48:03.8867470Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/nn/jit/templates 2025-08-14T20:48:03.8868160Z 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-08-14T20:48:03.8869130Z 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-08-14T20:48:03.8870280Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/nn/api 2025-08-14T20:48:03.8871000Z 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-08-14T20:48:03.8872300Z 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-08-14T20:48:03.8873350Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic 2025-08-14T20:48:03.8874230Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/metrics 2025-08-14T20:48:03.8875050Z 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-08-14T20:48:03.8876330Z 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-08-14T20:48:03.8877910Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/rendezvous 2025-08-14T20:48:03.8878610Z 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-08-14T20:48:03.8879860Z 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-08-14T20:48:03.8881000Z 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-08-14T20:48:03.8882150Z 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-08-14T20:48:03.8883320Z 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-08-14T20:48:03.8884760Z 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-08-14T20:48:03.8885790Z 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-08-14T20:48:03.8887020Z 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-08-14T20:48:03.8888830Z 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-08-14T20:48:03.8890210Z 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-08-14T20:48:03.8891810Z 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-08-14T20:48:03.8892880Z 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-08-14T20:48:03.8894360Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/multiprocessing 2025-08-14T20:48:03.8895350Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/multiprocessing/subprocess_handler 2025-08-14T20:48:03.8896310Z 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-08-14T20:48:03.8898450Z 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-08-14T20:48:03.8899630Z 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-08-14T20:48:03.8900730Z 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-08-14T20:48:03.8901900Z 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-08-14T20:48:03.8903060Z 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-08-14T20:48:03.8904530Z 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-08-14T20:48:03.8905820Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/multiprocessing/errors 2025-08-14T20:48:03.8906590Z 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-08-14T20:48:03.8907820Z 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-08-14T20:48:03.8909150Z 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-08-14T20:48:03.8910520Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/timer 2025-08-14T20:48:03.8911240Z 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-08-14T20:48:03.8912350Z 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-08-14T20:48:03.8913480Z 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-08-14T20:48:03.8914580Z 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-08-14T20:48:03.8915980Z 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-08-14T20:48:03.8917520Z 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-08-14T20:48:03.8918600Z 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-08-14T20:48:03.8920000Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/utils 2025-08-14T20:48:03.8920750Z 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-08-14T20:48:03.8921860Z 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-08-14T20:48:03.8922910Z 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-08-14T20:48:03.8924210Z 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-08-14T20:48:03.8925390Z 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-08-14T20:48:03.8926560Z 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-08-14T20:48:03.8927770Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/utils/data 2025-08-14T20:48:03.8928580Z 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-08-14T20:48:03.8929700Z 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-08-14T20:48:03.8931060Z 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-08-14T20:48:03.8932440Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/agent 2025-08-14T20:48:03.8933150Z 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-08-14T20:48:03.8934170Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/agent/server 2025-08-14T20:48:03.8934930Z 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-08-14T20:48:03.8936090Z 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-08-14T20:48:03.8937270Z 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-08-14T20:48:03.8938840Z 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-08-14T20:48:03.8940240Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/events 2025-08-14T20:48:03.8940960Z 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-08-14T20:48:03.8942100Z 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-08-14T20:48:03.8943240Z 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-08-14T20:48:03.8944600Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/autograd 2025-08-14T20:48:03.8945230Z 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-08-14T20:48:03.8946330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/distributed_c10d.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-08-14T20:48:03.8949270Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/pipelining 2025-08-14T20:48:03.8949890Z 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-08-14T20:48:03.8951540Z 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-08-14T20:48:03.8952770Z 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-08-14T20:48:03.8953940Z 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-08-14T20:48:03.8955070Z 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-08-14T20:48:03.8956130Z 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-08-14T20:48:03.8957520Z 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-08-14T20:48:03.8958760Z 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-08-14T20:48:03.8960320Z 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-08-14T20:48:03.8962130Z 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-08-14T20:48:03.8963210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/argparse_util.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-08-14T20:48:03.8964430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_checkpointable.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-08-14T20:48:03.8965600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/constants.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-08-14T20:48:03.8966790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/c10d_logger.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-08-14T20:48:03.8968090Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms 2025-08-14T20:48:03.8968970Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/_comm_hooks 2025-08-14T20:48:03.8969690Z 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-08-14T20:48:03.8970880Z 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-08-14T20:48:03.8972390Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/_checkpoint 2025-08-14T20:48:03.8973200Z 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-08-14T20:48:03.8974390Z 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-08-14T20:48:03.8975440Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/model_averaging 2025-08-14T20:48:03.8976160Z 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-08-14T20:48:03.8977170Z 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-08-14T20:48:03.8978270Z 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-08-14T20:48:03.8979650Z 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-08-14T20:48:03.8981880Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/ddp_comm_hooks 2025-08-14T20:48:03.8982880Z 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-08-14T20:48:03.8984210Z 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-08-14T20:48:03.8985330Z 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-08-14T20:48:03.8986460Z 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-08-14T20:48:03.8987700Z 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-08-14T20:48:03.8989130Z 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-08-14T20:48:03.8990560Z 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-08-14T20:48:03.8991670Z 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-08-14T20:48:03.8992840Z 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-08-14T20:48:03.8994190Z 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-08-14T20:48:03.8995280Z 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-08-14T20:48:03.8996730Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/_optimizer_overlap 2025-08-14T20:48:03.8997680Z 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-08-14T20:48:03.8998780Z 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-08-14T20:48:03.9000230Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/_quantization 2025-08-14T20:48:03.9000960Z 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-08-14T20:48:03.9001960Z 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-08-14T20:48:03.9003110Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/optim 2025-08-14T20:48:03.9003990Z 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-08-14T20:48:03.9005230Z 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-08-14T20:48:03.9006540Z 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-08-14T20:48:03.9007580Z 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-08-14T20:48:03.9008730Z 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-08-14T20:48:03.9009890Z 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-08-14T20:48:03.9011000Z 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-08-14T20:48:03.9018050Z 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-08-14T20:48:03.9018920Z 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-08-14T20:48:03.9019670Z 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-08-14T20:48:03.9020410Z 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-08-14T20:48:03.9021260Z 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-08-14T20:48:03.9022050Z 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-08-14T20:48:03.9022840Z 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-08-14T20:48:03.9023650Z 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-08-14T20:48:03.9024460Z 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-08-14T20:48:03.9025280Z 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-08-14T20:48:03.9026000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-08-14T20:48:03.9026660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_dist2.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-08-14T20:48:03.9027160Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_composable 2025-08-14T20:48:03.9027750Z 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-08-14T20:48:03.9028560Z 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-08-14T20:48:03.9029430Z 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-08-14T20:48:03.9030700Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_composable/fsdp 2025-08-14T20:48:03.9031370Z 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-08-14T20:48:03.9032490Z 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-08-14T20:48:03.9033540Z 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-08-14T20:48:03.9034730Z 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-08-14T20:48:03.9036060Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_tools 2025-08-14T20:48:03.9036780Z 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-08-14T20:48:03.9038120Z 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-08-14T20:48:03.9039260Z 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-08-14T20:48:03.9040520Z 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-08-14T20:48:03.9041770Z 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-08-14T20:48:03.9043150Z 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-08-14T20:48:03.9044200Z 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-08-14T20:48:03.9045310Z 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-08-14T20:48:03.9046400Z 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-08-14T20:48:03.9047540Z 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-08-14T20:48:03.9048610Z 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-08-14T20:48:03.9049970Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-08-14T20:48:03.9050660Z 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-08-14T20:48:03.9051830Z 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-08-14T20:48:03.9052970Z 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-08-14T20:48:03.9054130Z 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-08-14T20:48:03.9055790Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp/_fully_shard 2025-08-14T20:48:03.9056500Z 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-08-14T20:48:03.9057640Z 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-08-14T20:48:03.9058800Z 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-08-14T20:48:03.9060220Z 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-08-14T20:48:03.9061290Z 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-08-14T20:48:03.9062710Z 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-08-14T20:48:03.9063830Z 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-08-14T20:48:03.9065220Z 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-08-14T20:48:03.9066470Z 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-08-14T20:48:03.9067740Z 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-08-14T20:48:03.9069440Z 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-08-14T20:48:03.9070680Z 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-08-14T20:48:03.9072320Z 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-08-14T20:48:03.9073300Z 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-08-14T20:48:03.9074560Z 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-08-14T20:48:03.9075630Z 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-08-14T20:48:03.9076940Z 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-08-14T20:48:03.9078070Z 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-08-14T20:48:03.9079130Z 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-08-14T20:48:03.9080250Z 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-08-14T20:48:03.9081390Z 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-08-14T20:48:03.9082700Z 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-08-14T20:48:03.9084210Z 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-08-14T20:48:03.9085260Z 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-08-14T20:48:03.9086630Z 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-08-14T20:48:03.9087780Z 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-08-14T20:48:03.9089460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/collective_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-08-14T20:48:03.9090550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_functional_collectives.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-08-14T20:48:03.9092190Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard 2025-08-14T20:48:03.9093020Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/checkpoint 2025-08-14T20:48:03.9093760Z 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-08-14T20:48:03.9094880Z 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-08-14T20:48:03.9096030Z 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-08-14T20:48:03.9097360Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharded_tensor 2025-08-14T20:48:03.9098310Z 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-08-14T20:48:03.9099520Z 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-08-14T20:48:03.9100920Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharded_tensor/_ops 2025-08-14T20:48:03.9101660Z 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-08-14T20:48:03.9102840Z 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-08-14T20:48:03.9104020Z 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-08-14T20:48:03.9105210Z 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-08-14T20:48:03.9106380Z 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-08-14T20:48:03.9107510Z 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-08-14T20:48:03.9108680Z 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-08-14T20:48:03.9110040Z 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-08-14T20:48:03.9111120Z 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-08-14T20:48:03.9112290Z 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-08-14T20:48:03.9113760Z 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-08-14T20:48:03.9114900Z 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-08-14T20:48:03.9116240Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharding_plan 2025-08-14T20:48:03.9116940Z 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-08-14T20:48:03.9118120Z 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-08-14T20:48:03.9119260Z 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-08-14T20:48:03.9120560Z 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-08-14T20:48:03.9122030Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharding_spec 2025-08-14T20:48:03.9123120Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops 2025-08-14T20:48:03.9124070Z 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-08-14T20:48:03.9125360Z 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-08-14T20:48:03.9126580Z 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-08-14T20:48:03.9127710Z 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-08-14T20:48:03.9128920Z 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-08-14T20:48:03.9130210Z 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-08-14T20:48:03.9131390Z 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-08-14T20:48:03.9132630Z 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-08-14T20:48:03.9134120Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharded_optim 2025-08-14T20:48:03.9134910Z 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-08-14T20:48:03.9136160Z 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-08-14T20:48:03.9137430Z 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-08-14T20:48:03.9138680Z 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-08-14T20:48:03.9139980Z 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-08-14T20:48:03.9141200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/launch.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-08-14T20:48:03.9142730Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_symmetric_memory 2025-08-14T20:48:03.9143540Z 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-08-14T20:48:03.9145120Z 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-08-14T20:48:03.9146700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-08-14T20:48:03.9148550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/remote_device.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-08-14T20:48:03.9149730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/device_mesh.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-08-14T20:48:03.9151590Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor 2025-08-14T20:48:03.9152520Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/experimental 2025-08-14T20:48:03.9153300Z 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-08-14T20:48:03.9155010Z 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-08-14T20:48:03.9156210Z 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-08-14T20:48:03.9158320Z 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-08-14T20:48:03.9159730Z 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-08-14T20:48:03.9161160Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/parallel 2025-08-14T20:48:03.9161900Z 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-08-14T20:48:03.9163000Z 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-08-14T20:48:03.9164140Z 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-08-14T20:48:03.9165490Z 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-08-14T20:48:03.9166700Z 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-08-14T20:48:03.9168020Z 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-08-14T20:48:03.9169250Z 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-08-14T20:48:03.9170350Z 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-08-14T20:48:03.9171380Z 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-08-14T20:48:03.9172620Z 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-08-14T20:48:03.9173700Z 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-08-14T20:48:03.9175130Z 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-08-14T20:48:03.9176300Z 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-08-14T20:48:03.9178080Z 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-08-14T20:48:03.9179610Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/_ops 2025-08-14T20:48:03.9180490Z 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-08-14T20:48:03.9181670Z 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-08-14T20:48:03.9182900Z 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-08-14T20:48:03.9184400Z 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-08-14T20:48:03.9185480Z 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-08-14T20:48:03.9186610Z 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-08-14T20:48:03.9187850Z 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-08-14T20:48:03.9189210Z 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-08-14T20:48:03.9190530Z 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-08-14T20:48:03.9191690Z 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-08-14T20:48:03.9192860Z 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-08-14T20:48:03.9193890Z 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-08-14T20:48:03.9195260Z 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-08-14T20:48:03.9196320Z 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-08-14T20:48:03.9197580Z 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-08-14T20:48:03.9198790Z 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-08-14T20:48:03.9200050Z 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-08-14T20:48:03.9201300Z 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-08-14T20:48:03.9202450Z 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-08-14T20:48:03.9203560Z 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-08-14T20:48:03.9204830Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/debug 2025-08-14T20:48:03.9205540Z 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-08-14T20:48:03.9206750Z 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-08-14T20:48:03.9207850Z 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-08-14T20:48:03.9208950Z 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-08-14T20:48:03.9210440Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/rpc 2025-08-14T20:48:03.9211120Z 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-08-14T20:48:03.9212330Z 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-08-14T20:48:03.9213480Z 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-08-14T20:48:03.9214590Z 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-08-14T20:48:03.9215680Z 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-08-14T20:48:03.9216980Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/rpc/_testing 2025-08-14T20:48:03.9217660Z 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-08-14T20:48:03.9218870Z 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-08-14T20:48:03.9219880Z 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-08-14T20:48:03.9221270Z 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-08-14T20:48:03.9222400Z 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-08-14T20:48:03.9223570Z 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-08-14T20:48:03.9224700Z 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-08-14T20:48:03.9225870Z 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-08-14T20:48:03.9226920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_size_docs.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-14T20:48:03.9228500Z creating build/bdist.macosx-14.0-arm64/wheel/torch/autograd 2025-08-14T20:48:03.9229040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/anomaly_mode.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd 2025-08-14T20:48:03.9230390Z creating build/bdist.macosx-14.0-arm64/wheel/torch/autograd/_functions 2025-08-14T20:48:03.9231080Z 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-08-14T20:48:03.9232240Z 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-08-14T20:48:03.9233270Z 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-08-14T20:48:03.9234430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/graph.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd 2025-08-14T20:48:03.9235650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/forward_ad.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd 2025-08-14T20:48:03.9236690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd 2025-08-14T20:48:03.9237960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/variable.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd 2025-08-14T20:48:03.9239190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/functional.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd 2025-08-14T20:48:03.9240710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/grad_mode.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd 2025-08-14T20:48:03.9241760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/profiler_util.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd 2025-08-14T20:48:03.9243120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/profiler_legacy.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd 2025-08-14T20:48:03.9244220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/gradcheck.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd 2025-08-14T20:48:03.9245990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/profiler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd 2025-08-14T20:48:03.9247400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/function.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd 2025-08-14T20:48:03.9249170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_torch_docs.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-14T20:48:03.9253590Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-08-14T20:48:03.9254000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/_pytree.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-08-14T20:48:03.9255020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/graph_module.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-08-14T20:48:03.9256650Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-08-14T20:48:03.9257320Z 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-08-14T20:48:03.9258950Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/unification 2025-08-14T20:48:03.9259640Z 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-08-14T20:48:03.9260790Z 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-08-14T20:48:03.9261950Z 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-08-14T20:48:03.9263130Z 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-08-14T20:48:03.9264520Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/unification/multipledispatch 2025-08-14T20:48:03.9265370Z 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-08-14T20:48:03.9266520Z 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-08-14T20:48:03.9267770Z 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-08-14T20:48:03.9268860Z 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-08-14T20:48:03.9270020Z 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-08-14T20:48:03.9271130Z 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-08-14T20:48:03.9272140Z 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-08-14T20:48:03.9273300Z 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-08-14T20:48:03.9274410Z 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-08-14T20:48:03.9275520Z 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-08-14T20:48:03.9276600Z 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-08-14T20:48:03.9277840Z 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-08-14T20:48:03.9278990Z 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-08-14T20:48:03.9280120Z 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-08-14T20:48:03.9281390Z 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-08-14T20:48:03.9282530Z 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-08-14T20:48:03.9283980Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/migrate_gradual_types 2025-08-14T20:48:03.9284720Z 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-08-14T20:48:03.9286120Z 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-08-14T20:48:03.9287360Z 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-08-14T20:48:03.9288460Z 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-08-14T20:48:03.9289440Z 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-08-14T20:48:03.9290560Z 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-08-14T20:48:03.9291780Z 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-08-14T20:48:03.9292780Z 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-08-14T20:48:03.9294180Z 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-08-14T20:48:03.9295640Z 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-08-14T20:48:03.9296730Z 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-08-14T20:48:03.9297870Z 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-08-14T20:48:03.9299130Z 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-08-14T20:48:03.9300340Z 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-08-14T20:48:03.9301620Z 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-08-14T20:48:03.9302530Z 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-08-14T20:48:03.9304030Z 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-08-14T20:48:03.9305100Z 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-08-14T20:48:03.9306210Z 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-08-14T20:48:03.9307440Z 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-08-14T20:48:03.9308730Z 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-08-14T20:48:03.9311860Z 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-08-14T20:48:03.9312640Z 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-08-14T20:48:03.9313790Z 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-08-14T20:48:03.9315300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/operator_schemas.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-08-14T20:48:03.9316570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/config.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-08-14T20:48:03.9317590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/proxy.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-08-14T20:48:03.9318870Z 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-08-14T20:48:03.9320030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/traceback.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-08-14T20:48:03.9321140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/graph.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-08-14T20:48:03.9323230Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes 2025-08-14T20:48:03.9323820Z 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-08-14T20:48:03.9325230Z 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-08-14T20:48:03.9326350Z 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-08-14T20:48:03.9327790Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/infra 2025-08-14T20:48:03.9328500Z 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-08-14T20:48:03.9329770Z 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-08-14T20:48:03.9330930Z 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-08-14T20:48:03.9332030Z 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-08-14T20:48:03.9333110Z 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-08-14T20:48:03.9334150Z 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-08-14T20:48:03.9335330Z 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-08-14T20:48:03.9336610Z 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-08-14T20:48:03.9337860Z 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-08-14T20:48:03.9339410Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/backends 2025-08-14T20:48:03.9340090Z 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-08-14T20:48:03.9341060Z 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-08-14T20:48:03.9342230Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/tests 2025-08-14T20:48:03.9342870Z 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-08-14T20:48:03.9343860Z 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-08-14T20:48:03.9344890Z 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-08-14T20:48:03.9346180Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/utils 2025-08-14T20:48:03.9346950Z 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-08-14T20:48:03.9348230Z 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-08-14T20:48:03.9349280Z 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-08-14T20:48:03.9356900Z 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-08-14T20:48:03.9357710Z 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-08-14T20:48:03.9358450Z 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-08-14T20:48:03.9359150Z 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-08-14T20:48:03.9359840Z 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-08-14T20:48:03.9360550Z 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-08-14T20:48:03.9361240Z 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-08-14T20:48:03.9361950Z 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-08-14T20:48:03.9362660Z 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-08-14T20:48:03.9363180Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/dialect 2025-08-14T20:48:03.9363730Z 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-08-14T20:48:03.9364270Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/dialect/common 2025-08-14T20:48:03.9364870Z 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-08-14T20:48:03.9365870Z 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-08-14T20:48:03.9366680Z 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-08-14T20:48:03.9368020Z 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-08-14T20:48:03.9369450Z 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-08-14T20:48:03.9370670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/tensor_type.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-08-14T20:48:03.9371980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-08-14T20:48:03.9373160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/immutable_collections.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-08-14T20:48:03.9374310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/annotate.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-08-14T20:48:03.9375540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/subgraph_rewriter.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-08-14T20:48:03.9376710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/interpreter.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-08-14T20:48:03.9378060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/_symbolic_trace.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-08-14T20:48:03.9379360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/node.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-08-14T20:48:03.9380740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/_compatibility.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-08-14T20:48:03.9381840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/_graph_pickler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-08-14T20:48:03.9383120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-08-14T20:48:03.9384150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-14T20:48:03.9385680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_utils_internal.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-14T20:48:03.9386800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quasirandom.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-14T20:48:03.9388210Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_prims_common 2025-08-14T20:48:03.9388850Z 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-08-14T20:48:03.9390440Z 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-08-14T20:48:03.9391880Z creating build/bdist.macosx-14.0-arm64/wheel/torch/multiprocessing 2025-08-14T20:48:03.9392590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing/queue.py -> build/bdist.macosx-14.0-arm64/wheel/torch/multiprocessing 2025-08-14T20:48:03.9393640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing/_atfork.py -> build/bdist.macosx-14.0-arm64/wheel/torch/multiprocessing 2025-08-14T20:48:03.9395020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/multiprocessing 2025-08-14T20:48:03.9395920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing/spawn.py -> build/bdist.macosx-14.0-arm64/wheel/torch/multiprocessing 2025-08-14T20:48:03.9397050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing/reductions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/multiprocessing 2025-08-14T20:48:03.9398280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing/pool.py -> build/bdist.macosx-14.0-arm64/wheel/torch/multiprocessing 2025-08-14T20:48:03.9399670Z creating build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-08-14T20:48:03.9400370Z 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-08-14T20:48:03.9401460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/gds.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-08-14T20:48:03.9402530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/streams.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-08-14T20:48:03.9403590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/error.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-08-14T20:48:03.9404490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/comm.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-08-14T20:48:03.9405650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/memory.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-08-14T20:48:03.9407020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/jiterator.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-08-14T20:48:03.9408160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/nccl.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-08-14T20:48:03.9409360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-08-14T20:48:03.9410930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/_gpu_trace.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-08-14T20:48:03.9412200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/_sanitizer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-08-14T20:48:03.9413430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/random.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-08-14T20:48:03.9414540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/_memory_viz.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-08-14T20:48:03.9415850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/tunable.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-08-14T20:48:03.9417430Z creating build/bdist.macosx-14.0-arm64/wheel/torch/cuda/amp 2025-08-14T20:48:03.9418090Z 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-08-14T20:48:03.9419200Z 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-08-14T20:48:03.9420370Z 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-08-14T20:48:03.9421560Z 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-08-14T20:48:03.9422680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/sparse.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-08-14T20:48:03.9423710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/nvtx.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-08-14T20:48:03.9424750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/graphs.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-08-14T20:48:03.9425960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/profiler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-08-14T20:48:03.9427370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-08-14T20:48:03.9428680Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-08-14T20:48:03.9429290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/sleef.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-08-14T20:48:03.9431900Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-08-14T20:48:03.9432500Z 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-08-14T20:48:03.9433920Z 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-08-14T20:48:03.9435050Z 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-08-14T20:48:03.9436760Z 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-08-14T20:48:03.9438570Z 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-08-14T20:48:03.9439710Z 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-08-14T20:48:03.9441010Z 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-08-14T20:48:03.9442230Z 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-08-14T20:48:03.9443460Z 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-08-14T20:48:03.9444560Z 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-08-14T20:48:03.9446080Z 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-08-14T20:48:03.9447310Z 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-08-14T20:48:03.9448900Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/eigen 2025-08-14T20:48:03.9449540Z 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-08-14T20:48:03.9450810Z 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-08-14T20:48:03.9452060Z 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-08-14T20:48:03.9453510Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/stl 2025-08-14T20:48:03.9454220Z 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-08-14T20:48:03.9455360Z 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-08-14T20:48:03.9456460Z 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-08-14T20:48:03.9457810Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/detail 2025-08-14T20:48:03.9458530Z 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-08-14T20:48:03.9459960Z 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-08-14T20:48:03.9461030Z 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-08-14T20:48:03.9462170Z 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-08-14T20:48:03.9463400Z 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-08-14T20:48:03.9464970Z 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-08-14T20:48:03.9466050Z 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-08-14T20:48:03.9467140Z 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-08-14T20:48:03.9468570Z 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-08-14T20:48:03.9469810Z 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-08-14T20:48:03.9471050Z 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-08-14T20:48:03.9472210Z 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-08-14T20:48:03.9473300Z 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-08-14T20:48:03.9474820Z 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-08-14T20:48:03.9475970Z 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-08-14T20:48:03.9477050Z 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-08-14T20:48:03.9478160Z 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-08-14T20:48:03.9479860Z 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-08-14T20:48:03.9481150Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/fmt 2025-08-14T20:48:03.9481810Z 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-08-14T20:48:03.9482940Z 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-08-14T20:48:03.9484450Z 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-08-14T20:48:03.9485630Z 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-08-14T20:48:03.9486670Z 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-08-14T20:48:03.9487810Z 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-08-14T20:48:03.9489240Z 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-08-14T20:48:03.9490340Z 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-08-14T20:48:03.9491560Z 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-08-14T20:48:03.9492650Z 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-08-14T20:48:03.9493870Z 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-08-14T20:48:03.9495190Z 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-08-14T20:48:03.9497050Z 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-08-14T20:48:03.9498260Z 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-08-14T20:48:03.9500180Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2 2025-08-14T20:48:03.9501060Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/core 2025-08-14T20:48:03.9501750Z 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-08-14T20:48:03.9503680Z 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-08-14T20:48:03.9504980Z 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-08-14T20:48:03.9506380Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/perfkernels 2025-08-14T20:48:03.9507140Z 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-08-14T20:48:03.9508520Z 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-08-14T20:48:03.9509750Z 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-08-14T20:48:03.9511080Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/serialize 2025-08-14T20:48:03.9511820Z 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-08-14T20:48:03.9512960Z 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-08-14T20:48:03.9514030Z 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-08-14T20:48:03.9515680Z 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-08-14T20:48:03.9516760Z 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-08-14T20:48:03.9517960Z 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-08-14T20:48:03.9519130Z 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-08-14T20:48:03.9520450Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/utils 2025-08-14T20:48:03.9521200Z 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-08-14T20:48:03.9522680Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/utils/threadpool 2025-08-14T20:48:03.9523380Z 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-08-14T20:48:03.9524560Z 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-08-14T20:48:03.9525650Z 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-08-14T20:48:03.9526780Z 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-08-14T20:48:03.9527890Z 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-08-14T20:48:03.9529020Z 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-08-14T20:48:03.9530060Z 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-08-14T20:48:03.9531210Z 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-08-14T20:48:03.9532570Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google 2025-08-14T20:48:03.9533660Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-08-14T20:48:03.9534490Z 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-08-14T20:48:03.9535900Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/stubs 2025-08-14T20:48:03.9536610Z 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-08-14T20:48:03.9537870Z 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-08-14T20:48:03.9539010Z 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-08-14T20:48:03.9540140Z 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-08-14T20:48:03.9541270Z 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-08-14T20:48:03.9542390Z 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-08-14T20:48:03.9543870Z 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-08-14T20:48:03.9545060Z 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-08-14T20:48:03.9546340Z 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-08-14T20:48:03.9547630Z 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-08-14T20:48:03.9548880Z 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-08-14T20:48:03.9550210Z 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-08-14T20:48:03.9551420Z 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-08-14T20:48:03.9552660Z 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-08-14T20:48:03.9553850Z 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-08-14T20:48:03.9555060Z 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-08-14T20:48:03.9556490Z 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-08-14T20:48:03.9558050Z 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-08-14T20:48:03.9559220Z 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-08-14T20:48:03.9561080Z 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-08-14T20:48:03.9562370Z 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-08-14T20:48:03.9563680Z 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-08-14T20:48:03.9565150Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/util 2025-08-14T20:48:03.9565870Z 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-08-14T20:48:03.9567210Z 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-08-14T20:48:03.9568430Z 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-08-14T20:48:03.9569680Z 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-08-14T20:48:03.9570870Z 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-08-14T20:48:03.9572090Z 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-08-14T20:48:03.9573500Z 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-08-14T20:48:03.9574900Z 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-08-14T20:48:03.9576010Z 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-08-14T20:48:03.9577590Z 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-08-14T20:48:03.9578690Z 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-08-14T20:48:03.9579930Z 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-08-14T20:48:03.9581060Z 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-08-14T20:48:03.9582350Z 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-08-14T20:48:03.9583450Z 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-08-14T20:48:03.9585200Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/io 2025-08-14T20:48:03.9585950Z 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-08-14T20:48:03.9587080Z 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-08-14T20:48:03.9588250Z 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-08-14T20:48:03.9589340Z 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-08-14T20:48:03.9590550Z 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-08-14T20:48:03.9591630Z 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-08-14T20:48:03.9592910Z 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-08-14T20:48:03.9594010Z 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-08-14T20:48:03.9595150Z 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-08-14T20:48:03.9596590Z 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-08-14T20:48:03.9597950Z 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-08-14T20:48:03.9599360Z 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-08-14T20:48:03.9600580Z 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-08-14T20:48:03.9601660Z 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-08-14T20:48:03.9602830Z 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-08-14T20:48:03.9604260Z 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-08-14T20:48:03.9605370Z 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-08-14T20:48:03.9606850Z 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-08-14T20:48:03.9608050Z 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-08-14T20:48:03.9609150Z 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-08-14T20:48:03.9610290Z 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-08-14T20:48:03.9611400Z 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-08-14T20:48:03.9612540Z 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-08-14T20:48:03.9614180Z 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-08-14T20:48:03.9615230Z 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-08-14T20:48:03.9616320Z 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-08-14T20:48:03.9617520Z 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-08-14T20:48:03.9621500Z 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-08-14T20:48:03.9622310Z 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-08-14T20:48:03.9623520Z 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-08-14T20:48:03.9624630Z 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-08-14T20:48:03.9625900Z 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-08-14T20:48:03.9627330Z 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-08-14T20:48:03.9628400Z 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-08-14T20:48:03.9629440Z 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-08-14T20:48:03.9630610Z 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-08-14T20:48:03.9631970Z 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-08-14T20:48:03.9633230Z 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-08-14T20:48:03.9634320Z 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-08-14T20:48:03.9635750Z 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-08-14T20:48:03.9637020Z 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-08-14T20:48:03.9638160Z 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-08-14T20:48:03.9639790Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler 2025-08-14T20:48:03.9640580Z 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-08-14T20:48:03.9641670Z 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-08-14T20:48:03.9643770Z 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-08-14T20:48:03.9644930Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/python 2025-08-14T20:48:03.9645710Z 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-08-14T20:48:03.9647000Z 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-08-14T20:48:03.9648380Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/js 2025-08-14T20:48:03.9649220Z 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-08-14T20:48:03.9650360Z 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-08-14T20:48:03.9651570Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/java 2025-08-14T20:48:03.9652320Z 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-08-14T20:48:03.9653500Z 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-08-14T20:48:03.9654810Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/php 2025-08-14T20:48:03.9655580Z 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-08-14T20:48:03.9656890Z 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-08-14T20:48:03.9658350Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/cpp 2025-08-14T20:48:03.9659130Z 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-08-14T20:48:03.9660230Z 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-08-14T20:48:03.9661460Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/csharp 2025-08-14T20:48:03.9662250Z 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-08-14T20:48:03.9663380Z 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-08-14T20:48:03.9664550Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/ruby 2025-08-14T20:48:03.9665300Z 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-08-14T20:48:03.9671930Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/objectivec 2025-08-14T20:48:03.9672790Z 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-08-14T20:48:03.9673900Z 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-08-14T20:48:03.9674840Z 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-08-14T20:48:03.9675630Z 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-08-14T20:48:03.9676460Z 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-08-14T20:48:03.9677300Z 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-08-14T20:48:03.9678030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/cpuinfo.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-08-14T20:48:03.9678490Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch 2025-08-14T20:48:03.9678840Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly 2025-08-14T20:48:03.9679220Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/core 2025-08-14T20:48:03.9679870Z 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-08-14T20:48:03.9680510Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/util 2025-08-14T20:48:03.9681170Z 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-08-14T20:48:03.9682030Z 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-08-14T20:48:03.9683110Z 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-08-14T20:48:03.9684170Z 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-08-14T20:48:03.9685240Z 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-08-14T20:48:03.9686340Z 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-08-14T20:48:03.9687490Z 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-08-14T20:48:03.9688650Z 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-08-14T20:48:03.9689760Z 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-08-14T20:48:03.9690900Z 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-08-14T20:48:03.9692080Z 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-08-14T20:48:03.9693240Z 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-08-14T20:48:03.9694280Z 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-08-14T20:48:03.9695460Z 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-08-14T20:48:03.9696670Z 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-08-14T20:48:03.9697680Z 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-08-14T20:48:03.9698810Z 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-08-14T20:48:03.9699900Z 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-08-14T20:48:03.9701240Z 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-08-14T20:48:03.9702500Z 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-08-14T20:48:03.9703690Z 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-08-14T20:48:03.9704890Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/cpu 2025-08-14T20:48:03.9705790Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/cpu/vec 2025-08-14T20:48:03.9706520Z 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-08-14T20:48:03.9707900Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/cpu/vec/vec256 2025-08-14T20:48:03.9708690Z 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-08-14T20:48:03.9709740Z 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-08-14T20:48:03.9710850Z 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-08-14T20:48:03.9712120Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/macros 2025-08-14T20:48:03.9712960Z 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-08-14T20:48:03.9714170Z 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-08-14T20:48:03.9715270Z 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-08-14T20:48:03.9716920Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-08-14T20:48:03.9717800Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/stable 2025-08-14T20:48:03.9718580Z 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-08-14T20:48:03.9719990Z 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-08-14T20:48:03.9720810Z 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-08-14T20:48:03.9721880Z 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-08-14T20:48:03.9722940Z 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-08-14T20:48:03.9724260Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor 2025-08-14T20:48:03.9725590Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_package 2025-08-14T20:48:03.9726620Z 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-08-14T20:48:03.9728100Z 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-08-14T20:48:03.9729460Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_eager 2025-08-14T20:48:03.9730230Z 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-08-14T20:48:03.9731450Z 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-08-14T20:48:03.9732600Z 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-08-14T20:48:03.9733840Z 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-08-14T20:48:03.9735020Z 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-08-14T20:48:03.9736370Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runner 2025-08-14T20:48:03.9737130Z 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-08-14T20:48:03.9738310Z 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-08-14T20:48:03.9739560Z 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-08-14T20:48:03.9740730Z 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-08-14T20:48:03.9741870Z 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-08-14T20:48:03.9743190Z 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-08-14T20:48:03.9744490Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2025-08-14T20:48:03.9745270Z 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-08-14T20:48:03.9746350Z 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-08-14T20:48:03.9747550Z 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-08-14T20:48:03.9748690Z 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-08-14T20:48:03.9749950Z 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-08-14T20:48:03.9751030Z 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-08-14T20:48:03.9752220Z 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-08-14T20:48:03.9753360Z 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-08-14T20:48:03.9754530Z 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-08-14T20:48:03.9755710Z 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-08-14T20:48:03.9756790Z 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-08-14T20:48:03.9758030Z 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-08-14T20:48:03.9759200Z 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-08-14T20:48:03.9760520Z 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-08-14T20:48:03.9762060Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_include 2025-08-14T20:48:03.9762800Z 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-08-14T20:48:03.9763990Z 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-08-14T20:48:03.9765170Z 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-08-14T20:48:03.9766320Z 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-08-14T20:48:03.9767440Z 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-08-14T20:48:03.9768570Z 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-08-14T20:48:03.9769660Z 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-08-14T20:48:03.9771390Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch 2025-08-14T20:48:03.9772130Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch/generated 2025-08-14T20:48:03.9772930Z 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-08-14T20:48:03.9774420Z 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-08-14T20:48:03.9775500Z 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-08-14T20:48:03.9776750Z 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-08-14T20:48:03.9778100Z 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-08-14T20:48:03.9779250Z 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-08-14T20:48:03.9780420Z 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-08-14T20:48:03.9781580Z 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-08-14T20:48:03.9782740Z 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-08-14T20:48:03.9783790Z 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-08-14T20:48:03.9785180Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch/c 2025-08-14T20:48:03.9785900Z 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-08-14T20:48:03.9787040Z 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-08-14T20:48:03.9788170Z 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-08-14T20:48:03.9789250Z 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-08-14T20:48:03.9790400Z 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-08-14T20:48:03.9791490Z 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-08-14T20:48:03.9793110Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/cpp_wrapper 2025-08-14T20:48:03.9793960Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/cpp_wrapper/device_internal 2025-08-14T20:48:03.9794810Z 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-08-14T20:48:03.9795960Z 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-08-14T20:48:03.9797130Z 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-08-14T20:48:03.9798310Z 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-08-14T20:48:03.9799380Z 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-08-14T20:48:03.9800530Z 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-08-14T20:48:03.9801570Z 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-08-14T20:48:03.9802690Z 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-08-14T20:48:03.9803810Z 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-08-14T20:48:03.9804970Z 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-08-14T20:48:03.9805940Z 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-08-14T20:48:03.9807230Z 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-08-14T20:48:03.9808510Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/monitor 2025-08-14T20:48:03.9809300Z 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-08-14T20:48:03.9810460Z 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-08-14T20:48:03.9811530Z 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-08-14T20:48:03.9812760Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/instruction_counter 2025-08-14T20:48:03.9813610Z 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-08-14T20:48:03.9814830Z 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-08-14T20:48:03.9815890Z 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-08-14T20:48:03.9816970Z 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-08-14T20:48:03.9818320Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/mps 2025-08-14T20:48:03.9819010Z 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-08-14T20:48:03.9820430Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/onnx 2025-08-14T20:48:03.9821130Z 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-08-14T20:48:03.9822160Z 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-08-14T20:48:03.9823320Z 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-08-14T20:48:03.9824350Z 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-08-14T20:48:03.9825610Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/cpu 2025-08-14T20:48:03.9826650Z 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-08-14T20:48:03.9827430Z 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-08-14T20:48:03.9828730Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed 2025-08-14T20:48:03.9829690Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd 2025-08-14T20:48:03.9830450Z 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-08-14T20:48:03.9831990Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/context 2025-08-14T20:48:03.9832800Z 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-08-14T20:48:03.9833950Z 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-08-14T20:48:03.9834980Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-08-14T20:48:03.9836010Z 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-08-14T20:48:03.9837280Z 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-08-14T20:48:03.9838490Z 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-08-14T20:48:03.9839680Z 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-08-14T20:48:03.9840880Z 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-08-14T20:48:03.9842090Z 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-08-14T20:48:03.9843300Z 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-08-14T20:48:03.9844470Z 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-08-14T20:48:03.9845690Z 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-08-14T20:48:03.9846890Z 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-08-14T20:48:03.9848040Z 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-08-14T20:48:03.9849060Z 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-08-14T20:48:03.9849860Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/functions 2025-08-14T20:48:03.9850700Z 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-08-14T20:48:03.9851860Z 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-08-14T20:48:03.9853070Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/engine 2025-08-14T20:48:03.9854050Z 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-08-14T20:48:03.9855650Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-08-14T20:48:03.9856560Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc/metrics 2025-08-14T20:48:03.9857410Z 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-08-14T20:48:03.9858520Z 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-08-14T20:48:03.9859730Z 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-08-14T20:48:03.9860960Z 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-08-14T20:48:03.9862060Z 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-08-14T20:48:03.9863400Z 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-08-14T20:48:03.9864480Z 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-08-14T20:48:03.9865630Z 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-08-14T20:48:03.9866770Z 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-08-14T20:48:03.9867900Z 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-08-14T20:48:03.9868970Z 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-08-14T20:48:03.9870290Z 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-08-14T20:48:03.9871430Z 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-08-14T20:48:03.9872570Z 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-08-14T20:48:03.9873750Z 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-08-14T20:48:03.9874970Z 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-08-14T20:48:03.9876260Z 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-08-14T20:48:03.9877500Z 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-08-14T20:48:03.9878770Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc/testing 2025-08-14T20:48:03.9879710Z 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-08-14T20:48:03.9880950Z 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-08-14T20:48:03.9882070Z 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-08-14T20:48:03.9883230Z 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-08-14T20:48:03.9884540Z 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-08-14T20:48:03.9885850Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc/profiler 2025-08-14T20:48:03.9886730Z 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-08-14T20:48:03.9887960Z 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-08-14T20:48:03.9889010Z 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-08-14T20:48:03.9890240Z 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-08-14T20:48:03.9892070Z 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-08-14T20:48:03.9893160Z 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-08-14T20:48:03.9894160Z 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-08-14T20:48:03.9895120Z 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-08-14T20:48:03.9896190Z 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-08-14T20:48:03.9897960Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-08-14T20:48:03.9898680Z 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-08-14T20:48:03.9900130Z 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-08-14T20:48:03.9901170Z 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-08-14T20:48:03.9902230Z 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-08-14T20:48:03.9903310Z 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-08-14T20:48:03.9904530Z 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-08-14T20:48:03.9905720Z 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-08-14T20:48:03.9906930Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/control_collectives 2025-08-14T20:48:03.9907840Z 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-08-14T20:48:03.9909100Z 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-08-14T20:48:03.9910190Z 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-08-14T20:48:03.9911170Z 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-08-14T20:48:03.9912190Z 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-08-14T20:48:03.9913260Z 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-08-14T20:48:03.9914360Z 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-08-14T20:48:03.9915670Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/cuda 2025-08-14T20:48:03.9916450Z 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-08-14T20:48:03.9917570Z 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-08-14T20:48:03.9918590Z 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-08-14T20:48:03.9919710Z 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-08-14T20:48:03.9920970Z 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-08-14T20:48:03.9922130Z 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-08-14T20:48:03.9923420Z 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-08-14T20:48:03.9924490Z 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-08-14T20:48:03.9925800Z 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-08-14T20:48:03.9926910Z 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-08-14T20:48:03.9928150Z 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-08-14T20:48:03.9929390Z 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-08-14T20:48:03.9930830Z 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-08-14T20:48:03.9931810Z 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-08-14T20:48:03.9933130Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/quantization 2025-08-14T20:48:03.9933960Z 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-08-14T20:48:03.9935230Z 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-08-14T20:48:03.9936430Z 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-08-14T20:48:03.9937660Z 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-08-14T20:48:03.9938880Z 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-08-14T20:48:03.9940010Z 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-08-14T20:48:03.9941190Z 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-08-14T20:48:03.9942320Z 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-08-14T20:48:03.9943510Z 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-08-14T20:48:03.9944810Z 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-08-14T20:48:03.9945980Z 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-08-14T20:48:03.9947090Z 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-08-14T20:48:03.9948280Z 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-08-14T20:48:03.9949610Z 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-08-14T20:48:03.9950760Z 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-08-14T20:48:03.9951940Z 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-08-14T20:48:03.9953410Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/control_plane 2025-08-14T20:48:03.9954290Z 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-08-14T20:48:03.9955490Z 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-08-14T20:48:03.9956530Z 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-08-14T20:48:03.9957740Z 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-08-14T20:48:03.9959130Z 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-08-14T20:48:03.9960560Z 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-08-14T20:48:03.9961670Z 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-08-14T20:48:03.9962940Z 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-08-14T20:48:03.9964320Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/symm_mem 2025-08-14T20:48:03.9965250Z 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-08-14T20:48:03.9966390Z 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-08-14T20:48:03.9967550Z 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-08-14T20:48:03.9968850Z 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-08-14T20:48:03.9970170Z 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-08-14T20:48:03.9971360Z 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-08-14T20:48:03.9972510Z 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-08-14T20:48:03.9973560Z 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-08-14T20:48:03.9974770Z 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-08-14T20:48:03.9976000Z 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-08-14T20:48:03.9977200Z 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-08-14T20:48:03.9978230Z 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-08-14T20:48:03.9979380Z 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-08-14T20:48:03.9980930Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-08-14T20:48:03.9981690Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/generated 2025-08-14T20:48:03.9982510Z 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-08-14T20:48:03.9989600Z 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-08-14T20:48:03.9990610Z 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-08-14T20:48:03.9991620Z 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-08-14T20:48:03.9992610Z 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-08-14T20:48:03.9993610Z 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-08-14T20:48:03.9994620Z 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-08-14T20:48:03.9995510Z 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-08-14T20:48:03.9996430Z 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-08-14T20:48:03.9997340Z 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-08-14T20:48:03.9998240Z 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-08-14T20:48:03.9999100Z 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-08-14T20:48:04.0000140Z 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-08-14T20:48:04.0001310Z 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-08-14T20:48:04.0002520Z 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-08-14T20:48:04.0003670Z 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-08-14T20:48:04.0004810Z 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-08-14T20:48:04.0005910Z 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-08-14T20:48:04.0007180Z 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-08-14T20:48:04.0008460Z 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-08-14T20:48:04.0009720Z 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-08-14T20:48:04.0010880Z 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-08-14T20:48:04.0011990Z 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-08-14T20:48:04.0013080Z 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-08-14T20:48:04.0014220Z 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-08-14T20:48:04.0015340Z 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-08-14T20:48:04.0016440Z 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-08-14T20:48:04.0017730Z 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-08-14T20:48:04.0018890Z 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-08-14T20:48:04.0020420Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/utils 2025-08-14T20:48:04.0021150Z 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-08-14T20:48:04.0022360Z 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-08-14T20:48:04.0023510Z 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-08-14T20:48:04.0024920Z 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-08-14T20:48:04.0026100Z 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-08-14T20:48:04.0027230Z 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-08-14T20:48:04.0028350Z 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-08-14T20:48:04.0029460Z 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-08-14T20:48:04.0030660Z 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-08-14T20:48:04.0031680Z 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-08-14T20:48:04.0032820Z 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-08-14T20:48:04.0033970Z 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-08-14T20:48:04.0035040Z 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-08-14T20:48:04.0036100Z 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-08-14T20:48:04.0037190Z 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-08-14T20:48:04.0038320Z 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-08-14T20:48:04.0039460Z 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-08-14T20:48:04.0040520Z 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-08-14T20:48:04.0041550Z 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-08-14T20:48:04.0042980Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/functions 2025-08-14T20:48:04.0043890Z 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-08-14T20:48:04.0045260Z 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-08-14T20:48:04.0046410Z 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-08-14T20:48:04.0047570Z 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-08-14T20:48:04.0048690Z 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-08-14T20:48:04.0049820Z 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-08-14T20:48:04.0050920Z 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-08-14T20:48:04.0052010Z 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-08-14T20:48:04.0053440Z 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-08-14T20:48:04.0054610Z 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-08-14T20:48:04.0055720Z 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-08-14T20:48:04.0056870Z 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-08-14T20:48:04.0058010Z 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-08-14T20:48:04.0059070Z 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-08-14T20:48:04.0060160Z 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-08-14T20:48:04.0061410Z 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-08-14T20:48:04.0062690Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/fx 2025-08-14T20:48:04.0063410Z 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-08-14T20:48:04.0064910Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/multiprocessing 2025-08-14T20:48:04.0065550Z 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-08-14T20:48:04.0066830Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/cuda 2025-08-14T20:48:04.0067590Z 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-08-14T20:48:04.0068610Z 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-08-14T20:48:04.0069760Z 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-08-14T20:48:04.0070850Z 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-08-14T20:48:04.0071910Z 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-08-14T20:48:04.0073110Z 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-08-14T20:48:04.0074160Z 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-08-14T20:48:04.0075340Z 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-08-14T20:48:04.0076410Z 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-08-14T20:48:04.0077570Z 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-08-14T20:48:04.0078570Z 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-08-14T20:48:04.0079700Z 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-08-14T20:48:04.0080820Z 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-08-14T20:48:04.0081930Z 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-08-14T20:48:04.0083030Z 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-08-14T20:48:04.0084180Z 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-08-14T20:48:04.0085540Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/xpu 2025-08-14T20:48:04.0086220Z 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-08-14T20:48:04.0087320Z 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-08-14T20:48:04.0088400Z 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-08-14T20:48:04.0089540Z 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-08-14T20:48:04.0091070Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/dynamo 2025-08-14T20:48:04.0091780Z 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-08-14T20:48:04.0092860Z 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-08-14T20:48:04.0093950Z 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-08-14T20:48:04.0095090Z 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-08-14T20:48:04.0096220Z 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-08-14T20:48:04.0097350Z 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-08-14T20:48:04.0098420Z 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-08-14T20:48:04.0099540Z 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-08-14T20:48:04.0101010Z 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-08-14T20:48:04.0102090Z 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-08-14T20:48:04.0103180Z 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-08-14T20:48:04.0104310Z 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-08-14T20:48:04.0105350Z 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-08-14T20:48:04.0106560Z 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-08-14T20:48:04.0108040Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-08-14T20:48:04.0108750Z 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-08-14T20:48:04.0109890Z 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-08-14T20:48:04.0110950Z 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-08-14T20:48:04.0112000Z 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-08-14T20:48:04.0113100Z 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-08-14T20:48:04.0114160Z 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-08-14T20:48:04.0115290Z 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-08-14T20:48:04.0116480Z 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-08-14T20:48:04.0117450Z 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-08-14T20:48:04.0118540Z 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-08-14T20:48:04.0119670Z 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-08-14T20:48:04.0120780Z 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-08-14T20:48:04.0122240Z 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-08-14T20:48:04.0123340Z 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-08-14T20:48:04.0124460Z 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-08-14T20:48:04.0126310Z 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-08-14T20:48:04.0127330Z 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-08-14T20:48:04.0128460Z 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-08-14T20:48:04.0129630Z 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-08-14T20:48:04.0130740Z 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-08-14T20:48:04.0131930Z 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-08-14T20:48:04.0133030Z 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-08-14T20:48:04.0134410Z 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-08-14T20:48:04.0135470Z 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-08-14T20:48:04.0136600Z 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-08-14T20:48:04.0137730Z 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-08-14T20:48:04.0138810Z 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-08-14T20:48:04.0139920Z 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-08-14T20:48:04.0140970Z 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-08-14T20:48:04.0142070Z 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-08-14T20:48:04.0143250Z 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-08-14T20:48:04.0144410Z 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-08-14T20:48:04.0145630Z 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-08-14T20:48:04.0146840Z 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-08-14T20:48:04.0148070Z 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-08-14T20:48:04.0149200Z 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-08-14T20:48:04.0150340Z 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-08-14T20:48:04.0151360Z 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-08-14T20:48:04.0152490Z 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-08-14T20:48:04.0153630Z 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-08-14T20:48:04.0154740Z 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-08-14T20:48:04.0155910Z 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-08-14T20:48:04.0156930Z 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-08-14T20:48:04.0158060Z 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-08-14T20:48:04.0159170Z 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-08-14T20:48:04.0160280Z 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-08-14T20:48:04.0161360Z 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-08-14T20:48:04.0162420Z 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-08-14T20:48:04.0163630Z 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-08-14T20:48:04.0164750Z 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-08-14T20:48:04.0165810Z 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-08-14T20:48:04.0166910Z 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-08-14T20:48:04.0168570Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit 2025-08-14T20:48:04.0169150Z 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-08-14T20:48:04.0170570Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-08-14T20:48:04.0171300Z 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-08-14T20:48:04.0172430Z 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-08-14T20:48:04.0173770Z 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-08-14T20:48:04.0174970Z 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-08-14T20:48:04.0176070Z 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-08-14T20:48:04.0177220Z 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-08-14T20:48:04.0178300Z 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-08-14T20:48:04.0179650Z 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-08-14T20:48:04.0180810Z 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-08-14T20:48:04.0181880Z 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-08-14T20:48:04.0182940Z 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-08-14T20:48:04.0184070Z 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-08-14T20:48:04.0185230Z 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-08-14T20:48:04.0186340Z 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-08-14T20:48:04.0187500Z 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-08-14T20:48:04.0188660Z 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-08-14T20:48:04.0189920Z 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-08-14T20:48:04.0191020Z 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-08-14T20:48:04.0192090Z 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-08-14T20:48:04.0193230Z 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-08-14T20:48:04.0194350Z 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-08-14T20:48:04.0195410Z 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-08-14T20:48:04.0196490Z 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-08-14T20:48:04.0197780Z 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-08-14T20:48:04.0198840Z 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-08-14T20:48:04.0199920Z 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-08-14T20:48:04.0201000Z 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-08-14T20:48:04.0202140Z 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-08-14T20:48:04.0203560Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/python 2025-08-14T20:48:04.0204500Z 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-08-14T20:48:04.0205870Z 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-08-14T20:48:04.0207040Z 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-08-14T20:48:04.0208230Z 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-08-14T20:48:04.0209360Z 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-08-14T20:48:04.0210440Z 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-08-14T20:48:04.0211580Z 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-08-14T20:48:04.0212760Z 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-08-14T20:48:04.0213830Z 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-08-14T20:48:04.0215010Z 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-08-14T20:48:04.0216160Z 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-08-14T20:48:04.0217290Z 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-08-14T20:48:04.0218640Z 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-08-14T20:48:04.0219820Z 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-08-14T20:48:04.0220980Z 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-08-14T20:48:04.0222080Z 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-08-14T20:48:04.0223720Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-08-14T20:48:04.0224450Z 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-08-14T20:48:04.0225650Z 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-08-14T20:48:04.0226820Z 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-08-14T20:48:04.0227910Z 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-08-14T20:48:04.0229040Z 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-08-14T20:48:04.0230100Z 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-08-14T20:48:04.0231150Z 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-08-14T20:48:04.0232520Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr/operators 2025-08-14T20:48:04.0233280Z 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-08-14T20:48:04.0234430Z 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-08-14T20:48:04.0235610Z 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-08-14T20:48:04.0236710Z 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-08-14T20:48:04.0237870Z 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-08-14T20:48:04.0238980Z 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-08-14T20:48:04.0240100Z 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-08-14T20:48:04.0241220Z 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-08-14T20:48:04.0242320Z 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-08-14T20:48:04.0243380Z 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-08-14T20:48:04.0244520Z 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-08-14T20:48:04.0245690Z 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-08-14T20:48:04.0246710Z 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-08-14T20:48:04.0248120Z 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-08-14T20:48:04.0249180Z 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-08-14T20:48:04.0250370Z 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-08-14T20:48:04.0251530Z 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-08-14T20:48:04.0252730Z 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-08-14T20:48:04.0253840Z 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-08-14T20:48:04.0254990Z 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-08-14T20:48:04.0256170Z 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-08-14T20:48:04.0257340Z 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-08-14T20:48:04.0258500Z 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-08-14T20:48:04.0259660Z 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-08-14T20:48:04.0260820Z 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-08-14T20:48:04.0261880Z 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-08-14T20:48:04.0263110Z 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-08-14T20:48:04.0264250Z 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-08-14T20:48:04.0265400Z 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-08-14T20:48:04.0266580Z 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-08-14T20:48:04.0267640Z 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-08-14T20:48:04.0268790Z 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-08-14T20:48:04.0270130Z 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-08-14T20:48:04.0271420Z 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-08-14T20:48:04.0272500Z 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-08-14T20:48:04.0273650Z 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-08-14T20:48:04.0274730Z 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-08-14T20:48:04.0275870Z 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-08-14T20:48:04.0277090Z 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-08-14T20:48:04.0278240Z 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-08-14T20:48:04.0279400Z 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-08-14T20:48:04.0280540Z 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-08-14T20:48:04.0281690Z 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-08-14T20:48:04.0282860Z 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-08-14T20:48:04.0284230Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/ir 2025-08-14T20:48:04.0284970Z 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-08-14T20:48:04.0286430Z 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-08-14T20:48:04.0287230Z 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-08-14T20:48:04.0288720Z 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-08-14T20:48:04.0289760Z 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-08-14T20:48:04.0290880Z 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-08-14T20:48:04.0292050Z 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-08-14T20:48:04.0293180Z 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-08-14T20:48:04.0294240Z 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-08-14T20:48:04.0295350Z 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-08-14T20:48:04.0296490Z 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-08-14T20:48:04.0297680Z 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-08-14T20:48:04.0298810Z 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-08-14T20:48:04.0300110Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/cuda 2025-08-14T20:48:04.0300830Z 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-08-14T20:48:04.0302350Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-08-14T20:48:04.0303080Z 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-08-14T20:48:04.0304300Z 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-08-14T20:48:04.0305420Z 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-08-14T20:48:04.0306590Z 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-08-14T20:48:04.0307860Z 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-08-14T20:48:04.0309050Z 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-08-14T20:48:04.0310240Z 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-08-14T20:48:04.0311460Z 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-08-14T20:48:04.0312650Z 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-08-14T20:48:04.0313940Z 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-08-14T20:48:04.0315150Z 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-08-14T20:48:04.0316390Z 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-08-14T20:48:04.0317670Z 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-08-14T20:48:04.0318960Z 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-08-14T20:48:04.0320370Z 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-08-14T20:48:04.0321850Z 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-08-14T20:48:04.0322980Z 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-08-14T20:48:04.0324200Z 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-08-14T20:48:04.0325430Z 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-08-14T20:48:04.0326720Z 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-08-14T20:48:04.0327940Z 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-08-14T20:48:04.0329850Z 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-08-14T20:48:04.0331780Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends 2025-08-14T20:48:04.0332410Z 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-08-14T20:48:04.0334000Z 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-08-14T20:48:04.0335120Z 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-08-14T20:48:04.0336400Z 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-08-14T20:48:04.0337830Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/coreml 2025-08-14T20:48:04.0338790Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/coreml/cpp 2025-08-14T20:48:04.0339610Z 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-08-14T20:48:04.0341070Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/coreml/objc 2025-08-14T20:48:04.0341890Z 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-08-14T20:48:04.0343150Z 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-08-14T20:48:04.0344380Z 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-08-14T20:48:04.0345630Z 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-08-14T20:48:04.0346820Z 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-08-14T20:48:04.0347900Z 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-08-14T20:48:04.0349330Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/xnnpack 2025-08-14T20:48:04.0350380Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/xnnpack/serialization 2025-08-14T20:48:04.0351280Z 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-08-14T20:48:04.0352530Z 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-08-14T20:48:04.0353940Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/xnnpack/executor 2025-08-14T20:48:04.0354620Z 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-08-14T20:48:04.0355960Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/xnnpack/compiler 2025-08-14T20:48:04.0356760Z 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-08-14T20:48:04.0357910Z 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-08-14T20:48:04.0359140Z 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-08-14T20:48:04.0360270Z 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-08-14T20:48:04.0361330Z 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-08-14T20:48:04.0362750Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-08-14T20:48:04.0363600Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime/interpreter 2025-08-14T20:48:04.0364430Z 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-08-14T20:48:04.0365580Z 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-08-14T20:48:04.0366750Z 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-08-14T20:48:04.0367880Z 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-08-14T20:48:04.0369130Z 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-08-14T20:48:04.0370290Z 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-08-14T20:48:04.0371380Z 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-08-14T20:48:04.0372510Z 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-08-14T20:48:04.0373650Z 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-08-14T20:48:04.0374840Z 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-08-14T20:48:04.0376090Z 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-08-14T20:48:04.0377580Z 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-08-14T20:48:04.0378660Z 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-08-14T20:48:04.0379860Z 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-08-14T20:48:04.0381070Z 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-08-14T20:48:04.0382200Z 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-08-14T20:48:04.0383320Z 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-08-14T20:48:04.0384600Z 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-08-14T20:48:04.0385810Z 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-08-14T20:48:04.0387140Z 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-08-14T20:48:04.0388360Z 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-08-14T20:48:04.0389600Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime/static 2025-08-14T20:48:04.0390490Z 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-08-14T20:48:04.0391930Z 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-08-14T20:48:04.0393140Z 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-08-14T20:48:04.0394340Z 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-08-14T20:48:04.0395430Z 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-08-14T20:48:04.0396670Z 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-08-14T20:48:04.0398030Z 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-08-14T20:48:04.0399200Z 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-08-14T20:48:04.0400770Z 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-08-14T20:48:04.0401950Z 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-08-14T20:48:04.0403160Z 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-08-14T20:48:04.0404380Z 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-08-14T20:48:04.0405680Z 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-08-14T20:48:04.0406790Z 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-08-14T20:48:04.0408040Z 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-08-14T20:48:04.0409300Z 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-08-14T20:48:04.0410470Z 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-08-14T20:48:04.0411580Z 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-08-14T20:48:04.0412810Z 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-08-14T20:48:04.0414020Z 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-08-14T20:48:04.0415180Z 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-08-14T20:48:04.0416370Z 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-08-14T20:48:04.0417530Z 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-08-14T20:48:04.0418730Z 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-08-14T20:48:04.0420770Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-08-14T20:48:04.0421460Z 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-08-14T20:48:04.0422750Z 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-08-14T20:48:04.0423910Z 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-08-14T20:48:04.0425290Z 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-08-14T20:48:04.0426340Z 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-08-14T20:48:04.0427530Z 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-08-14T20:48:04.0428650Z 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-08-14T20:48:04.0429810Z 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-08-14T20:48:04.0431010Z 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-08-14T20:48:04.0432190Z 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-08-14T20:48:04.0433340Z 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-08-14T20:48:04.0434470Z 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-08-14T20:48:04.0435660Z 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-08-14T20:48:04.0436780Z 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-08-14T20:48:04.0437920Z 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-08-14T20:48:04.0439090Z 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-08-14T20:48:04.0440550Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx 2025-08-14T20:48:04.0441250Z 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-08-14T20:48:04.0442430Z 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-08-14T20:48:04.0443530Z 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-08-14T20:48:04.0444660Z 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-08-14T20:48:04.0445750Z 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-08-14T20:48:04.0446830Z 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-08-14T20:48:04.0448020Z 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-08-14T20:48:04.0449080Z 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-08-14T20:48:04.0450260Z 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-08-14T20:48:04.0451410Z 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-08-14T20:48:04.0452500Z 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-08-14T20:48:04.0453650Z 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-08-14T20:48:04.0454820Z 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-08-14T20:48:04.0455960Z 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-08-14T20:48:04.0457010Z 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-08-14T20:48:04.0458150Z 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-08-14T20:48:04.0459260Z 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-08-14T20:48:04.0460510Z 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-08-14T20:48:04.0461740Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx/pattern_conversion 2025-08-14T20:48:04.0462700Z 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-08-14T20:48:04.0464090Z 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-08-14T20:48:04.0465210Z 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-08-14T20:48:04.0466330Z 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-08-14T20:48:04.0467390Z 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-08-14T20:48:04.0468610Z 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-08-14T20:48:04.0469680Z 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-08-14T20:48:04.0471090Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/dbr_quantization 2025-08-14T20:48:04.0471950Z 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-08-14T20:48:04.0472990Z 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-08-14T20:48:04.0474210Z 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-08-14T20:48:04.0475270Z 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-08-14T20:48:04.0476390Z 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-08-14T20:48:04.0477530Z 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-08-14T20:48:04.0478630Z 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-08-14T20:48:04.0479830Z 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-08-14T20:48:04.0480970Z 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-08-14T20:48:04.0482120Z 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-08-14T20:48:04.0483220Z 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-08-14T20:48:04.0484370Z 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-08-14T20:48:04.0485430Z 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-08-14T20:48:04.0486560Z 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-08-14T20:48:04.0487680Z 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-08-14T20:48:04.0488840Z 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-08-14T20:48:04.0490000Z 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-08-14T20:48:04.0491300Z 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-08-14T20:48:04.0492520Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/utils 2025-08-14T20:48:04.0493360Z 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-08-14T20:48:04.0494500Z 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-08-14T20:48:04.0495570Z 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-08-14T20:48:04.0496620Z 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-08-14T20:48:04.0497760Z 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-08-14T20:48:04.0498840Z 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-08-14T20:48:04.0499960Z 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-08-14T20:48:04.0501050Z 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-08-14T20:48:04.0502140Z 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-08-14T20:48:04.0503480Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/quantization 2025-08-14T20:48:04.0504400Z 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-08-14T20:48:04.0505480Z 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-08-14T20:48:04.0506570Z 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-08-14T20:48:04.0507710Z 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-08-14T20:48:04.0508740Z 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-08-14T20:48:04.0510200Z 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-08-14T20:48:04.0511380Z 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-08-14T20:48:04.0512470Z 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-08-14T20:48:04.0513540Z 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-08-14T20:48:04.0514580Z 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-08-14T20:48:04.0515760Z 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-08-14T20:48:04.0516850Z 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-08-14T20:48:04.0517940Z 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-08-14T20:48:04.0519140Z 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-08-14T20:48:04.0520240Z 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-08-14T20:48:04.0521380Z 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-08-14T20:48:04.0522480Z 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-08-14T20:48:04.0523620Z 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-08-14T20:48:04.0524810Z 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-08-14T20:48:04.0525980Z 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-08-14T20:48:04.0527090Z 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-08-14T20:48:04.0528260Z 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-08-14T20:48:04.0529330Z 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-08-14T20:48:04.0530490Z 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-08-14T20:48:04.0531600Z 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-08-14T20:48:04.0532730Z 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-08-14T20:48:04.0533850Z 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-08-14T20:48:04.0534980Z 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-08-14T20:48:04.0536310Z 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-08-14T20:48:04.0537180Z 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-08-14T20:48:04.0538330Z 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-08-14T20:48:04.0539410Z 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-08-14T20:48:04.0540480Z 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-08-14T20:48:04.0541580Z 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-08-14T20:48:04.0542740Z 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-08-14T20:48:04.0543810Z 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-08-14T20:48:04.0544940Z 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-08-14T20:48:04.0546010Z 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-08-14T20:48:04.0547270Z 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-08-14T20:48:04.0548350Z 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-08-14T20:48:04.0549460Z 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-08-14T20:48:04.0550580Z 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-08-14T20:48:04.0551800Z 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-08-14T20:48:04.0552990Z 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-08-14T20:48:04.0554090Z 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-08-14T20:48:04.0555260Z 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-08-14T20:48:04.0556440Z 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-08-14T20:48:04.0557680Z 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-08-14T20:48:04.0558830Z 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-08-14T20:48:04.0559880Z 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-08-14T20:48:04.0560970Z 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-08-14T20:48:04.0562070Z 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-08-14T20:48:04.0563210Z 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-08-14T20:48:04.0564310Z 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-08-14T20:48:04.0565380Z 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-08-14T20:48:04.0566510Z 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-08-14T20:48:04.0567670Z 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-08-14T20:48:04.0568810Z 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-08-14T20:48:04.0570100Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen 2025-08-14T20:48:04.0571070Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/cuda 2025-08-14T20:48:04.0572250Z 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-08-14T20:48:04.0573100Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/onednn 2025-08-14T20:48:04.0573920Z 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-08-14T20:48:04.0575100Z 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-08-14T20:48:04.0576290Z 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-08-14T20:48:04.0577320Z 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-08-14T20:48:04.0578460Z 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-08-14T20:48:04.0579590Z 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-08-14T20:48:04.0580690Z 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-08-14T20:48:04.0581760Z 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-08-14T20:48:04.0588300Z 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-08-14T20:48:04.0588900Z 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-08-14T20:48:04.0589380Z 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-08-14T20:48:04.0589560Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser 2025-08-14T20:48:04.0590000Z 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-08-14T20:48:04.0590440Z 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-08-14T20:48:04.0590890Z 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-08-14T20:48:04.0591380Z 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-08-14T20:48:04.0591750Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser/cpu 2025-08-14T20:48:04.0592580Z 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-08-14T20:48:04.0593690Z 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-08-14T20:48:04.0594890Z 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-08-14T20:48:04.0596240Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser/cuda 2025-08-14T20:48:04.0597110Z 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-08-14T20:48:04.0598280Z 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-08-14T20:48:04.0599410Z 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-08-14T20:48:04.0600520Z 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-08-14T20:48:04.0601660Z 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-08-14T20:48:04.0602780Z 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-08-14T20:48:04.0603860Z 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-08-14T20:48:04.0604970Z 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-08-14T20:48:04.0606090Z 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-08-14T20:48:04.0607190Z 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-08-14T20:48:04.0608430Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/testing 2025-08-14T20:48:04.0609250Z 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-08-14T20:48:04.0610430Z 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-08-14T20:48:04.0611640Z 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-08-14T20:48:04.0612580Z 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-08-14T20:48:04.0613950Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-08-14T20:48:04.0614900Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/compatibility 2025-08-14T20:48:04.0615760Z 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-08-14T20:48:04.0616890Z 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-08-14T20:48:04.0617990Z 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-08-14T20:48:04.0619100Z 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-08-14T20:48:04.0620350Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/model_tracer 2025-08-14T20:48:04.0621170Z 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-08-14T20:48:04.0622260Z 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-08-14T20:48:04.0623450Z 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-08-14T20:48:04.0624520Z 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-08-14T20:48:04.0625760Z 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-08-14T20:48:04.0626870Z 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-08-14T20:48:04.0627990Z 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-08-14T20:48:04.0628980Z 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-08-14T20:48:04.0630160Z 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-08-14T20:48:04.0631330Z 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-08-14T20:48:04.0632500Z 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-08-14T20:48:04.0633680Z 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-08-14T20:48:04.0634770Z 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-08-14T20:48:04.0635960Z 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-08-14T20:48:04.0637120Z 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-08-14T20:48:04.0638390Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/nnc 2025-08-14T20:48:04.0639160Z 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-08-14T20:48:04.0640300Z 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-08-14T20:48:04.0641410Z 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-08-14T20:48:04.0642490Z 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-08-14T20:48:04.0643590Z 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-08-14T20:48:04.0644700Z 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-08-14T20:48:04.0645790Z 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-08-14T20:48:04.0647010Z 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-08-14T20:48:04.0648140Z 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-08-14T20:48:04.0649210Z 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-08-14T20:48:04.0650410Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/train 2025-08-14T20:48:04.0651270Z 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-08-14T20:48:04.0652460Z 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-08-14T20:48:04.0653880Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/train/optim 2025-08-14T20:48:04.0654670Z 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-08-14T20:48:04.0655860Z 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-08-14T20:48:04.0657020Z 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-08-14T20:48:04.0658310Z 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-08-14T20:48:04.0659700Z 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-08-14T20:48:04.0660910Z 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-08-14T20:48:04.0661980Z 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-08-14T20:48:04.0663120Z 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-08-14T20:48:04.0664260Z 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-08-14T20:48:04.0665630Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/operator_upgraders 2025-08-14T20:48:04.0666430Z 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-08-14T20:48:04.0667690Z 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-08-14T20:48:04.0668880Z 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-08-14T20:48:04.0670060Z 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-08-14T20:48:04.0671040Z 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-08-14T20:48:04.0672440Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/api 2025-08-14T20:48:04.0673090Z 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-08-14T20:48:04.0674380Z 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-08-14T20:48:04.0675520Z 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-08-14T20:48:04.0676660Z 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-08-14T20:48:04.0677780Z 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-08-14T20:48:04.0679080Z 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-08-14T20:48:04.0680380Z 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-08-14T20:48:04.0681530Z 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-08-14T20:48:04.0682970Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy 2025-08-14T20:48:04.0683880Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/generated 2025-08-14T20:48:04.0684710Z 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-08-14T20:48:04.0686260Z 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-08-14T20:48:04.0687360Z 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-08-14T20:48:04.0690750Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-08-14T20:48:04.0691500Z 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-08-14T20:48:04.0692760Z 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-08-14T20:48:04.0693900Z 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-08-14T20:48:04.0695340Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core/internal_ops 2025-08-14T20:48:04.0696130Z 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-08-14T20:48:04.0697290Z 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-08-14T20:48:04.0698490Z 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-08-14T20:48:04.0699700Z 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-08-14T20:48:04.0700900Z 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-08-14T20:48:04.0702030Z 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-08-14T20:48:04.0703250Z 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-08-14T20:48:04.0704420Z 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-08-14T20:48:04.0705580Z 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-08-14T20:48:04.0706650Z 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-08-14T20:48:04.0707850Z 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-08-14T20:48:04.0708990Z 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-08-14T20:48:04.0710200Z 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-08-14T20:48:04.0711550Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core/ops 2025-08-14T20:48:04.0712310Z 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-08-14T20:48:04.0713600Z 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-08-14T20:48:04.0714690Z 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-08-14T20:48:04.0715930Z 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-08-14T20:48:04.0717140Z 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-08-14T20:48:04.0718320Z 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-08-14T20:48:04.0719560Z 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-08-14T20:48:04.0720750Z 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-08-14T20:48:04.0721980Z 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-08-14T20:48:04.0723160Z 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-08-14T20:48:04.0724310Z 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-08-14T20:48:04.0725550Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/python 2025-08-14T20:48:04.0726310Z 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-08-14T20:48:04.0727430Z 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-08-14T20:48:04.0728700Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend 2025-08-14T20:48:04.0729520Z 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-08-14T20:48:04.0730670Z 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-08-14T20:48:04.0731760Z 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-08-14T20:48:04.0732950Z 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-08-14T20:48:04.0734030Z 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-08-14T20:48:04.0735050Z 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-08-14T20:48:04.0736380Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend/ops 2025-08-14T20:48:04.0737280Z 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-08-14T20:48:04.0738570Z 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-08-14T20:48:04.0739750Z 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-08-14T20:48:04.0740860Z 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-08-14T20:48:04.0742010Z 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-08-14T20:48:04.0743250Z 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-08-14T20:48:04.0744340Z 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-08-14T20:48:04.0745600Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/backend 2025-08-14T20:48:04.0746400Z 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-08-14T20:48:04.0747610Z 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-08-14T20:48:04.0748670Z 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-08-14T20:48:04.0749740Z 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-08-14T20:48:04.0751140Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/mtia 2025-08-14T20:48:04.0751970Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/mtia/profiler 2025-08-14T20:48:04.0752800Z 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-08-14T20:48:04.0753930Z 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-08-14T20:48:04.0755250Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api 2025-08-14T20:48:04.0756100Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include 2025-08-14T20:48:04.0757120Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-08-14T20:48:04.0757870Z 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-08-14T20:48:04.0759010Z 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-08-14T20:48:04.0760250Z 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-08-14T20:48:04.0761400Z 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-08-14T20:48:04.0762770Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn 2025-08-14T20:48:04.0764000Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-08-14T20:48:04.0764900Z 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-08-14T20:48:04.0766230Z 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-08-14T20:48:04.0767430Z 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-08-14T20:48:04.0768630Z 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-08-14T20:48:04.0769740Z 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-08-14T20:48:04.0770980Z 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-08-14T20:48:04.0772030Z 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-08-14T20:48:04.0773260Z 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-08-14T20:48:04.0774390Z 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-08-14T20:48:04.0775650Z 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-08-14T20:48:04.0776760Z 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-08-14T20:48:04.0777940Z 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-08-14T20:48:04.0779080Z 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-08-14T20:48:04.0780460Z 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-08-14T20:48:04.0781530Z 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-08-14T20:48:04.0782830Z 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-08-14T20:48:04.0784010Z 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-08-14T20:48:04.0785160Z 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-08-14T20:48:04.0786300Z 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-08-14T20:48:04.0787520Z 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-08-14T20:48:04.0788650Z 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-08-14T20:48:04.0790110Z 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-08-14T20:48:04.0791320Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/parallel 2025-08-14T20:48:04.0792250Z 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-08-14T20:48:04.0793380Z 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-08-14T20:48:04.0794650Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/utils 2025-08-14T20:48:04.0795440Z 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-08-14T20:48:04.0796630Z 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-08-14T20:48:04.0797810Z 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-08-14T20:48:04.0798840Z 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-08-14T20:48:04.0799990Z 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-08-14T20:48:04.0801170Z 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-08-14T20:48:04.0802330Z 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-08-14T20:48:04.0803530Z 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-08-14T20:48:04.0805050Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-08-14T20:48:04.0805880Z 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-08-14T20:48:04.0807020Z 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-08-14T20:48:04.0808550Z 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-08-14T20:48:04.0809330Z 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-08-14T20:48:04.0810480Z 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-08-14T20:48:04.0811570Z 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-08-14T20:48:04.0812770Z 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-08-14T20:48:04.0814200Z 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-08-14T20:48:04.0816480Z 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-08-14T20:48:04.0817720Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-08-14T20:48:04.0818560Z 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-08-14T20:48:04.0819780Z 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-08-14T20:48:04.0820960Z 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-08-14T20:48:04.0822190Z 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-08-14T20:48:04.0823310Z 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-08-14T20:48:04.0824470Z 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-08-14T20:48:04.0825700Z 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-08-14T20:48:04.0826920Z 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-08-14T20:48:04.0828010Z 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-08-14T20:48:04.0829190Z 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-08-14T20:48:04.0830280Z 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-08-14T20:48:04.0831410Z 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-08-14T20:48:04.0832590Z 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-08-14T20:48:04.0833710Z 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-08-14T20:48:04.0834870Z 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-08-14T20:48:04.0836070Z 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-08-14T20:48:04.0837390Z 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-08-14T20:48:04.0838460Z 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-08-14T20:48:04.0839890Z 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-08-14T20:48:04.0840990Z 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-08-14T20:48:04.0842140Z 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-08-14T20:48:04.0843280Z 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-08-14T20:48:04.0844450Z 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-08-14T20:48:04.0845570Z 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-08-14T20:48:04.0846750Z 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-08-14T20:48:04.0847890Z 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-08-14T20:48:04.0849250Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-08-14T20:48:04.0850120Z 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-08-14T20:48:04.0851250Z 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-08-14T20:48:04.0852320Z 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-08-14T20:48:04.0853430Z 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-08-14T20:48:04.0854550Z 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-08-14T20:48:04.0855860Z 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-08-14T20:48:04.0856950Z 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-08-14T20:48:04.0858020Z 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-08-14T20:48:04.0859170Z 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-08-14T20:48:04.0860320Z 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-08-14T20:48:04.0861590Z 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-08-14T20:48:04.0862900Z 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-08-14T20:48:04.0864250Z 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-08-14T20:48:04.0865430Z 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-08-14T20:48:04.0866630Z 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-08-14T20:48:04.0867880Z 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-08-14T20:48:04.0869330Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/python 2025-08-14T20:48:04.0870030Z 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-08-14T20:48:04.0871090Z 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-08-14T20:48:04.0872240Z 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-08-14T20:48:04.0873380Z 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-08-14T20:48:04.0874510Z 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-08-14T20:48:04.0875670Z 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-08-14T20:48:04.0876780Z 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-08-14T20:48:04.0878210Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/optim 2025-08-14T20:48:04.0879060Z 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-08-14T20:48:04.0880340Z 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-08-14T20:48:04.0881500Z 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-08-14T20:48:04.0882660Z 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-08-14T20:48:04.0883840Z 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-08-14T20:48:04.0885030Z 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-08-14T20:48:04.0886150Z 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-08-14T20:48:04.0887410Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/optim/schedulers 2025-08-14T20:48:04.0888280Z 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-08-14T20:48:04.0889420Z 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-08-14T20:48:04.0890590Z 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-08-14T20:48:04.0891630Z 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-08-14T20:48:04.0892870Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/serialize 2025-08-14T20:48:04.0893710Z 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-08-14T20:48:04.0894890Z 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-08-14T20:48:04.0896060Z 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-08-14T20:48:04.0897240Z 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-08-14T20:48:04.0898350Z 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-08-14T20:48:04.0899580Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nativert 2025-08-14T20:48:04.0900360Z 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-08-14T20:48:04.0901410Z 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-08-14T20:48:04.0902490Z 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-08-14T20:48:04.0903710Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/detail 2025-08-14T20:48:04.0904470Z 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-08-14T20:48:04.0905680Z 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-08-14T20:48:04.0906770Z 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-08-14T20:48:04.0907900Z 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-08-14T20:48:04.0909010Z 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-08-14T20:48:04.0910200Z 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-08-14T20:48:04.0911350Z 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-08-14T20:48:04.0912590Z 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-08-14T20:48:04.0913990Z 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-08-14T20:48:04.0915130Z 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-08-14T20:48:04.0916280Z 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-08-14T20:48:04.0917480Z 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-08-14T20:48:04.0918800Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data 2025-08-14T20:48:04.0919580Z 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-08-14T20:48:04.0920750Z 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-08-14T20:48:04.0921970Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/datasets 2025-08-14T20:48:04.0922770Z 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-08-14T20:48:04.0923900Z 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-08-14T20:48:04.0925020Z 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-08-14T20:48:04.0926200Z 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-08-14T20:48:04.0927470Z 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-08-14T20:48:04.0928620Z 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-08-14T20:48:04.0929720Z 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-08-14T20:48:04.0930870Z 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-08-14T20:48:04.0932030Z 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-08-14T20:48:04.0933480Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/detail 2025-08-14T20:48:04.0934180Z 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-08-14T20:48:04.0935300Z 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-08-14T20:48:04.0936420Z 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-08-14T20:48:04.0937520Z 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-08-14T20:48:04.0939010Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/transforms 2025-08-14T20:48:04.0939700Z 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-08-14T20:48:04.0940880Z 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-08-14T20:48:04.0942060Z 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-08-14T20:48:04.0943140Z 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-08-14T20:48:04.0944310Z 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-08-14T20:48:04.0945520Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/samplers 2025-08-14T20:48:04.0946350Z 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-08-14T20:48:04.0947560Z 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-08-14T20:48:04.0948720Z 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-08-14T20:48:04.0949920Z 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-08-14T20:48:04.0951010Z 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-08-14T20:48:04.0952110Z 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-08-14T20:48:04.0953260Z 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-08-14T20:48:04.0954410Z 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-08-14T20:48:04.0955540Z 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-08-14T20:48:04.0956650Z 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-08-14T20:48:04.0957920Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/dataloader 2025-08-14T20:48:04.0958740Z 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-08-14T20:48:04.0959890Z 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-08-14T20:48:04.0961000Z 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-08-14T20:48:04.0962190Z 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-08-14T20:48:04.0963320Z 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-08-14T20:48:04.0964460Z 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-08-14T20:48:04.0965930Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler 2025-08-14T20:48:04.0966830Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/stubs 2025-08-14T20:48:04.0967530Z 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-08-14T20:48:04.0968630Z 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-08-14T20:48:04.0969830Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/standalone 2025-08-14T20:48:04.0970620Z 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-08-14T20:48:04.0971750Z 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-08-14T20:48:04.0972890Z 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-08-14T20:48:04.0974050Z 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-08-14T20:48:04.0975200Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/python 2025-08-14T20:48:04.0975920Z 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-08-14T20:48:04.0977120Z 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-08-14T20:48:04.0978190Z 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-08-14T20:48:04.0979270Z 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-08-14T20:48:04.0980450Z 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-08-14T20:48:04.0981520Z 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-08-14T20:48:04.0982760Z 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-08-14T20:48:04.0983960Z 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-08-14T20:48:04.0985280Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/orchestration 2025-08-14T20:48:04.0986060Z 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-08-14T20:48:04.0987160Z 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-08-14T20:48:04.0988280Z 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-08-14T20:48:04.0989670Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-08-14T20:48:04.0990240Z 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-08-14T20:48:04.0991340Z 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-08-14T20:48:04.0992450Z 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-08-14T20:48:04.0993560Z 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-08-14T20:48:04.0994690Z 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-08-14T20:48:04.0995880Z 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-08-14T20:48:04.0996990Z 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-08-14T20:48:04.0998100Z 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-08-14T20:48:04.0999260Z 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-08-14T20:48:04.1000480Z 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-08-14T20:48:04.1001620Z 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-08-14T20:48:04.1002780Z 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-08-14T20:48:04.1003840Z 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-08-14T20:48:04.1005020Z 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-08-14T20:48:04.1006190Z 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-08-14T20:48:04.1007390Z 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-08-14T20:48:04.1008430Z 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-08-14T20:48:04.1009570Z 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-08-14T20:48:04.1010920Z 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-08-14T20:48:04.1012020Z 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-08-14T20:48:04.1013130Z 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-08-14T20:48:04.1014690Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/tensor 2025-08-14T20:48:04.1015310Z 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-08-14T20:48:04.1016410Z 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-08-14T20:48:04.1017550Z 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-08-14T20:48:04.1018890Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/export 2025-08-14T20:48:04.1019600Z 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-08-14T20:48:04.1020780Z 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-08-14T20:48:04.1021950Z 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-08-14T20:48:04.1023050Z 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-08-14T20:48:04.1024130Z 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-08-14T20:48:04.1025240Z 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-08-14T20:48:04.1026410Z 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-08-14T20:48:04.1027840Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/functorch 2025-08-14T20:48:04.1028550Z 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-08-14T20:48:04.1029710Z 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-08-14T20:48:04.1030810Z 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-08-14T20:48:04.1031950Z 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-08-14T20:48:04.1033070Z 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-08-14T20:48:04.1034360Z 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-08-14T20:48:04.1035730Z 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-08-14T20:48:04.1036840Z 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-08-14T20:48:04.1038140Z 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-08-14T20:48:04.1039250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/nnpack.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-08-14T20:48:04.1041060Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kineto 2025-08-14T20:48:04.1041890Z 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-08-14T20:48:04.1043270Z 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-08-14T20:48:04.1044350Z 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-08-14T20:48:04.1045560Z 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-08-14T20:48:04.1046680Z 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-08-14T20:48:04.1047860Z 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-08-14T20:48:04.1048960Z 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-08-14T20:48:04.1050230Z 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-08-14T20:48:04.1051370Z 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-08-14T20:48:04.1052540Z 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-08-14T20:48:04.1053530Z 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-08-14T20:48:04.1054910Z 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-08-14T20:48:04.1056000Z 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-08-14T20:48:04.1057140Z 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-08-14T20:48:04.1058340Z 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-08-14T20:48:04.1059440Z 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-08-14T20:48:04.1060540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/xnnpack.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-08-14T20:48:04.1063370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/libshm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-08-14T20:48:04.1064110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/fp16.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-08-14T20:48:04.1065320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/qnnpack_func.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-08-14T20:48:04.1066680Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai 2025-08-14T20:48:04.1067380Z 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-08-14T20:48:04.1068940Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels 2025-08-14T20:48:04.1070160Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul 2025-08-14T20:48:04.1071340Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-08-14T20:48:04.1072370Z 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-08-14T20:48:04.1073830Z 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-08-14T20:48:04.1075110Z 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-08-14T20:48:04.1076460Z 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-08-14T20:48:04.1077810Z 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-08-14T20:48:04.1079330Z 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-08-14T20:48:04.1080620Z 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-08-14T20:48:04.1081930Z 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-08-14T20:48:04.1083310Z 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-08-14T20:48:04.1084580Z 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-08-14T20:48:04.1086130Z 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-08-14T20:48:04.1087290Z 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-08-14T20:48:04.1088530Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp 2025-08-14T20:48:04.1089470Z 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-08-14T20:48:04.1090720Z 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-08-14T20:48:04.1091940Z 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-08-14T20:48:04.1093250Z 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-08-14T20:48:04.1094470Z 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-08-14T20:48:04.1095640Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p 2025-08-14T20:48:04.1096540Z 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-08-14T20:48:04.1097710Z 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-08-14T20:48:04.1098990Z 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-08-14T20:48:04.1100280Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p 2025-08-14T20:48:04.1101080Z 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-08-14T20:48:04.1102240Z 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-08-14T20:48:04.1103340Z 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-08-14T20:48:04.1104520Z 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-08-14T20:48:04.1105850Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p 2025-08-14T20:48:04.1106820Z 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-08-14T20:48:04.1108210Z 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-08-14T20:48:04.1109480Z 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-08-14T20:48:04.1110880Z 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-08-14T20:48:04.1112210Z 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-08-14T20:48:04.1113520Z 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-08-14T20:48:04.1114910Z 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-08-14T20:48:04.1116180Z 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-08-14T20:48:04.1117700Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p 2025-08-14T20:48:04.1118610Z 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-08-14T20:48:04.1119940Z 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-08-14T20:48:04.1121240Z 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-08-14T20:48:04.1122740Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-08-14T20:48:04.1123590Z 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-08-14T20:48:04.1125000Z 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-08-14T20:48:04.1126300Z 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-08-14T20:48:04.1127550Z 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-08-14T20:48:04.1128780Z 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-08-14T20:48:04.1130020Z 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-08-14T20:48:04.1131300Z 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-08-14T20:48:04.1132640Z 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-08-14T20:48:04.1133860Z 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-08-14T20:48:04.1135120Z 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-08-14T20:48:04.1136470Z 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-08-14T20:48:04.1137740Z 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-08-14T20:48:04.1139100Z 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-08-14T20:48:04.1140400Z 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-08-14T20:48:04.1141600Z 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-08-14T20:48:04.1142790Z 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-08-14T20:48:04.1143950Z 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-08-14T20:48:04.1145200Z 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-08-14T20:48:04.1146330Z 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-08-14T20:48:04.1147470Z 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-08-14T20:48:04.1148740Z 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-08-14T20:48:04.1149980Z 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-08-14T20:48:04.1151350Z 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-08-14T20:48:04.1152660Z 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-08-14T20:48:04.1153870Z 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-08-14T20:48:04.1155040Z 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-08-14T20:48:04.1156220Z 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-08-14T20:48:04.1157510Z 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-08-14T20:48:04.1158530Z 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-08-14T20:48:04.1159720Z 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-08-14T20:48:04.1160950Z 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-08-14T20:48:04.1162060Z 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-08-14T20:48:04.1163200Z 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-08-14T20:48:04.1164400Z 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-08-14T20:48:04.1165600Z 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-08-14T20:48:04.1166730Z 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-08-14T20:48:04.1167900Z 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-08-14T20:48:04.1169040Z 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-08-14T20:48:04.1170200Z 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-08-14T20:48:04.1171430Z 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-08-14T20:48:04.1172620Z 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-08-14T20:48:04.1174030Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-08-14T20:48:04.1174960Z 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-08-14T20:48:04.1176170Z 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-08-14T20:48:04.1177430Z 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-08-14T20:48:04.1178580Z 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-08-14T20:48:04.1179780Z 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-08-14T20:48:04.1181010Z 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-08-14T20:48:04.1182250Z 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-08-14T20:48:04.1183510Z 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-08-14T20:48:04.1184650Z 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-08-14T20:48:04.1185890Z 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-08-14T20:48:04.1187040Z 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-08-14T20:48:04.1188290Z 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-08-14T20:48:04.1189490Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8_qsi8cxp 2025-08-14T20:48:04.1190370Z 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-08-14T20:48:04.1197040Z 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-08-14T20:48:04.1197440Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/imatmul_clamp_qai8_qai8p_qsi8cxp 2025-08-14T20:48:04.1198190Z 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-08-14T20:48:04.1198850Z 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-08-14T20:48:04.1199120Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp 2025-08-14T20:48:04.1199790Z 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-08-14T20:48:04.1200480Z 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-08-14T20:48:04.1201210Z 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-08-14T20:48:04.1201920Z 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-08-14T20:48:04.1202590Z 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-08-14T20:48:04.1202850Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp 2025-08-14T20:48:04.1203540Z 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-08-14T20:48:04.1204740Z 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-08-14T20:48:04.1205890Z 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-08-14T20:48:04.1207100Z 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-08-14T20:48:04.1208320Z 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-08-14T20:48:04.1209380Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p 2025-08-14T20:48:04.1210340Z 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-08-14T20:48:04.1211480Z 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-08-14T20:48:04.1212700Z 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-08-14T20:48:04.1213860Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p 2025-08-14T20:48:04.1214780Z 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-08-14T20:48:04.1215950Z 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-08-14T20:48:04.1217240Z 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-08-14T20:48:04.1218350Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_fp32_bf16p_bf16p 2025-08-14T20:48:04.1219300Z 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-08-14T20:48:04.1220500Z 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-08-14T20:48:04.1221610Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32p_f32p 2025-08-14T20:48:04.1222480Z 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-08-14T20:48:04.1223760Z 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-08-14T20:48:04.1224940Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16p_f16p 2025-08-14T20:48:04.1225980Z 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-08-14T20:48:04.1227250Z 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-08-14T20:48:04.1228600Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8p_qsi8cxp 2025-08-14T20:48:04.1229460Z 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-08-14T20:48:04.1230700Z 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-08-14T20:48:04.1231880Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/imatmul_clamp_f16_f16p_f16p 2025-08-14T20:48:04.1232720Z 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-08-14T20:48:04.1233960Z 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-08-14T20:48:04.1235140Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_bf16p_bf16p 2025-08-14T20:48:04.1236060Z 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-08-14T20:48:04.1237280Z 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-08-14T20:48:04.1238570Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/imatmul_clamp_f32_f32p_f32p 2025-08-14T20:48:04.1239400Z 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-08-14T20:48:04.1240610Z 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-08-14T20:48:04.1241480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pthreadpool.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-08-14T20:48:04.1243550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/clog.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-08-14T20:48:04.1244290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/omp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-08-14T20:48:04.1246850Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-08-14T20:48:04.1247160Z 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-08-14T20:48:04.1248250Z 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-08-14T20:48:04.1249350Z 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-08-14T20:48:04.1250470Z 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-08-14T20:48:04.1251570Z 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-08-14T20:48:04.1252590Z 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-08-14T20:48:04.1253800Z 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-08-14T20:48:04.1254870Z 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-08-14T20:48:04.1255960Z 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-08-14T20:48:04.1257140Z 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-08-14T20:48:04.1258210Z 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-08-14T20:48:04.1259300Z 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-08-14T20:48:04.1260450Z 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-08-14T20:48:04.1261680Z 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-08-14T20:48:04.1262740Z 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-08-14T20:48:04.1263800Z 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-08-14T20:48:04.1264870Z 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-08-14T20:48:04.1265940Z 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-08-14T20:48:04.1267080Z 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-08-14T20:48:04.1268200Z 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-08-14T20:48:04.1269900Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-08-14T20:48:04.1270560Z 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-08-14T20:48:04.1271690Z 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-08-14T20:48:04.1272770Z 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-08-14T20:48:04.1275660Z 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-08-14T20:48:04.1276590Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/op_registration 2025-08-14T20:48:04.1277340Z 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-08-14T20:48:04.1278470Z 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-08-14T20:48:04.1279660Z 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-08-14T20:48:04.1280850Z 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-08-14T20:48:04.1281860Z 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-08-14T20:48:04.1283120Z 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-08-14T20:48:04.1284250Z 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-08-14T20:48:04.1285410Z 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-08-14T20:48:04.1286570Z 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-08-14T20:48:04.1287680Z 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-08-14T20:48:04.1288910Z 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-08-14T20:48:04.1289940Z 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-08-14T20:48:04.1291000Z 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-08-14T20:48:04.1292090Z 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-08-14T20:48:04.1293170Z 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-08-14T20:48:04.1294310Z 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-08-14T20:48:04.1295600Z 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-08-14T20:48:04.1296850Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/dispatch 2025-08-14T20:48:04.1297590Z 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-08-14T20:48:04.1298860Z 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-08-14T20:48:04.1299900Z 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-08-14T20:48:04.1301130Z 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-08-14T20:48:04.1302280Z 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-08-14T20:48:04.1303560Z 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-08-14T20:48:04.1304760Z 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-08-14T20:48:04.1305890Z 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-08-14T20:48:04.1306980Z 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-08-14T20:48:04.1308120Z 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-08-14T20:48:04.1309650Z 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-08-14T20:48:04.1310700Z 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-08-14T20:48:04.1311860Z 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-08-14T20:48:04.1312930Z 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-08-14T20:48:04.1314030Z 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-08-14T20:48:04.1315140Z 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-08-14T20:48:04.1316180Z 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-08-14T20:48:04.1317360Z 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-08-14T20:48:04.1318550Z 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-08-14T20:48:04.1319660Z 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-08-14T20:48:04.1320880Z 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-08-14T20:48:04.1322040Z 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-08-14T20:48:04.1323190Z 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-08-14T20:48:04.1324420Z 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-08-14T20:48:04.1325850Z 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-08-14T20:48:04.1326920Z 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-08-14T20:48:04.1328020Z 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-08-14T20:48:04.1329180Z 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-08-14T20:48:04.1330320Z 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-08-14T20:48:04.1331480Z 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-08-14T20:48:04.1332610Z 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-08-14T20:48:04.1333790Z 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-08-14T20:48:04.1334870Z 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-08-14T20:48:04.1335980Z 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-08-14T20:48:04.1337110Z 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-08-14T20:48:04.1338260Z 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-08-14T20:48:04.1339310Z 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-08-14T20:48:04.1340460Z 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-08-14T20:48:04.1341730Z 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-08-14T20:48:04.1342890Z 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-08-14T20:48:04.1344000Z 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-08-14T20:48:04.1345270Z 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-08-14T20:48:04.1346550Z 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-08-14T20:48:04.1347610Z 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-08-14T20:48:04.1348710Z 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-08-14T20:48:04.1349800Z 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-08-14T20:48:04.1350930Z 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-08-14T20:48:04.1352010Z 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-08-14T20:48:04.1353190Z 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-08-14T20:48:04.1354790Z 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-08-14T20:48:04.1356330Z 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-08-14T20:48:04.1357890Z 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-08-14T20:48:04.1359080Z 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-08-14T20:48:04.1360400Z 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-08-14T20:48:04.1361860Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/boxing 2025-08-14T20:48:04.1362760Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/boxing/impl 2025-08-14T20:48:04.1363580Z 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-08-14T20:48:04.1364880Z 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-08-14T20:48:04.1366040Z 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-08-14T20:48:04.1367430Z 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-08-14T20:48:04.1368760Z 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-08-14T20:48:04.1369810Z 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-08-14T20:48:04.1370920Z 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-08-14T20:48:04.1371980Z 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-08-14T20:48:04.1373160Z 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-08-14T20:48:04.1374250Z 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-08-14T20:48:04.1375570Z 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-08-14T20:48:04.1376760Z 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-08-14T20:48:04.1377870Z 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-08-14T20:48:04.1378930Z 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-08-14T20:48:04.1380030Z 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-08-14T20:48:04.1381140Z 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-08-14T20:48:04.1382390Z 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-08-14T20:48:04.1383580Z 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-08-14T20:48:04.1384720Z 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-08-14T20:48:04.1386380Z 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-08-14T20:48:04.1387530Z 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-08-14T20:48:04.1388540Z 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-08-14T20:48:04.1389710Z 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-08-14T20:48:04.1392010Z 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-08-14T20:48:04.1393030Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/mps 2025-08-14T20:48:04.1393740Z 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-08-14T20:48:04.1395050Z 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-08-14T20:48:04.1396090Z 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-08-14T20:48:04.1397250Z 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-08-14T20:48:04.1398360Z 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-08-14T20:48:04.1399660Z 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-08-14T20:48:04.1400790Z 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-08-14T20:48:04.1401910Z 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-08-14T20:48:04.1402980Z 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-08-14T20:48:04.1404110Z 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-08-14T20:48:04.1405230Z 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-08-14T20:48:04.1407980Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-08-14T20:48:04.1408390Z 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-08-14T20:48:04.1409320Z 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-08-14T20:48:04.1410510Z 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-08-14T20:48:04.1411550Z 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-08-14T20:48:04.1412670Z 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-08-14T20:48:04.1414050Z 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-08-14T20:48:04.1415110Z 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-08-14T20:48:04.1416210Z 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-08-14T20:48:04.1417350Z 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-08-14T20:48:04.1418510Z 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-08-14T20:48:04.1419690Z 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-08-14T20:48:04.1420870Z 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-08-14T20:48:04.1422010Z 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-08-14T20:48:04.1423110Z 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-08-14T20:48:04.1424150Z 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-08-14T20:48:04.1425690Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/ao_sparse 2025-08-14T20:48:04.1426440Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/ao_sparse/quantized 2025-08-14T20:48:04.1427470Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/ao_sparse/quantized/cpu 2025-08-14T20:48:04.1428350Z 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-08-14T20:48:04.1429600Z 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-08-14T20:48:04.1430730Z 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-08-14T20:48:04.1431700Z 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-08-14T20:48:04.1432830Z 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-08-14T20:48:04.1433860Z 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-08-14T20:48:04.1434950Z 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-08-14T20:48:04.1436210Z 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-08-14T20:48:04.1437450Z 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-08-14T20:48:04.1438550Z 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-08-14T20:48:04.1439620Z 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-08-14T20:48:04.1440790Z 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-08-14T20:48:04.1441890Z 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-08-14T20:48:04.1443060Z 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-08-14T20:48:04.1444390Z 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-08-14T20:48:04.1445680Z 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-08-14T20:48:04.1447150Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mps 2025-08-14T20:48:04.1447900Z 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-08-14T20:48:04.1449150Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mps/kernels 2025-08-14T20:48:04.1449940Z 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-08-14T20:48:04.1451030Z 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-08-14T20:48:04.1452300Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mps/operations 2025-08-14T20:48:04.1453130Z 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-08-14T20:48:04.1454510Z 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-08-14T20:48:04.1455650Z 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-08-14T20:48:04.1456820Z 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-08-14T20:48:04.1457960Z 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-08-14T20:48:04.1459130Z 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-08-14T20:48:04.1460290Z 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-08-14T20:48:04.1461590Z 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-08-14T20:48:04.1462820Z 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-08-14T20:48:04.1463920Z 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-08-14T20:48:04.1464990Z 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-08-14T20:48:04.1466230Z 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-08-14T20:48:04.1467350Z 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-08-14T20:48:04.1469060Z 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-08-14T20:48:04.1470190Z 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-08-14T20:48:04.1471260Z 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-08-14T20:48:04.1472370Z 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-08-14T20:48:04.1473770Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal 2025-08-14T20:48:04.1474550Z 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-08-14T20:48:04.1475960Z 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-08-14T20:48:04.1477020Z 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-08-14T20:48:04.1478100Z 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-08-14T20:48:04.1479260Z 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-08-14T20:48:04.1480450Z 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-08-14T20:48:04.1481530Z 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-08-14T20:48:04.1483210Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal/mpscnn 2025-08-14T20:48:04.1484160Z 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-08-14T20:48:04.1485110Z 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-08-14T20:48:04.1486360Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal/mpscnn/tests 2025-08-14T20:48:04.1487190Z 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-08-14T20:48:04.1488400Z 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-08-14T20:48:04.1489520Z 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-08-14T20:48:04.1490990Z 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-08-14T20:48:04.1492280Z 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-08-14T20:48:04.1493490Z 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-08-14T20:48:04.1494760Z 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-08-14T20:48:04.1496090Z 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-08-14T20:48:04.1497350Z 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-08-14T20:48:04.1498750Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal/ops 2025-08-14T20:48:04.1499630Z 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-08-14T20:48:04.1500920Z 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-08-14T20:48:04.1502210Z 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-08-14T20:48:04.1503410Z 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-08-14T20:48:04.1504520Z 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-08-14T20:48:04.1506100Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-08-14T20:48:04.1506860Z 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-08-14T20:48:04.1508020Z 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-08-14T20:48:04.1509310Z 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-08-14T20:48:04.1510570Z 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-08-14T20:48:04.1511880Z 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-08-14T20:48:04.1512990Z 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-08-14T20:48:04.1514330Z 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-08-14T20:48:04.1515780Z 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-08-14T20:48:04.1516960Z 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-08-14T20:48:04.1518160Z 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-08-14T20:48:04.1519430Z 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-08-14T20:48:04.1520670Z 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-08-14T20:48:04.1521910Z 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-08-14T20:48:04.1523310Z 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-08-14T20:48:04.1524500Z 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-08-14T20:48:04.1525760Z 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-08-14T20:48:04.1527050Z 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-08-14T20:48:04.1528270Z 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-08-14T20:48:04.1529530Z 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-08-14T20:48:04.1531560Z 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-08-14T20:48:04.1532820Z 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-08-14T20:48:04.1534070Z 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-08-14T20:48:04.1535260Z 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-08-14T20:48:04.1536470Z 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-08-14T20:48:04.1537830Z 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-08-14T20:48:04.1539220Z 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-08-14T20:48:04.1540820Z 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-08-14T20:48:04.1542160Z 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-08-14T20:48:04.1543510Z 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-08-14T20:48:04.1545240Z 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-08-14T20:48:04.1546280Z 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-08-14T20:48:04.1547630Z 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-08-14T20:48:04.1548720Z 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-08-14T20:48:04.1550000Z 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-08-14T20:48:04.1551060Z 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-08-14T20:48:04.1552090Z 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-08-14T20:48:04.1553260Z 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-08-14T20:48:04.1554450Z 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-08-14T20:48:04.1555510Z 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-08-14T20:48:04.1556610Z 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-08-14T20:48:04.1557690Z 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-08-14T20:48:04.1559360Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-08-14T20:48:04.1560070Z 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-08-14T20:48:04.1561790Z 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-08-14T20:48:04.1563400Z 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-08-14T20:48:04.1564560Z 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-08-14T20:48:04.1565760Z 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-08-14T20:48:04.1566880Z 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-08-14T20:48:04.1568050Z 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-08-14T20:48:04.1569200Z 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-08-14T20:48:04.1570480Z 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-08-14T20:48:04.1571780Z 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-08-14T20:48:04.1572900Z 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-08-14T20:48:04.1573990Z 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-08-14T20:48:04.1575130Z 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-08-14T20:48:04.1576220Z 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-08-14T20:48:04.1577370Z 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-08-14T20:48:04.1578500Z 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-08-14T20:48:04.1579640Z 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-08-14T20:48:04.1580830Z 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-08-14T20:48:04.1581870Z 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-08-14T20:48:04.1583010Z 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-08-14T20:48:04.1584090Z 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-08-14T20:48:04.1585130Z 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-08-14T20:48:04.1586230Z 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-08-14T20:48:04.1587330Z 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-08-14T20:48:04.1588470Z 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-08-14T20:48:04.1589770Z 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-08-14T20:48:04.1590910Z 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-08-14T20:48:04.1592050Z 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-08-14T20:48:04.1593940Z 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-08-14T20:48:04.1594970Z 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-08-14T20:48:04.1596060Z 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-08-14T20:48:04.1597110Z 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-08-14T20:48:04.1598260Z 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-08-14T20:48:04.1599530Z 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-08-14T20:48:04.1600640Z 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-08-14T20:48:04.1601740Z 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-08-14T20:48:04.1603010Z 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-08-14T20:48:04.1603960Z 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-08-14T20:48:04.1605120Z 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-08-14T20:48:04.1606220Z 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-08-14T20:48:04.1607290Z 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-08-14T20:48:04.1608490Z 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-08-14T20:48:04.1609560Z 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-08-14T20:48:04.1610780Z 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-08-14T20:48:04.1611960Z 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-08-14T20:48:04.1613100Z 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-08-14T20:48:04.1614170Z 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-08-14T20:48:04.1615270Z 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-08-14T20:48:04.1616560Z 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-08-14T20:48:04.1617580Z 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-08-14T20:48:04.1618710Z 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-08-14T20:48:04.1619800Z 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-08-14T20:48:04.1620870Z 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-08-14T20:48:04.1622220Z 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-08-14T20:48:04.1623490Z 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-08-14T20:48:04.1624660Z 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-08-14T20:48:04.1625880Z 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-08-14T20:48:04.1627330Z 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-08-14T20:48:04.1628400Z 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-08-14T20:48:04.1629620Z 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-08-14T20:48:04.1630720Z 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-08-14T20:48:04.1631880Z 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-08-14T20:48:04.1632980Z 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-08-14T20:48:04.1634040Z 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-08-14T20:48:04.1635630Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized 2025-08-14T20:48:04.1636210Z 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-08-14T20:48:04.1637380Z 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-08-14T20:48:04.1638530Z 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-08-14T20:48:04.1639550Z 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-08-14T20:48:04.1640940Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-08-14T20:48:04.1641700Z 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-08-14T20:48:04.1642830Z 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-08-14T20:48:04.1644010Z 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-08-14T20:48:04.1645070Z 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-08-14T20:48:04.1646210Z 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-08-14T20:48:04.1647530Z 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-08-14T20:48:04.1648960Z 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-08-14T20:48:04.1650070Z 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-08-14T20:48:04.1651210Z 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-08-14T20:48:04.1653120Z 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-08-14T20:48:04.1654180Z 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-08-14T20:48:04.1655350Z 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-08-14T20:48:04.1656460Z 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-08-14T20:48:04.1657630Z 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-08-14T20:48:04.1658740Z 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-08-14T20:48:04.1659860Z 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-08-14T20:48:04.1661080Z 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-08-14T20:48:04.1662210Z 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-08-14T20:48:04.1663410Z 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-08-14T20:48:04.1664480Z 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-08-14T20:48:04.1665720Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized/cudnn 2025-08-14T20:48:04.1666510Z 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-08-14T20:48:04.1667590Z 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-08-14T20:48:04.1668760Z 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-08-14T20:48:04.1669890Z 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-08-14T20:48:04.1671000Z 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-08-14T20:48:04.1672160Z 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-08-14T20:48:04.1673350Z 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-08-14T20:48:04.1674550Z 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-08-14T20:48:04.1675620Z 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-08-14T20:48:04.1676680Z 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-08-14T20:48:04.1677870Z 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-08-14T20:48:04.1679410Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/utils 2025-08-14T20:48:04.1680110Z 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-08-14T20:48:04.1681210Z 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-08-14T20:48:04.1682350Z 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-08-14T20:48:04.1683540Z 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-08-14T20:48:04.1684640Z 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-08-14T20:48:04.1685750Z 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-08-14T20:48:04.1686850Z 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-08-14T20:48:04.1687910Z 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-08-14T20:48:04.1689130Z 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-08-14T20:48:04.1690330Z 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-08-14T20:48:04.1691680Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers 2025-08-14T20:48:04.1692450Z 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-08-14T20:48:04.1693620Z 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-08-14T20:48:04.1695020Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda 2025-08-14T20:48:04.1695650Z 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-08-14T20:48:04.1696980Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention 2025-08-14T20:48:04.1697840Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernels 2025-08-14T20:48:04.1698710Z 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-08-14T20:48:04.1700500Z 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-08-14T20:48:04.1701720Z 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-08-14T20:48:04.1703070Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm 2025-08-14T20:48:04.1703950Z 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-08-14T20:48:04.1705090Z 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-08-14T20:48:04.1706340Z 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-08-14T20:48:04.1707600Z 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-08-14T20:48:04.1709140Z 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-08-14T20:48:04.1710290Z 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-08-14T20:48:04.1711430Z 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-08-14T20:48:04.1712670Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue 2025-08-14T20:48:04.1713600Z 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-08-14T20:48:04.1714790Z 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-08-14T20:48:04.1715930Z 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-08-14T20:48:04.1717170Z 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-08-14T20:48:04.1718390Z 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-08-14T20:48:04.1719930Z 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-08-14T20:48:04.1721430Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/transform 2025-08-14T20:48:04.1722150Z 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-08-14T20:48:04.1723480Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators 2025-08-14T20:48:04.1724270Z 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-08-14T20:48:04.1725460Z 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-08-14T20:48:04.1726920Z 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-08-14T20:48:04.1728270Z 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-08-14T20:48:04.1729470Z 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-08-14T20:48:04.1730630Z 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-08-14T20:48:04.1731810Z 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-08-14T20:48:04.1733210Z 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-08-14T20:48:04.1735340Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/flash_attn 2025-08-14T20:48:04.1735880Z 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-08-14T20:48:04.1736870Z 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-08-14T20:48:04.1737960Z 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-08-14T20:48:04.1739420Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/hip 2025-08-14T20:48:04.1740170Z 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-08-14T20:48:04.1741430Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/hip/flash_attn 2025-08-14T20:48:04.1742260Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/hip/flash_attn/ck 2025-08-14T20:48:04.1743080Z 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-08-14T20:48:04.1744250Z 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-08-14T20:48:04.1745360Z 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-08-14T20:48:04.1746450Z 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-08-14T20:48:04.1747670Z 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-08-14T20:48:04.1748720Z 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-08-14T20:48:04.1749820Z 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-08-14T20:48:04.1751180Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/hip 2025-08-14T20:48:04.1751890Z 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-08-14T20:48:04.1752980Z 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-08-14T20:48:04.1754170Z 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-08-14T20:48:04.1755660Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/hip/bgemm_kernels 2025-08-14T20:48:04.1756240Z 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-08-14T20:48:04.1757450Z 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-08-14T20:48:04.1758500Z 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-08-14T20:48:04.1759510Z 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-08-14T20:48:04.1760700Z 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-08-14T20:48:04.1762050Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mtia 2025-08-14T20:48:04.1762750Z 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-08-14T20:48:04.1763810Z 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-08-14T20:48:04.1764890Z 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-08-14T20:48:04.1765940Z 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-08-14T20:48:04.1767210Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/kleidiai 2025-08-14T20:48:04.1767980Z 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-08-14T20:48:04.1769170Z 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-08-14T20:48:04.1770290Z 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-08-14T20:48:04.1771280Z 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-08-14T20:48:04.1772380Z 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-08-14T20:48:04.1774550Z 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-08-14T20:48:04.1775420Z 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-08-14T20:48:04.1776460Z 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-08-14T20:48:04.1777680Z 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-08-14T20:48:04.1778760Z 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-08-14T20:48:04.1779850Z 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-08-14T20:48:04.1781020Z 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-08-14T20:48:04.1782260Z 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-08-14T20:48:04.1783380Z 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-08-14T20:48:04.1784630Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/nested 2025-08-14T20:48:04.1785340Z 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-08-14T20:48:04.1786520Z 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-08-14T20:48:04.1787630Z 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-08-14T20:48:04.1788820Z 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-08-14T20:48:04.1789940Z 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-08-14T20:48:04.1791010Z 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-08-14T20:48:04.1792110Z 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-08-14T20:48:04.1793370Z 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-08-14T20:48:04.1794620Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mkldnn 2025-08-14T20:48:04.1795650Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mkldnn/xpu 2025-08-14T20:48:04.1796460Z 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-08-14T20:48:04.1797850Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mkldnn/xpu/detail 2025-08-14T20:48:04.1798640Z 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-08-14T20:48:04.1799750Z 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-08-14T20:48:04.1801060Z 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-08-14T20:48:04.1802260Z 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-08-14T20:48:04.1803580Z 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-08-14T20:48:04.1804660Z 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-08-14T20:48:04.1805810Z 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-08-14T20:48:04.1806900Z 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-08-14T20:48:04.1813430Z 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-08-14T20:48:04.1813970Z 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-08-14T20:48:04.1814350Z 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-08-14T20:48:04.1814720Z 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-08-14T20:48:04.1815100Z 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-08-14T20:48:04.1815450Z 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-08-14T20:48:04.1815800Z 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-08-14T20:48:04.1816190Z 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-08-14T20:48:04.1816890Z 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-08-14T20:48:04.1818100Z 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-08-14T20:48:04.1819450Z 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-08-14T20:48:04.1820670Z 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-08-14T20:48:04.1822080Z 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-08-14T20:48:04.1823530Z 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-08-14T20:48:04.1824640Z 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-08-14T20:48:04.1825900Z 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-08-14T20:48:04.1827250Z 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-08-14T20:48:04.1828800Z 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-08-14T20:48:04.1829950Z 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-08-14T20:48:04.1831040Z 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-08-14T20:48:04.1832450Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/metal 2025-08-14T20:48:04.1833070Z 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-08-14T20:48:04.1834230Z 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-08-14T20:48:04.1835720Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu 2025-08-14T20:48:04.1836380Z 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-08-14T20:48:04.1837570Z 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-08-14T20:48:04.1838600Z 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-08-14T20:48:04.1839930Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec 2025-08-14T20:48:04.1840980Z 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-08-14T20:48:04.1841720Z 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-08-14T20:48:04.1843010Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec128 2025-08-14T20:48:04.1843790Z 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-08-14T20:48:04.1845030Z 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-08-14T20:48:04.1846100Z 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-08-14T20:48:04.1847420Z 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-08-14T20:48:04.1848630Z 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-08-14T20:48:04.1849940Z 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-08-14T20:48:04.1851170Z 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-08-14T20:48:04.1852560Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2025-08-14T20:48:04.1853400Z 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-08-14T20:48:04.1854540Z 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-08-14T20:48:04.1855670Z 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-08-14T20:48:04.1856790Z 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-08-14T20:48:04.1857860Z 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-08-14T20:48:04.1859250Z 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-08-14T20:48:04.1860530Z 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-08-14T20:48:04.1861700Z 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-08-14T20:48:04.1863000Z 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-08-14T20:48:04.1864030Z 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-08-14T20:48:04.1865170Z 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-08-14T20:48:04.1866730Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256/zarch 2025-08-14T20:48:04.1867380Z 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-08-14T20:48:04.1869060Z 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-08-14T20:48:04.1870340Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256/vsx 2025-08-14T20:48:04.1871120Z 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-08-14T20:48:04.1872320Z 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-08-14T20:48:04.1873490Z 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-08-14T20:48:04.1874600Z 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-08-14T20:48:04.1875740Z 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-08-14T20:48:04.1877000Z 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-08-14T20:48:04.1878340Z 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-08-14T20:48:04.1879620Z 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-08-14T20:48:04.1880780Z 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-08-14T20:48:04.1882060Z 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-08-14T20:48:04.1883180Z 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-08-14T20:48:04.1884470Z 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-08-14T20:48:04.1885710Z 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-08-14T20:48:04.1886900Z 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-08-14T20:48:04.1888370Z 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-08-14T20:48:04.1889550Z 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-08-14T20:48:04.2091750Z 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-08-14T20:48:04.2093200Z 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-08-14T20:48:04.2094500Z 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-08-14T20:48:04.2435620Z 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-08-14T20:48:04.2437000Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec512 2025-08-14T20:48:04.2437980Z 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-08-14T20:48:04.2440150Z 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-08-14T20:48:04.2441710Z 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-08-14T20:48:04.2443890Z 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-08-14T20:48:04.2445450Z 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-08-14T20:48:04.2447070Z 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-08-14T20:48:04.2448580Z 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-08-14T20:48:04.2463200Z 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-08-14T20:48:04.2464950Z 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-08-14T20:48:04.2466870Z 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-08-14T20:48:04.2468610Z 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-08-14T20:48:04.2470570Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/sve 2025-08-14T20:48:04.2471450Z 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-08-14T20:48:04.2473150Z 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-08-14T20:48:04.2475000Z 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-08-14T20:48:04.2476460Z 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-08-14T20:48:04.2478280Z 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-08-14T20:48:04.2479700Z 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-08-14T20:48:04.2481420Z 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-08-14T20:48:04.2483670Z 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-08-14T20:48:04.2485240Z 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-08-14T20:48:04.2486700Z 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-08-14T20:48:04.2488780Z 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-08-14T20:48:04.2490350Z 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-08-14T20:48:04.2491710Z 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-08-14T20:48:04.2499770Z 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-08-14T20:48:04.2501240Z 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-08-14T20:48:04.2514510Z 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-08-14T20:48:04.2515890Z 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-08-14T20:48:04.2517340Z 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-08-14T20:48:04.2518760Z 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-08-14T20:48:04.2520870Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-08-14T20:48:04.2521590Z 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-08-14T20:48:04.2529600Z 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-08-14T20:48:04.2530840Z 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-08-14T20:48:04.2532350Z 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-08-14T20:48:04.2534020Z 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-08-14T20:48:04.2535500Z 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-08-14T20:48:04.2537040Z 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-08-14T20:48:04.2538630Z 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-08-14T20:48:04.2540120Z 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-08-14T20:48:04.2541520Z 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-08-14T20:48:04.2542900Z 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-08-14T20:48:04.2544440Z 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-08-14T20:48:04.2545830Z 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-08-14T20:48:04.2547200Z 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-08-14T20:48:04.2548480Z 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-08-14T20:48:04.2549710Z 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-08-14T20:48:04.2551440Z 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-08-14T20:48:04.2552820Z 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-08-14T20:48:04.2554180Z 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-08-14T20:48:04.2555520Z 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-08-14T20:48:04.2556720Z 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-08-14T20:48:04.2558190Z 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-08-14T20:48:04.2559510Z 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-08-14T20:48:04.2561070Z 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-08-14T20:48:04.2562420Z 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-08-14T20:48:04.2563660Z 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-08-14T20:48:04.2565030Z 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-08-14T20:48:04.2566460Z 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-08-14T20:48:04.2567830Z 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-08-14T20:48:04.2569120Z 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-08-14T20:48:04.2570850Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda/detail 2025-08-14T20:48:04.2571670Z 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-08-14T20:48:04.2573870Z 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-08-14T20:48:04.2575420Z 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-08-14T20:48:04.2576910Z 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-08-14T20:48:04.2578250Z 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-08-14T20:48:04.2579730Z 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-08-14T20:48:04.2581260Z 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-08-14T20:48:04.2582740Z 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-08-14T20:48:04.2584030Z 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-08-14T20:48:04.2585410Z 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-08-14T20:48:04.2586730Z 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-08-14T20:48:04.2588220Z 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-08-14T20:48:04.2589640Z 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-08-14T20:48:04.2590990Z 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-08-14T20:48:04.2592270Z 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-08-14T20:48:04.2593620Z 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-08-14T20:48:04.2595620Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda/tunable 2025-08-14T20:48:04.2596340Z 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-08-14T20:48:04.2597580Z 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-08-14T20:48:04.2598860Z 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-08-14T20:48:04.2600170Z 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-08-14T20:48:04.2601490Z 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-08-14T20:48:04.2602860Z 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-08-14T20:48:04.2604090Z 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-08-14T20:48:04.2605300Z 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-08-14T20:48:04.2606510Z 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-08-14T20:48:04.2608010Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/quantized 2025-08-14T20:48:04.2608910Z 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-08-14T20:48:04.2610250Z 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-08-14T20:48:04.2611540Z 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-08-14T20:48:04.2612930Z 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-08-14T20:48:04.2614440Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/xpu 2025-08-14T20:48:04.2615200Z 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-08-14T20:48:04.2616390Z 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-08-14T20:48:04.2617800Z 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-08-14T20:48:04.2619020Z 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-08-14T20:48:04.2620580Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/xpu/detail 2025-08-14T20:48:04.2621190Z 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-08-14T20:48:04.2622390Z 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-08-14T20:48:04.2623590Z 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-08-14T20:48:04.2625190Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/miopen 2025-08-14T20:48:04.2626040Z 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-08-14T20:48:04.2627180Z 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-08-14T20:48:04.2628410Z 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-08-14T20:48:04.2629710Z 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-08-14T20:48:04.2630890Z 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-08-14T20:48:04.2632200Z 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-08-14T20:48:04.2633430Z 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-08-14T20:48:04.2646600Z 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-08-14T20:48:04.2648000Z 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-08-14T20:48:04.2649960Z 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-08-14T20:48:04.2651370Z 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-08-14T20:48:04.2652520Z 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-08-14T20:48:04.2653920Z 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-08-14T20:48:04.2655120Z 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-08-14T20:48:04.2656220Z 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-08-14T20:48:04.2657340Z 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-08-14T20:48:04.2668330Z 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-08-14T20:48:04.2669370Z 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-08-14T20:48:04.2670470Z 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-08-14T20:48:04.2671610Z 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-08-14T20:48:04.2672760Z 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-08-14T20:48:04.2673940Z 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-08-14T20:48:04.2676660Z 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-08-14T20:48:04.2677790Z 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-08-14T20:48:04.2678890Z 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-08-14T20:48:04.2680030Z 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-08-14T20:48:04.2681300Z 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-08-14T20:48:04.2682410Z 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-08-14T20:48:04.2683690Z 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-08-14T20:48:04.2684830Z 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-08-14T20:48:04.2685970Z 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-08-14T20:48:04.2687650Z 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-08-14T20:48:04.2688730Z 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-08-14T20:48:04.2690020Z 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-08-14T20:48:04.2691150Z 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-08-14T20:48:04.2692290Z 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-08-14T20:48:04.2693470Z 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-08-14T20:48:04.2694540Z 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-08-14T20:48:04.2695700Z 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-08-14T20:48:04.2697830Z 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-08-14T20:48:04.2699120Z 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-08-14T20:48:04.2700340Z 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-08-14T20:48:04.2701860Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/detail 2025-08-14T20:48:04.2702630Z 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-08-14T20:48:04.2703860Z 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-08-14T20:48:04.2705160Z 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-08-14T20:48:04.2706480Z 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-08-14T20:48:04.2707620Z 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-08-14T20:48:04.2708700Z 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-08-14T20:48:04.2709910Z 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-08-14T20:48:04.2711160Z 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-08-14T20:48:04.2712340Z 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-08-14T20:48:04.2713530Z 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-08-14T20:48:04.2714640Z 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-08-14T20:48:04.2715870Z 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-08-14T20:48:04.2717360Z 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-08-14T20:48:04.2718450Z 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-08-14T20:48:04.2719510Z 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-08-14T20:48:04.2720710Z 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-08-14T20:48:04.2721860Z 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-08-14T20:48:04.2723270Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/hip 2025-08-14T20:48:04.2724150Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/hip/impl 2025-08-14T20:48:04.2725040Z 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-08-14T20:48:04.2726150Z 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-08-14T20:48:04.2727370Z 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-08-14T20:48:04.2728560Z 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-08-14T20:48:04.2729660Z 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-08-14T20:48:04.2730830Z 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-08-14T20:48:04.2731900Z 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-08-14T20:48:04.2733450Z 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-08-14T20:48:04.2734600Z 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-08-14T20:48:04.2735750Z 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-08-14T20:48:04.2736860Z 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-08-14T20:48:04.2738100Z 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-08-14T20:48:04.2739190Z 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-08-14T20:48:04.2740430Z 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-08-14T20:48:04.2741510Z 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-08-14T20:48:04.2742960Z 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-08-14T20:48:04.2744120Z 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-08-14T20:48:04.2745290Z 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-08-14T20:48:04.2746830Z 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-08-14T20:48:04.2783540Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-08-14T20:48:04.2784100Z 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-08-14T20:48:04.2785300Z 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-08-14T20:48:04.2786540Z 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-08-14T20:48:04.2787630Z 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-08-14T20:48:04.2788860Z 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-08-14T20:48:04.2789940Z 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-08-14T20:48:04.2791040Z 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-08-14T20:48:04.2792210Z 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-08-14T20:48:04.2793290Z 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-08-14T20:48:04.2794390Z 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-08-14T20:48:04.2795620Z 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-08-14T20:48:04.2796810Z 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-08-14T20:48:04.2798070Z 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-08-14T20:48:04.2799300Z 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-08-14T20:48:04.2800540Z 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-08-14T20:48:04.2801630Z 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-08-14T20:48:04.2802780Z 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-08-14T20:48:04.2803920Z 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-08-14T20:48:04.2805040Z 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-08-14T20:48:04.2806220Z 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-08-14T20:48:04.2807370Z 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-08-14T20:48:04.2808520Z 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-08-14T20:48:04.2809660Z 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-08-14T20:48:04.2810780Z 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-08-14T20:48:04.2811880Z 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-08-14T20:48:04.2813070Z 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-08-14T20:48:04.2814260Z 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-08-14T20:48:04.2815450Z 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-08-14T20:48:04.2816490Z 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-08-14T20:48:04.2817640Z 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-08-14T20:48:04.2818860Z 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-08-14T20:48:04.2820040Z 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-08-14T20:48:04.2821210Z 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-08-14T20:48:04.2822350Z 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-08-14T20:48:04.2823590Z 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-08-14T20:48:04.2824750Z 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-08-14T20:48:04.2825890Z 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-08-14T20:48:04.2827050Z 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-08-14T20:48:04.2828220Z 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-08-14T20:48:04.2829290Z 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-08-14T20:48:04.2830520Z 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-08-14T20:48:04.2831650Z 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-08-14T20:48:04.2832780Z 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-08-14T20:48:04.2834080Z 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-08-14T20:48:04.2835170Z 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-08-14T20:48:04.2836250Z 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-08-14T20:48:04.2837420Z 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-08-14T20:48:04.2838500Z 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-08-14T20:48:04.2839770Z 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-08-14T20:48:04.2840930Z 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-08-14T20:48:04.2841980Z 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-08-14T20:48:04.2843240Z 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-08-14T20:48:04.2844300Z 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-08-14T20:48:04.2845580Z 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-08-14T20:48:04.2846620Z 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-08-14T20:48:04.2847730Z 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-08-14T20:48:04.2849000Z 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-08-14T20:48:04.2850370Z 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-08-14T20:48:04.2851360Z 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-08-14T20:48:04.2852540Z 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-08-14T20:48:04.2853660Z 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-08-14T20:48:04.2854810Z 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-08-14T20:48:04.2856020Z 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-08-14T20:48:04.2857320Z 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-08-14T20:48:04.2858390Z 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-08-14T20:48:04.2859470Z 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-08-14T20:48:04.2860680Z 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-08-14T20:48:04.2862090Z 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-08-14T20:48:04.2863390Z 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-08-14T20:48:04.2864580Z 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-08-14T20:48:04.2865750Z 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-08-14T20:48:04.2866840Z 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-08-14T20:48:04.2867980Z 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-08-14T20:48:04.2869120Z 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-08-14T20:48:04.2870240Z 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-08-14T20:48:04.2871320Z 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-08-14T20:48:04.2872520Z 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-08-14T20:48:04.2873520Z 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-08-14T20:48:04.2874700Z 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-08-14T20:48:04.2875850Z 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-08-14T20:48:04.2877040Z 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-08-14T20:48:04.2878520Z 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-08-14T20:48:04.2879260Z 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-08-14T20:48:04.2880340Z 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-08-14T20:48:04.2881600Z 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-08-14T20:48:04.2882730Z 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-08-14T20:48:04.2883880Z 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-08-14T20:48:04.2885060Z 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-08-14T20:48:04.2886300Z 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-08-14T20:48:04.2887370Z 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-08-14T20:48:04.2888620Z 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-08-14T20:48:04.2889840Z 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-08-14T20:48:04.2890870Z 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-08-14T20:48:04.2892120Z 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-08-14T20:48:04.2893160Z 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-08-14T20:48:04.2894450Z 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-08-14T20:48:04.2896040Z 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-08-14T20:48:04.2896950Z 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-08-14T20:48:04.2898060Z 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-08-14T20:48:04.2899200Z 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-08-14T20:48:04.2900460Z 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-08-14T20:48:04.2901510Z 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-08-14T20:48:04.2902660Z 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-08-14T20:48:04.2903750Z 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-08-14T20:48:04.2904880Z 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-08-14T20:48:04.2906030Z 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-08-14T20:48:04.2907240Z 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-08-14T20:48:04.2908380Z 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-08-14T20:48:04.2909560Z 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-08-14T20:48:04.2910670Z 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-08-14T20:48:04.2911850Z 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-08-14T20:48:04.2912970Z 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-08-14T20:48:04.2914130Z 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-08-14T20:48:04.2915410Z 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-08-14T20:48:04.2916510Z 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-08-14T20:48:04.2917640Z 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-08-14T20:48:04.2918800Z 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-08-14T20:48:04.2920000Z 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-08-14T20:48:04.2921210Z 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-08-14T20:48:04.2922450Z 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-08-14T20:48:04.2923530Z 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-08-14T20:48:04.2924640Z 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-08-14T20:48:04.2925780Z 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-08-14T20:48:04.2926840Z 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-08-14T20:48:04.2928030Z 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-08-14T20:48:04.2929100Z 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-08-14T20:48:04.2930170Z 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-08-14T20:48:04.2931290Z 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-08-14T20:48:04.2932510Z 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-08-14T20:48:04.2933720Z 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-08-14T20:48:04.2935000Z 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-08-14T20:48:04.2935990Z 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-08-14T20:48:04.2937170Z 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-08-14T20:48:04.2938340Z 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-08-14T20:48:04.2939540Z 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-08-14T20:48:04.2940560Z 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-08-14T20:48:04.2941690Z 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-08-14T20:48:04.2942930Z 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-08-14T20:48:04.2943980Z 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-08-14T20:48:04.2945130Z 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-08-14T20:48:04.2946250Z 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-08-14T20:48:04.2947410Z 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-08-14T20:48:04.2948630Z 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-08-14T20:48:04.2949670Z 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-08-14T20:48:04.2950950Z 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-08-14T20:48:04.2952070Z 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-08-14T20:48:04.2953240Z 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-08-14T20:48:04.2954360Z 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-08-14T20:48:04.2955510Z 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-08-14T20:48:04.2956720Z 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-08-14T20:48:04.2957770Z 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-08-14T20:48:04.2958990Z 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-08-14T20:48:04.2960070Z 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-08-14T20:48:04.2961210Z 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-08-14T20:48:04.2962290Z 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-08-14T20:48:04.2963480Z 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-08-14T20:48:04.2964760Z 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-08-14T20:48:04.2965880Z 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-08-14T20:48:04.2967040Z 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-08-14T20:48:04.2968180Z 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-08-14T20:48:04.2969360Z 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-08-14T20:48:04.2970570Z 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-08-14T20:48:04.2971600Z 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-08-14T20:48:04.2972870Z 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-08-14T20:48:04.2973970Z 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-08-14T20:48:04.2975220Z 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-08-14T20:48:04.2976330Z 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-08-14T20:48:04.2977440Z 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-08-14T20:48:04.2978570Z 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-08-14T20:48:04.2979680Z 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-08-14T20:48:04.2980880Z 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-08-14T20:48:04.2981930Z 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-08-14T20:48:04.2983170Z 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-08-14T20:48:04.2984410Z 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-08-14T20:48:04.2986030Z 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-08-14T20:48:04.2987490Z 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-08-14T20:48:04.2988760Z 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-08-14T20:48:04.2989960Z 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-08-14T20:48:04.2991180Z 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-08-14T20:48:04.2992430Z 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-08-14T20:48:04.2993480Z 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-08-14T20:48:04.2994590Z 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-08-14T20:48:04.2995830Z 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-08-14T20:48:04.2997080Z 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-08-14T20:48:04.2998250Z 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-08-14T20:48:04.2999430Z 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-08-14T20:48:04.3000620Z 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-08-14T20:48:04.3001760Z 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-08-14T20:48:04.3002860Z 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-08-14T20:48:04.3004160Z 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-08-14T20:48:04.3005240Z 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-08-14T20:48:04.3006350Z 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-08-14T20:48:04.3007500Z 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-08-14T20:48:04.3008570Z 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-08-14T20:48:04.3009770Z 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-08-14T20:48:04.3010810Z 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-08-14T20:48:04.3012060Z 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-08-14T20:48:04.3013130Z 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-08-14T20:48:04.3014270Z 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-08-14T20:48:04.3015370Z 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-08-14T20:48:04.3016490Z 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-08-14T20:48:04.3017510Z 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-08-14T20:48:04.3018670Z 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-08-14T20:48:04.3019870Z 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-08-14T20:48:04.3021050Z 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-08-14T20:48:04.3022290Z 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-08-14T20:48:04.3023560Z 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-08-14T20:48:04.3024780Z 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-08-14T20:48:04.3025960Z 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-08-14T20:48:04.3027010Z 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-08-14T20:48:04.3028260Z 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-08-14T20:48:04.3029430Z 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-08-14T20:48:04.3030590Z 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-08-14T20:48:04.3031820Z 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-08-14T20:48:04.3032990Z 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-08-14T20:48:04.3034110Z 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-08-14T20:48:04.3035410Z 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-08-14T20:48:04.3036590Z 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-08-14T20:48:04.3037830Z 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-08-14T20:48:04.3039000Z 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-08-14T20:48:04.3040430Z 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-08-14T20:48:04.3041820Z 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-08-14T20:48:04.3042860Z 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-08-14T20:48:04.3044090Z 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-08-14T20:48:04.3045240Z 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-08-14T20:48:04.3046430Z 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-08-14T20:48:04.3047710Z 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-08-14T20:48:04.3049000Z 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-08-14T20:48:04.3050300Z 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-08-14T20:48:04.3051420Z 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-08-14T20:48:04.3052580Z 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-08-14T20:48:04.3053800Z 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-08-14T20:48:04.3055050Z 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-08-14T20:48:04.3056300Z 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-08-14T20:48:04.3057710Z 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-08-14T20:48:04.3058980Z 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-08-14T20:48:04.3060160Z 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-08-14T20:48:04.3061560Z 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-08-14T20:48:04.3062580Z 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-08-14T20:48:04.3063760Z 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-08-14T20:48:04.3065010Z 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-08-14T20:48:04.3066160Z 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-08-14T20:48:04.3067350Z 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-08-14T20:48:04.3068460Z 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-08-14T20:48:04.3069780Z 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-08-14T20:48:04.3070830Z 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-08-14T20:48:04.3072140Z 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-08-14T20:48:04.3073290Z 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-08-14T20:48:04.3074370Z 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-08-14T20:48:04.3075590Z 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-08-14T20:48:04.3076600Z 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-08-14T20:48:04.3077770Z 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-08-14T20:48:04.3078820Z 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-08-14T20:48:04.3079940Z 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-08-14T20:48:04.3081160Z 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-08-14T20:48:04.3082300Z 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-08-14T20:48:04.3083370Z 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-08-14T20:48:04.3084550Z 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-08-14T20:48:04.3085740Z 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-08-14T20:48:04.3086780Z 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-08-14T20:48:04.3087950Z 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-08-14T20:48:04.3088990Z 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-08-14T20:48:04.3090250Z 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-08-14T20:48:04.3091450Z 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-08-14T20:48:04.3092680Z 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-08-14T20:48:04.3093720Z 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-08-14T20:48:04.3095040Z 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-08-14T20:48:04.3096080Z 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-08-14T20:48:04.3097280Z 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-08-14T20:48:04.3098620Z 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-08-14T20:48:04.3099670Z 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-08-14T20:48:04.3106200Z 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-08-14T20:48:04.3106690Z 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-08-14T20:48:04.3107170Z 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-08-14T20:48:04.3107520Z 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-08-14T20:48:04.3107870Z 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-08-14T20:48:04.3108250Z 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-08-14T20:48:04.3108580Z 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-08-14T20:48:04.3108990Z 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-08-14T20:48:04.3109970Z 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-08-14T20:48:04.3111070Z 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-08-14T20:48:04.3112270Z 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-08-14T20:48:04.3113420Z 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-08-14T20:48:04.3114680Z 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-08-14T20:48:04.3115800Z 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-08-14T20:48:04.3116950Z 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-08-14T20:48:04.3118230Z 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-08-14T20:48:04.3119290Z 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-08-14T20:48:04.3120470Z 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-08-14T20:48:04.3121680Z 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-08-14T20:48:04.3122790Z 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-08-14T20:48:04.3124000Z 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-08-14T20:48:04.3125120Z 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-08-14T20:48:04.3126270Z 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-08-14T20:48:04.3127430Z 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-08-14T20:48:04.3128680Z 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-08-14T20:48:04.3129810Z 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-08-14T20:48:04.3131070Z 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-08-14T20:48:04.3132110Z 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-08-14T20:48:04.3133430Z 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-08-14T20:48:04.3134370Z 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-08-14T20:48:04.3135490Z 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-08-14T20:48:04.3136570Z 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-08-14T20:48:04.3137640Z 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-08-14T20:48:04.3138920Z 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-08-14T20:48:04.3140070Z 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-08-14T20:48:04.3141210Z 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-08-14T20:48:04.3142560Z 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-08-14T20:48:04.3143630Z 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-08-14T20:48:04.3144940Z 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-08-14T20:48:04.3146010Z 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-08-14T20:48:04.3147050Z 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-08-14T20:48:04.3148140Z 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-08-14T20:48:04.3149260Z 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-08-14T20:48:04.3150520Z 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-08-14T20:48:04.3151610Z 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-08-14T20:48:04.3152690Z 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-08-14T20:48:04.3153730Z 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-08-14T20:48:04.3154870Z 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-08-14T20:48:04.3156000Z 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-08-14T20:48:04.3157130Z 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-08-14T20:48:04.3158400Z 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-08-14T20:48:04.3159440Z 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-08-14T20:48:04.3160580Z 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-08-14T20:48:04.3161740Z 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-08-14T20:48:04.3162880Z 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-08-14T20:48:04.3163970Z 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-08-14T20:48:04.3165070Z 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-08-14T20:48:04.3166170Z 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-08-14T20:48:04.3167350Z 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-08-14T20:48:04.3168550Z 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-08-14T20:48:04.3169720Z 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-08-14T20:48:04.3170840Z 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-08-14T20:48:04.3172020Z 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-08-14T20:48:04.3173210Z 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-08-14T20:48:04.3174310Z 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-08-14T20:48:04.3175430Z 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-08-14T20:48:04.3176630Z 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-08-14T20:48:04.3177710Z 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-08-14T20:48:04.3178880Z 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-08-14T20:48:04.3180030Z 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-08-14T20:48:04.3181170Z 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-08-14T20:48:04.3182460Z 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-08-14T20:48:04.3183660Z 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-08-14T20:48:04.3184800Z 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-08-14T20:48:04.3185840Z 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-08-14T20:48:04.3186960Z 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-08-14T20:48:04.3188180Z 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-08-14T20:48:04.3189360Z 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-08-14T20:48:04.3190590Z 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-08-14T20:48:04.3191900Z 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-08-14T20:48:04.3192970Z 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-08-14T20:48:04.3194210Z 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-08-14T20:48:04.3195360Z 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-08-14T20:48:04.3196560Z 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-08-14T20:48:04.3197760Z 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-08-14T20:48:04.3198890Z 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-08-14T20:48:04.3200030Z 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-08-14T20:48:04.3201150Z 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-08-14T20:48:04.3202500Z 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-08-14T20:48:04.3203650Z 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-08-14T20:48:04.3205030Z 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-08-14T20:48:04.3206560Z 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-08-14T20:48:04.3207810Z 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-08-14T20:48:04.3208890Z 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-08-14T20:48:04.3210010Z 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-08-14T20:48:04.3211490Z 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-08-14T20:48:04.3212370Z 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-08-14T20:48:04.3213500Z 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-08-14T20:48:04.3214650Z 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-08-14T20:48:04.3215760Z 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-08-14T20:48:04.3217130Z 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-08-14T20:48:04.3218180Z 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-08-14T20:48:04.3219320Z 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-08-14T20:48:04.3220470Z 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-08-14T20:48:04.3221710Z 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-08-14T20:48:04.3222920Z 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-08-14T20:48:04.3224090Z 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-08-14T20:48:04.3225290Z 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-08-14T20:48:04.3226380Z 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-08-14T20:48:04.3227580Z 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-08-14T20:48:04.3228770Z 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-08-14T20:48:04.3229930Z 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-08-14T20:48:04.3231110Z 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-08-14T20:48:04.3232630Z 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-08-14T20:48:04.3233480Z 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-08-14T20:48:04.3234560Z 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-08-14T20:48:04.3235760Z 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-08-14T20:48:04.3236830Z 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-08-14T20:48:04.3237980Z 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-08-14T20:48:04.3239110Z 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-08-14T20:48:04.3240180Z 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-08-14T20:48:04.3241400Z 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-08-14T20:48:04.3242540Z 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-08-14T20:48:04.3243640Z 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-08-14T20:48:04.3244730Z 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-08-14T20:48:04.3245850Z 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-08-14T20:48:04.3247100Z 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-08-14T20:48:04.3248160Z 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-08-14T20:48:04.3249370Z 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-08-14T20:48:04.3250600Z 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-08-14T20:48:04.3251750Z 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-08-14T20:48:04.3252850Z 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-08-14T20:48:04.3253920Z 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-08-14T20:48:04.3255120Z 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-08-14T20:48:04.3256320Z 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-08-14T20:48:04.3257500Z 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-08-14T20:48:04.3258590Z 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-08-14T20:48:04.3259900Z 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-08-14T20:48:04.3261070Z 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-08-14T20:48:04.3262280Z 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-08-14T20:48:04.3263450Z 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-08-14T20:48:04.3264560Z 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-08-14T20:48:04.3265720Z 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-08-14T20:48:04.3266910Z 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-08-14T20:48:04.3267960Z 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-08-14T20:48:04.3269110Z 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-08-14T20:48:04.3270420Z 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-08-14T20:48:04.3271690Z 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-08-14T20:48:04.3272680Z 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-08-14T20:48:04.3273810Z 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-08-14T20:48:04.3275000Z 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-08-14T20:48:04.3276210Z 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-08-14T20:48:04.3277490Z 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-08-14T20:48:04.3278510Z 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-08-14T20:48:04.3279940Z 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-08-14T20:48:04.3281590Z 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-08-14T20:48:04.3282500Z 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-08-14T20:48:04.3283550Z 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-08-14T20:48:04.3284690Z 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-08-14T20:48:04.3285850Z 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-08-14T20:48:04.3287090Z 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-08-14T20:48:04.3288320Z 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-08-14T20:48:04.3289360Z 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-08-14T20:48:04.3290540Z 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-08-14T20:48:04.3291660Z 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-08-14T20:48:04.3292760Z 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-08-14T20:48:04.3293970Z 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-08-14T20:48:04.3295160Z 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-08-14T20:48:04.3296300Z 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-08-14T20:48:04.3297630Z 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-08-14T20:48:04.3298750Z 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-08-14T20:48:04.3299920Z 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-08-14T20:48:04.3301080Z 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-08-14T20:48:04.3302340Z 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-08-14T20:48:04.3303760Z 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-08-14T20:48:04.3305080Z 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-08-14T20:48:04.3306120Z 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-08-14T20:48:04.3307210Z 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-08-14T20:48:04.3308430Z 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-08-14T20:48:04.3309890Z 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-08-14T20:48:04.3310980Z 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-08-14T20:48:04.3312050Z 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-08-14T20:48:04.3313160Z 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-08-14T20:48:04.3314280Z 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-08-14T20:48:04.3315520Z 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-08-14T20:48:04.3316810Z 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-08-14T20:48:04.3318080Z 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-08-14T20:48:04.3319320Z 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-08-14T20:48:04.3320590Z 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-08-14T20:48:04.3321700Z 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-08-14T20:48:04.3322800Z 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-08-14T20:48:04.3323920Z 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-08-14T20:48:04.3325090Z 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-08-14T20:48:04.3326340Z 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-08-14T20:48:04.3327470Z 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-08-14T20:48:04.3328770Z 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-08-14T20:48:04.3329810Z 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-08-14T20:48:04.3331300Z 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-08-14T20:48:04.3332310Z 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-08-14T20:48:04.3333470Z 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-08-14T20:48:04.3334520Z 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-08-14T20:48:04.3335680Z 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-08-14T20:48:04.3336840Z 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-08-14T20:48:04.3338220Z 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-08-14T20:48:04.3339260Z 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-08-14T20:48:04.3340360Z 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-08-14T20:48:04.3341460Z 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-08-14T20:48:04.3342760Z 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-08-14T20:48:04.3343950Z 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-08-14T20:48:04.3345070Z 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-08-14T20:48:04.3346200Z 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-08-14T20:48:04.3347360Z 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-08-14T20:48:04.3348600Z 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-08-14T20:48:04.3349630Z 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-08-14T20:48:04.3350820Z 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-08-14T20:48:04.3352200Z 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-08-14T20:48:04.3353370Z 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-08-14T20:48:04.3354690Z 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-08-14T20:48:04.3355880Z 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-08-14T20:48:04.3357000Z 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-08-14T20:48:04.3358270Z 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-08-14T20:48:04.3359440Z 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-08-14T20:48:04.3360630Z 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-08-14T20:48:04.3361850Z 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-08-14T20:48:04.3363080Z 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-08-14T20:48:04.3364300Z 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-08-14T20:48:04.3365380Z 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-08-14T20:48:04.3366690Z 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-08-14T20:48:04.3367890Z 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-08-14T20:48:04.3369150Z 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-08-14T20:48:04.3370330Z 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-08-14T20:48:04.3371650Z 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-08-14T20:48:04.3372840Z 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-08-14T20:48:04.3374140Z 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-08-14T20:48:04.3375470Z 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-08-14T20:48:04.3376730Z 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-08-14T20:48:04.3377850Z 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-08-14T20:48:04.3378940Z 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-08-14T20:48:04.3380230Z 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-08-14T20:48:04.3381210Z 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-08-14T20:48:04.3382450Z 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-08-14T20:48:04.3383530Z 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-08-14T20:48:04.3384770Z 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-08-14T20:48:04.3385820Z 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-08-14T20:48:04.3386900Z 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-08-14T20:48:04.3388090Z 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-08-14T20:48:04.3389180Z 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-08-14T20:48:04.3390300Z 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-08-14T20:48:04.3391460Z 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-08-14T20:48:04.3392690Z 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-08-14T20:48:04.3393790Z 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-08-14T20:48:04.3394990Z 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-08-14T20:48:04.3396040Z 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-08-14T20:48:04.3397120Z 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-08-14T20:48:04.3398280Z 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-08-14T20:48:04.3399370Z 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-08-14T20:48:04.3400550Z 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-08-14T20:48:04.3401660Z 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-08-14T20:48:04.3402740Z 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-08-14T20:48:04.3403870Z 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-08-14T20:48:04.3404990Z 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-08-14T20:48:04.3406130Z 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-08-14T20:48:04.3407280Z 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-08-14T20:48:04.3408450Z 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-08-14T20:48:04.3409610Z 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-08-14T20:48:04.3410720Z 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-08-14T20:48:04.3411820Z 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-08-14T20:48:04.3413010Z 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-08-14T20:48:04.3414110Z 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-08-14T20:48:04.3415250Z 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-08-14T20:48:04.3416320Z 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-08-14T20:48:04.3417540Z 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-08-14T20:48:04.3418810Z 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-08-14T20:48:04.3419760Z 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-08-14T20:48:04.3421300Z 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-08-14T20:48:04.3422400Z 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-08-14T20:48:04.3423610Z 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-08-14T20:48:04.3424800Z 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-08-14T20:48:04.3425960Z 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-08-14T20:48:04.3427050Z 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-08-14T20:48:04.3428170Z 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-08-14T20:48:04.3435730Z 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-08-14T20:48:04.3436670Z 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-08-14T20:48:04.3437520Z 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-08-14T20:48:04.3438770Z 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-08-14T20:48:04.3440190Z 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-08-14T20:48:04.3441310Z 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-08-14T20:48:04.3442540Z 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-08-14T20:48:04.3443640Z 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-08-14T20:48:04.3444760Z 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-08-14T20:48:04.3445980Z 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-08-14T20:48:04.3447110Z 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-08-14T20:48:04.3448180Z 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-08-14T20:48:04.3449270Z 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-08-14T20:48:04.3450390Z 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-08-14T20:48:04.3451480Z 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-08-14T20:48:04.3452580Z 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-08-14T20:48:04.3453650Z 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-08-14T20:48:04.3454800Z 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-08-14T20:48:04.3455920Z 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-08-14T20:48:04.3457020Z 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-08-14T20:48:04.3458280Z 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-08-14T20:48:04.3459270Z 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-08-14T20:48:04.3460640Z 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-08-14T20:48:04.3461650Z 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-08-14T20:48:04.3462720Z 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-08-14T20:48:04.3463810Z 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-08-14T20:48:04.3465150Z 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-08-14T20:48:04.3466250Z 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-08-14T20:48:04.3467270Z 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-08-14T20:48:04.3468530Z 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-08-14T20:48:04.3469610Z 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-08-14T20:48:04.3470730Z 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-08-14T20:48:04.3471800Z 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-08-14T20:48:04.3473010Z 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-08-14T20:48:04.3475320Z 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-08-14T20:48:04.3475710Z 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-08-14T20:48:04.3476550Z 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-08-14T20:48:04.3477540Z 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-08-14T20:48:04.3478680Z 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-08-14T20:48:04.3479920Z 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-08-14T20:48:04.3480940Z 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-08-14T20:48:04.3482040Z 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-08-14T20:48:04.3483190Z 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-08-14T20:48:04.3484280Z 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-08-14T20:48:04.3485530Z 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-08-14T20:48:04.3486700Z 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-08-14T20:48:04.3488040Z 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-08-14T20:48:04.3488960Z 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-08-14T20:48:04.3490030Z 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-08-14T20:48:04.3491030Z 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-08-14T20:48:04.3492170Z 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-08-14T20:48:04.3493270Z 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-08-14T20:48:04.3494660Z 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-08-14T20:48:04.3495850Z 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-08-14T20:48:04.3496660Z 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-08-14T20:48:04.3497730Z 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-08-14T20:48:04.3498920Z 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-08-14T20:48:04.3500020Z 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-08-14T20:48:04.3501300Z 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-08-14T20:48:04.3502350Z 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-08-14T20:48:04.3503750Z 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-08-14T20:48:04.3504920Z 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-08-14T20:48:04.3506150Z 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-08-14T20:48:04.3507410Z 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-08-14T20:48:04.3508280Z 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-08-14T20:48:04.3509480Z 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-08-14T20:48:04.3510770Z 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-08-14T20:48:04.3511900Z 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-08-14T20:48:04.3513150Z 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-08-14T20:48:04.3514180Z 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-08-14T20:48:04.3515330Z 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-08-14T20:48:04.3516760Z 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-08-14T20:48:04.3517740Z 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-08-14T20:48:04.3518850Z 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-08-14T20:48:04.3519980Z 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-08-14T20:48:04.3521130Z 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-08-14T20:48:04.3522400Z 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-08-14T20:48:04.3523630Z 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-08-14T20:48:04.3524760Z 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-08-14T20:48:04.3525910Z 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-08-14T20:48:04.3527000Z 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-08-14T20:48:04.3528090Z 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-08-14T20:48:04.3529270Z 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-08-14T20:48:04.3530390Z 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-08-14T20:48:04.3531520Z 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-08-14T20:48:04.3532670Z 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-08-14T20:48:04.3533890Z 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-08-14T20:48:04.3535100Z 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-08-14T20:48:04.3536230Z 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-08-14T20:48:04.3537390Z 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-08-14T20:48:04.3538460Z 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-08-14T20:48:04.3539590Z 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-08-14T20:48:04.3540960Z 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-08-14T20:48:04.3542120Z 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-08-14T20:48:04.3543350Z 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-08-14T20:48:04.3544620Z 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-08-14T20:48:04.3545800Z 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-08-14T20:48:04.3547000Z 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-08-14T20:48:04.3548230Z 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-08-14T20:48:04.3549520Z 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-08-14T20:48:04.3550720Z 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-08-14T20:48:04.3551810Z 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-08-14T20:48:04.3552910Z 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-08-14T20:48:04.3554130Z 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-08-14T20:48:04.3555180Z 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-08-14T20:48:04.3556450Z 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-08-14T20:48:04.3557600Z 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-08-14T20:48:04.3558730Z 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-08-14T20:48:04.3560070Z 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-08-14T20:48:04.3560910Z 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-08-14T20:48:04.3562050Z 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-08-14T20:48:04.3563160Z 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-08-14T20:48:04.3564470Z 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-08-14T20:48:04.3565560Z 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-08-14T20:48:04.3566730Z 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-08-14T20:48:04.3567890Z 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-08-14T20:48:04.3569080Z 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-08-14T20:48:04.3570180Z 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-08-14T20:48:04.3571370Z 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-08-14T20:48:04.3572760Z 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-08-14T20:48:04.3573690Z 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-08-14T20:48:04.3575090Z 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-08-14T20:48:04.3576110Z 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-08-14T20:48:04.3577250Z 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-08-14T20:48:04.3578400Z 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-08-14T20:48:04.3579550Z 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-08-14T20:48:04.3580790Z 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-08-14T20:48:04.3581920Z 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-08-14T20:48:04.3583190Z 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-08-14T20:48:04.3584480Z 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-08-14T20:48:04.3585400Z 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-08-14T20:48:04.3586420Z 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-08-14T20:48:04.3587540Z 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-08-14T20:48:04.3588760Z 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-08-14T20:48:04.3589870Z 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-08-14T20:48:04.3591240Z 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-08-14T20:48:04.3592360Z 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-08-14T20:48:04.3593460Z 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-08-14T20:48:04.3594680Z 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-08-14T20:48:04.3595990Z 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-08-14T20:48:04.3597070Z 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-08-14T20:48:04.3598210Z 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-08-14T20:48:04.3599300Z 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-08-14T20:48:04.3600420Z 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-08-14T20:48:04.3601480Z 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-08-14T20:48:04.3602590Z 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-08-14T20:48:04.3603780Z 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-08-14T20:48:04.3604990Z 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-08-14T20:48:04.3606100Z 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-08-14T20:48:04.3607100Z 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-08-14T20:48:04.3608220Z 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-08-14T20:48:04.3609350Z 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-08-14T20:48:04.3610420Z 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-08-14T20:48:04.3611550Z 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-08-14T20:48:04.3612730Z 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-08-14T20:48:04.3613870Z 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-08-14T20:48:04.3614960Z 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-08-14T20:48:04.3616220Z 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-08-14T20:48:04.3617560Z 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-08-14T20:48:04.3618400Z 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-08-14T20:48:04.3619590Z 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-08-14T20:48:04.3620780Z 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-08-14T20:48:04.3622080Z 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-08-14T20:48:04.3623120Z 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-08-14T20:48:04.3624300Z 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-08-14T20:48:04.3625530Z 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-08-14T20:48:04.3626800Z 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-08-14T20:48:04.3627820Z 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-08-14T20:48:04.3628970Z 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-08-14T20:48:04.3630170Z 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-08-14T20:48:04.3631330Z 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-08-14T20:48:04.3632480Z 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-08-14T20:48:04.3633570Z 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-08-14T20:48:04.3634620Z 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-08-14T20:48:04.3635710Z 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-08-14T20:48:04.3636910Z 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-08-14T20:48:04.3638100Z 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-08-14T20:48:04.3639300Z 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-08-14T20:48:04.3640370Z 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-08-14T20:48:04.3641430Z 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-08-14T20:48:04.3642690Z 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-08-14T20:48:04.3643780Z 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-08-14T20:48:04.3644870Z 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-08-14T20:48:04.3646070Z 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-08-14T20:48:04.3647180Z 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-08-14T20:48:04.3648330Z 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-08-14T20:48:04.3649640Z 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-08-14T20:48:04.3650720Z 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-08-14T20:48:04.3651870Z 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-08-14T20:48:04.3652950Z 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-08-14T20:48:04.3654090Z 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-08-14T20:48:04.3655350Z 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-08-14T20:48:04.3656420Z 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-08-14T20:48:04.3657640Z 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-08-14T20:48:04.3658960Z 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-08-14T20:48:04.3660020Z 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-08-14T20:48:04.3661140Z 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-08-14T20:48:04.3662220Z 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-08-14T20:48:04.3663390Z 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-08-14T20:48:04.3664550Z 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-08-14T20:48:04.3665780Z 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-08-14T20:48:04.3666940Z 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-08-14T20:48:04.3668200Z 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-08-14T20:48:04.3669310Z 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-08-14T20:48:04.3670490Z 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-08-14T20:48:04.3671600Z 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-08-14T20:48:04.3672780Z 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-08-14T20:48:04.3673970Z 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-08-14T20:48:04.3675300Z 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-08-14T20:48:04.3676610Z 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-08-14T20:48:04.3677670Z 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-08-14T20:48:04.3678920Z 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-08-14T20:48:04.3680040Z 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-08-14T20:48:04.3681270Z 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-08-14T20:48:04.3682490Z 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-08-14T20:48:04.3683550Z 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-08-14T20:48:04.3684930Z 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-08-14T20:48:04.3685850Z 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-08-14T20:48:04.3687030Z 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-08-14T20:48:04.3688080Z 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-08-14T20:48:04.3689460Z 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-08-14T20:48:04.3690670Z 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-08-14T20:48:04.3691780Z 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-08-14T20:48:04.3693000Z 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-08-14T20:48:04.3694120Z 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-08-14T20:48:04.3695250Z 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-08-14T20:48:04.3696450Z 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-08-14T20:48:04.3697590Z 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-08-14T20:48:04.3698730Z 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-08-14T20:48:04.3699880Z 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-08-14T20:48:04.3701290Z 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-08-14T20:48:04.3702260Z 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-08-14T20:48:04.3703300Z 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-08-14T20:48:04.3704370Z 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-08-14T20:48:04.3705670Z 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-08-14T20:48:04.3706940Z 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-08-14T20:48:04.3708100Z 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-08-14T20:48:04.3709320Z 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-08-14T20:48:04.3710440Z 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-08-14T20:48:04.3711650Z 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-08-14T20:48:04.3712810Z 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-08-14T20:48:04.3713900Z 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-08-14T20:48:04.3715060Z 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-08-14T20:48:04.3716330Z 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-08-14T20:48:04.3717410Z 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-08-14T20:48:04.3718690Z 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-08-14T20:48:04.3719840Z 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-08-14T20:48:04.3721010Z 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-08-14T20:48:04.3727710Z 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-08-14T20:48:04.3728400Z 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-08-14T20:48:04.3728900Z 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-08-14T20:48:04.3729210Z 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-08-14T20:48:04.3729610Z 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-08-14T20:48:04.3729960Z 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-08-14T20:48:04.3730320Z 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-08-14T20:48:04.3731310Z 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-08-14T20:48:04.3732580Z 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-08-14T20:48:04.3733710Z 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-08-14T20:48:04.3734950Z 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-08-14T20:48:04.3736200Z 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-08-14T20:48:04.3737400Z 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-08-14T20:48:04.3738500Z 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-08-14T20:48:04.3739750Z 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-08-14T20:48:04.3740860Z 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-08-14T20:48:04.3742110Z 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-08-14T20:48:04.3743390Z 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-08-14T20:48:04.3744470Z 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-08-14T20:48:04.3745750Z 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-08-14T20:48:04.3746810Z 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-08-14T20:48:04.3748090Z 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-08-14T20:48:04.3749350Z 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-08-14T20:48:04.3750390Z 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-08-14T20:48:04.3751390Z 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-08-14T20:48:04.3752630Z 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-08-14T20:48:04.3753850Z 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-08-14T20:48:04.3754890Z 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-08-14T20:48:04.3756140Z 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-08-14T20:48:04.3757380Z 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-08-14T20:48:04.3758560Z 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-08-14T20:48:04.3759750Z 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-08-14T20:48:04.3760840Z 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-08-14T20:48:04.3762060Z 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-08-14T20:48:04.3763330Z 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-08-14T20:48:04.3764390Z 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-08-14T20:48:04.3765590Z 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-08-14T20:48:04.3766760Z 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-08-14T20:48:04.3767770Z 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-08-14T20:48:04.3768930Z 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-08-14T20:48:04.3770100Z 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-08-14T20:48:04.3771190Z 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-08-14T20:48:04.3772410Z 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-08-14T20:48:04.3773440Z 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-08-14T20:48:04.3774780Z 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-08-14T20:48:04.3775820Z 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-08-14T20:48:04.3776950Z 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-08-14T20:48:04.3778120Z 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-08-14T20:48:04.3779290Z 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-08-14T20:48:04.3780520Z 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-08-14T20:48:04.3781530Z 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-08-14T20:48:04.3782840Z 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-08-14T20:48:04.3783890Z 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-08-14T20:48:04.3785000Z 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-08-14T20:48:04.3786110Z 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-08-14T20:48:04.3787300Z 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-08-14T20:48:04.3788390Z 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-08-14T20:48:04.3789620Z 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-08-14T20:48:04.3790860Z 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-08-14T20:48:04.3791950Z 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-08-14T20:48:04.3793060Z 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-08-14T20:48:04.3794150Z 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-08-14T20:48:04.3795220Z 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-08-14T20:48:04.3796500Z 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-08-14T20:48:04.3797700Z 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-08-14T20:48:04.3798870Z 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-08-14T20:48:04.3800000Z 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-08-14T20:48:04.3801150Z 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-08-14T20:48:04.3802340Z 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-08-14T20:48:04.3803470Z 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-08-14T20:48:04.3805440Z 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-08-14T20:48:04.3806840Z 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-08-14T20:48:04.3808120Z 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-08-14T20:48:04.3809130Z 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-08-14T20:48:04.3810440Z 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-08-14T20:48:04.3811730Z 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-08-14T20:48:04.3813200Z 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-08-14T20:48:04.3814360Z 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-08-14T20:48:04.3815430Z 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-08-14T20:48:04.3816520Z 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-08-14T20:48:04.3817740Z 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-08-14T20:48:04.3818910Z 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-08-14T20:48:04.3820280Z 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-08-14T20:48:04.3821510Z 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-08-14T20:48:04.3822760Z 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-08-14T20:48:04.3823900Z 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-08-14T20:48:04.3825030Z 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-08-14T20:48:04.3826210Z 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-08-14T20:48:04.3827320Z 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-08-14T20:48:04.3828690Z 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-08-14T20:48:04.3830120Z 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-08-14T20:48:04.3831160Z 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-08-14T20:48:04.3832250Z 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-08-14T20:48:04.3833390Z 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-08-14T20:48:04.3834650Z 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-08-14T20:48:04.3835830Z 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-08-14T20:48:04.3837060Z 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-08-14T20:48:04.3838270Z 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-08-14T20:48:04.3839530Z 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-08-14T20:48:04.3840640Z 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-08-14T20:48:04.3841800Z 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-08-14T20:48:04.3842810Z 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-08-14T20:48:04.3844000Z 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-08-14T20:48:04.3845200Z 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-08-14T20:48:04.3846590Z 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-08-14T20:48:04.3847730Z 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-08-14T20:48:04.3848870Z 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-08-14T20:48:04.3850050Z 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-08-14T20:48:04.3851160Z 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-08-14T20:48:04.3852300Z 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-08-14T20:48:04.3853690Z 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-08-14T20:48:04.3855110Z 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-08-14T20:48:04.3856240Z 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-08-14T20:48:04.3857400Z 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-08-14T20:48:04.3858480Z 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-08-14T20:48:04.3859530Z 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-08-14T20:48:04.3860740Z 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-08-14T20:48:04.3862110Z 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-08-14T20:48:04.3863810Z 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-08-14T20:48:04.3865140Z 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-08-14T20:48:04.3866400Z 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-08-14T20:48:04.3867600Z 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-08-14T20:48:04.3868780Z 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-08-14T20:48:04.3870080Z 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-08-14T20:48:04.3871400Z 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-08-14T20:48:04.3872630Z 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-08-14T20:48:04.3873740Z 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-08-14T20:48:04.3875000Z 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-08-14T20:48:04.3876080Z 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-08-14T20:48:04.3877200Z 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-08-14T20:48:04.3878490Z 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-08-14T20:48:04.3880040Z 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-08-14T20:48:04.3881140Z 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-08-14T20:48:04.3882200Z 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-08-14T20:48:04.3883350Z 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-08-14T20:48:04.3885370Z 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-08-14T20:48:04.3887040Z 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-08-14T20:48:04.3888270Z 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-08-14T20:48:04.3889420Z 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-08-14T20:48:04.3890550Z 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-08-14T20:48:04.3891780Z 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-08-14T20:48:04.3893110Z 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-08-14T20:48:04.3894160Z 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-08-14T20:48:04.3895870Z 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-08-14T20:48:04.3896980Z 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-08-14T20:48:04.3898180Z 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-08-14T20:48:04.3899330Z 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-08-14T20:48:04.3900510Z 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-08-14T20:48:04.3901660Z 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-08-14T20:48:04.3902730Z 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-08-14T20:48:04.3903900Z 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-08-14T20:48:04.3905230Z 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-08-14T20:48:04.3906360Z 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-08-14T20:48:04.3907610Z 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-08-14T20:48:04.3908740Z 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-08-14T20:48:04.3910250Z 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-08-14T20:48:04.3911100Z 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-08-14T20:48:04.3912190Z 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-08-14T20:48:04.3913210Z 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-08-14T20:48:04.3914330Z 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-08-14T20:48:04.3915570Z 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-08-14T20:48:04.3916730Z 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-08-14T20:48:04.3917840Z 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-08-14T20:48:04.3918920Z 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-08-14T20:48:04.3920060Z 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-08-14T20:48:04.3921150Z 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-08-14T20:48:04.3922280Z 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-08-14T20:48:04.3923370Z 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-08-14T20:48:04.3924560Z 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-08-14T20:48:04.3925720Z 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-08-14T20:48:04.3926800Z 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-08-14T20:48:04.3927990Z 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-08-14T20:48:04.3929100Z 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-08-14T20:48:04.3930230Z 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-08-14T20:48:04.3931490Z 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-08-14T20:48:04.3932580Z 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-08-14T20:48:04.3933680Z 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-08-14T20:48:04.3934710Z 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-08-14T20:48:04.3935960Z 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-08-14T20:48:04.3937080Z 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-08-14T20:48:04.3938210Z 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-08-14T20:48:04.3939320Z 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-08-14T20:48:04.3940560Z 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-08-14T20:48:04.3941900Z 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-08-14T20:48:04.3942900Z 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-08-14T20:48:04.3944070Z 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-08-14T20:48:04.3945180Z 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-08-14T20:48:04.3946460Z 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-08-14T20:48:04.3947630Z 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-08-14T20:48:04.3948760Z 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-08-14T20:48:04.3949860Z 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-08-14T20:48:04.3950950Z 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-08-14T20:48:04.3952250Z 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-08-14T20:48:04.3953410Z 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-08-14T20:48:04.3954530Z 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-08-14T20:48:04.3955670Z 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-08-14T20:48:04.3956810Z 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-08-14T20:48:04.3958200Z 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-08-14T20:48:04.3959260Z 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-08-14T20:48:04.3960380Z 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-08-14T20:48:04.3961600Z 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-08-14T20:48:04.3962690Z 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-08-14T20:48:04.3963780Z 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-08-14T20:48:04.3965000Z 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-08-14T20:48:04.3966120Z 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-08-14T20:48:04.3967190Z 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-08-14T20:48:04.3968480Z 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-08-14T20:48:04.3969570Z 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-08-14T20:48:04.3970700Z 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-08-14T20:48:04.3971820Z 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-08-14T20:48:04.3972900Z 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-08-14T20:48:04.3974070Z 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-08-14T20:48:04.3975110Z 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-08-14T20:48:04.3976320Z 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-08-14T20:48:04.3977500Z 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-08-14T20:48:04.3979030Z 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-08-14T20:48:04.3979750Z 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-08-14T20:48:04.3980790Z 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-08-14T20:48:04.3981900Z 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-08-14T20:48:04.3983090Z 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-08-14T20:48:04.3984170Z 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-08-14T20:48:04.3985290Z 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-08-14T20:48:04.3986460Z 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-08-14T20:48:04.3987560Z 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-08-14T20:48:04.3988810Z 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-08-14T20:48:04.3989940Z 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-08-14T20:48:04.3991020Z 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-08-14T20:48:04.3992210Z 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-08-14T20:48:04.3993340Z 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-08-14T20:48:04.3994550Z 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-08-14T20:48:04.3996070Z 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-08-14T20:48:04.3996960Z 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-08-14T20:48:04.3998050Z 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-08-14T20:48:04.3999230Z 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-08-14T20:48:04.4000520Z 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-08-14T20:48:04.4001600Z 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-08-14T20:48:04.4002720Z 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-08-14T20:48:04.4003840Z 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-08-14T20:48:04.4004950Z 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-08-14T20:48:04.4006090Z 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-08-14T20:48:04.4007280Z 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-08-14T20:48:04.4008360Z 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-08-14T20:48:04.4009440Z 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-08-14T20:48:04.4010630Z 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-08-14T20:48:04.4012000Z 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-08-14T20:48:04.4013050Z 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-08-14T20:48:04.4014220Z 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-08-14T20:48:04.4015370Z 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-08-14T20:48:04.4016500Z 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-08-14T20:48:04.4017570Z 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-08-14T20:48:04.4018730Z 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-08-14T20:48:04.4019840Z 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-08-14T20:48:04.4021030Z 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-08-14T20:48:04.4022070Z 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-08-14T20:48:04.4023240Z 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-08-14T20:48:04.4024310Z 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-08-14T20:48:04.4025530Z 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-08-14T20:48:04.4026610Z 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-08-14T20:48:04.4027790Z 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-08-14T20:48:04.4028910Z 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-08-14T20:48:04.4030120Z 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-08-14T20:48:04.4031310Z 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-08-14T20:48:04.4032500Z 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-08-14T20:48:04.4033710Z 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-08-14T20:48:04.4034950Z 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-08-14T20:48:04.4035980Z 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-08-14T20:48:04.4037220Z 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-08-14T20:48:04.4038250Z 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-08-14T20:48:04.4039350Z 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-08-14T20:48:04.4040570Z 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-08-14T20:48:04.4041620Z 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-08-14T20:48:04.4042650Z 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-08-14T20:48:04.4043900Z 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-08-14T20:48:04.4044910Z 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-08-14T20:48:04.4046220Z 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-08-14T20:48:04.4047320Z 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-08-14T20:48:04.4048510Z 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-08-14T20:48:04.4049810Z 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-08-14T20:48:04.4050990Z 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-08-14T20:48:04.4052150Z 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-08-14T20:48:04.4053160Z 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-08-14T20:48:04.4054370Z 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-08-14T20:48:04.4055620Z 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-08-14T20:48:04.4056900Z 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-08-14T20:48:04.4058350Z 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-08-14T20:48:04.4059680Z 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-08-14T20:48:04.4060890Z 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-08-14T20:48:04.4062190Z 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-08-14T20:48:04.4063360Z 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-08-14T20:48:04.4064440Z 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-08-14T20:48:04.4065560Z 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-08-14T20:48:04.4066810Z 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-08-14T20:48:04.4067980Z 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-08-14T20:48:04.4069170Z 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-08-14T20:48:04.4070280Z 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-08-14T20:48:04.4071430Z 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-08-14T20:48:04.4072720Z 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-08-14T20:48:04.4073650Z 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-08-14T20:48:04.4074820Z 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-08-14T20:48:04.4075880Z 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-08-14T20:48:04.4077030Z 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-08-14T20:48:04.4078280Z 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-08-14T20:48:04.4079330Z 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-08-14T20:48:04.4080530Z 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-08-14T20:48:04.4081600Z 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-08-14T20:48:04.4082750Z 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-08-14T20:48:04.4083880Z 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-08-14T20:48:04.4085030Z 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-08-14T20:48:04.4086250Z 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-08-14T20:48:04.4087390Z 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-08-14T20:48:04.4088620Z 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-08-14T20:48:04.4089640Z 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-08-14T20:48:04.4090810Z 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-08-14T20:48:04.4091910Z 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-08-14T20:48:04.4093000Z 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-08-14T20:48:04.4094240Z 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-08-14T20:48:04.4095480Z 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-08-14T20:48:04.4096580Z 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-08-14T20:48:04.4097630Z 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-08-14T20:48:04.4098780Z 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-08-14T20:48:04.4100120Z 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-08-14T20:48:04.4101530Z 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-08-14T20:48:04.4102350Z 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-08-14T20:48:04.4103510Z 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-08-14T20:48:04.4104530Z 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-08-14T20:48:04.4105720Z 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-08-14T20:48:04.4106780Z 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-08-14T20:48:04.4107960Z 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-08-14T20:48:04.4108890Z 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-08-14T20:48:04.4110030Z 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-08-14T20:48:04.4111230Z 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-08-14T20:48:04.4112340Z 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-08-14T20:48:04.4113410Z 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-08-14T20:48:04.4114550Z 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-08-14T20:48:04.4115760Z 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-08-14T20:48:04.4116950Z 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-08-14T20:48:04.4118140Z 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-08-14T20:48:04.4119300Z 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-08-14T20:48:04.4120470Z 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-08-14T20:48:04.4121610Z 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-08-14T20:48:04.4122860Z 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-08-14T20:48:04.4123970Z 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-08-14T20:48:04.4125130Z 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-08-14T20:48:04.4126220Z 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-08-14T20:48:04.4127470Z 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-08-14T20:48:04.4128480Z 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-08-14T20:48:04.4129710Z 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-08-14T20:48:04.4130860Z 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-08-14T20:48:04.4131910Z 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-08-14T20:48:04.4133080Z 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-08-14T20:48:04.4134230Z 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-08-14T20:48:04.4135430Z 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-08-14T20:48:04.4136530Z 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-08-14T20:48:04.4137710Z 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-08-14T20:48:04.4138760Z 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-08-14T20:48:04.4139830Z 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-08-14T20:48:04.4141060Z 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-08-14T20:48:04.4142180Z 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-08-14T20:48:04.4143280Z 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-08-14T20:48:04.4144500Z 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-08-14T20:48:04.4145630Z 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-08-14T20:48:04.4146740Z 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-08-14T20:48:04.4147820Z 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-08-14T20:48:04.4148930Z 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-08-14T20:48:04.4150070Z 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-08-14T20:48:04.4151290Z 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-08-14T20:48:04.4152390Z 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-08-14T20:48:04.4153450Z 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-08-14T20:48:04.4154590Z 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-08-14T20:48:04.4155740Z 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-08-14T20:48:04.4156890Z 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-08-14T20:48:04.4158060Z 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-08-14T20:48:04.4159120Z 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-08-14T20:48:04.4160290Z 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-08-14T20:48:04.4161330Z 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-08-14T20:48:04.4162490Z 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-08-14T20:48:04.4163580Z 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-08-14T20:48:04.4164650Z 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-08-14T20:48:04.4165760Z 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-08-14T20:48:04.4166850Z 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-08-14T20:48:04.4167960Z 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-08-14T20:48:04.4169030Z 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-08-14T20:48:04.4170260Z 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-08-14T20:48:04.4171330Z 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-08-14T20:48:04.4172370Z 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-08-14T20:48:04.4173530Z 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-08-14T20:48:04.4174590Z 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-08-14T20:48:04.4175770Z 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-08-14T20:48:04.4176870Z 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-08-14T20:48:04.4177920Z 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-08-14T20:48:04.4179020Z 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-08-14T20:48:04.4180160Z 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-08-14T20:48:04.4181200Z 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-08-14T20:48:04.4182250Z 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-08-14T20:48:04.4183440Z 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-08-14T20:48:04.4184610Z 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-08-14T20:48:04.4185890Z 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-08-14T20:48:04.4186870Z 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-08-14T20:48:04.4188040Z 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-08-14T20:48:04.4189130Z 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-08-14T20:48:04.4190240Z 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-08-14T20:48:04.4191470Z 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-08-14T20:48:04.4192610Z 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-08-14T20:48:04.4193650Z 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-08-14T20:48:04.4194730Z 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-08-14T20:48:04.4195820Z 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-08-14T20:48:04.4197090Z 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-08-14T20:48:04.4198170Z 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-08-14T20:48:04.4199260Z 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-08-14T20:48:04.4200470Z 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-08-14T20:48:04.4201580Z 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-08-14T20:48:04.4202730Z 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-08-14T20:48:04.4203790Z 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-08-14T20:48:04.4204920Z 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-08-14T20:48:04.4206140Z 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-08-14T20:48:04.4207250Z 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-08-14T20:48:04.4208460Z 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-08-14T20:48:04.4209500Z 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-08-14T20:48:04.4210800Z 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-08-14T20:48:04.4211870Z 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-08-14T20:48:04.4212880Z 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-08-14T20:48:04.4214010Z 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-08-14T20:48:04.4215200Z 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-08-14T20:48:04.4216240Z 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-08-14T20:48:04.4217450Z 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-08-14T20:48:04.4218620Z 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-08-14T20:48:04.4219770Z 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-08-14T20:48:04.4220890Z 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-08-14T20:48:04.4222070Z 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-08-14T20:48:04.4223180Z 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-08-14T20:48:04.4224490Z 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-08-14T20:48:04.4225500Z 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-08-14T20:48:04.4226580Z 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-08-14T20:48:04.4227800Z 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-08-14T20:48:04.4228920Z 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-08-14T20:48:04.4230070Z 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-08-14T20:48:04.4231130Z 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-08-14T20:48:04.4232290Z 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-08-14T20:48:04.4233440Z 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-08-14T20:48:04.4234580Z 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-08-14T20:48:04.4235730Z 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-08-14T20:48:04.4236920Z 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-08-14T20:48:04.4238060Z 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-08-14T20:48:04.4239240Z 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-08-14T20:48:04.4240450Z 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-08-14T20:48:04.4241690Z 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-08-14T20:48:04.4242760Z 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-08-14T20:48:04.4243840Z 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-08-14T20:48:04.4245000Z 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-08-14T20:48:04.4246090Z 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-08-14T20:48:04.4247210Z 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-08-14T20:48:04.4248330Z 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-08-14T20:48:04.4249450Z 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-08-14T20:48:04.4250490Z 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-08-14T20:48:04.4251710Z 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-08-14T20:48:04.4252830Z 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-08-14T20:48:04.4253940Z 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-08-14T20:48:04.4255130Z 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-08-14T20:48:04.4256330Z 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-08-14T20:48:04.4257650Z 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-08-14T20:48:04.4258800Z 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-08-14T20:48:04.4260070Z 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-08-14T20:48:04.4261040Z 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-08-14T20:48:04.4262210Z 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-08-14T20:48:04.4263360Z 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-08-14T20:48:04.4264410Z 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-08-14T20:48:04.4265590Z 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-08-14T20:48:04.4266690Z 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-08-14T20:48:04.4267770Z 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-08-14T20:48:04.4268890Z 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-08-14T20:48:04.4269970Z 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-08-14T20:48:04.4272110Z 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-08-14T20:48:04.4273450Z 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-08-14T20:48:04.4274600Z 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-08-14T20:48:04.4275740Z 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-08-14T20:48:04.4277090Z 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-08-14T20:48:04.4278170Z 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-08-14T20:48:04.4279270Z 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-08-14T20:48:04.4280450Z 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-08-14T20:48:04.4281550Z 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-08-14T20:48:04.4282800Z 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-08-14T20:48:04.4283850Z 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-08-14T20:48:04.4284900Z 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-08-14T20:48:04.4286070Z 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-08-14T20:48:04.4287240Z 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-08-14T20:48:04.4288480Z 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-08-14T20:48:04.4289940Z 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-08-14T20:48:04.4291130Z 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-08-14T20:48:04.4292390Z 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-08-14T20:48:04.4293370Z 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-08-14T20:48:04.4294570Z 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-08-14T20:48:04.4295690Z 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-08-14T20:48:04.4296870Z 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-08-14T20:48:04.4298100Z 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-08-14T20:48:04.4299280Z 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-08-14T20:48:04.4300440Z 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-08-14T20:48:04.4301600Z 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-08-14T20:48:04.4303030Z 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-08-14T20:48:04.4304200Z 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-08-14T20:48:04.4305220Z 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-08-14T20:48:04.4306460Z 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-08-14T20:48:04.4307640Z 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-08-14T20:48:04.4308790Z 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-08-14T20:48:04.4309920Z 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-08-14T20:48:04.4311040Z 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-08-14T20:48:04.4312240Z 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-08-14T20:48:04.4313260Z 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-08-14T20:48:04.4314450Z 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-08-14T20:48:04.4315650Z 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-08-14T20:48:04.4316720Z 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-08-14T20:48:04.4318070Z 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-08-14T20:48:04.4319160Z 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-08-14T20:48:04.4320370Z 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-08-14T20:48:04.4321530Z 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-08-14T20:48:04.4322660Z 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-08-14T20:48:04.4323790Z 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-08-14T20:48:04.4324950Z 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-08-14T20:48:04.4326100Z 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-08-14T20:48:04.4327270Z 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-08-14T20:48:04.4328470Z 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-08-14T20:48:04.4329640Z 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-08-14T20:48:04.4330920Z 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-08-14T20:48:04.4332020Z 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-08-14T20:48:04.4333250Z 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-08-14T20:48:04.4334400Z 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-08-14T20:48:04.4335500Z 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-08-14T20:48:04.4336720Z 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-08-14T20:48:04.4337820Z 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-08-14T20:48:04.4338950Z 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-08-14T20:48:04.4340070Z 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-08-14T20:48:04.4346950Z 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-08-14T20:48:04.4347310Z 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-08-14T20:48:04.4347650Z 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-08-14T20:48:04.4347990Z 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-08-14T20:48:04.4348330Z 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-08-14T20:48:04.4348660Z 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-08-14T20:48:04.4349040Z 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-08-14T20:48:04.4349640Z 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-08-14T20:48:04.4350680Z 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-08-14T20:48:04.4351910Z 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-08-14T20:48:04.4353030Z 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-08-14T20:48:04.4354160Z 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-08-14T20:48:04.4355260Z 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-08-14T20:48:04.4356480Z 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-08-14T20:48:04.4357640Z 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-08-14T20:48:04.4358810Z 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-08-14T20:48:04.4359970Z 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-08-14T20:48:04.4361200Z 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-08-14T20:48:04.4362400Z 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-08-14T20:48:04.4363420Z 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-08-14T20:48:04.4364590Z 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-08-14T20:48:04.4365800Z 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-08-14T20:48:04.4366950Z 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-08-14T20:48:04.4368170Z 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-08-14T20:48:04.4369260Z 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-08-14T20:48:04.4370490Z 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-08-14T20:48:04.4371600Z 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-08-14T20:48:04.4372820Z 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-08-14T20:48:04.4373890Z 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-08-14T20:48:04.4375080Z 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-08-14T20:48:04.4376340Z 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-08-14T20:48:04.4377400Z 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-08-14T20:48:04.4378590Z 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-08-14T20:48:04.4379650Z 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-08-14T20:48:04.4380860Z 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-08-14T20:48:04.4381980Z 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-08-14T20:48:04.4383210Z 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-08-14T20:48:04.4384460Z 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-08-14T20:48:04.4385620Z 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-08-14T20:48:04.4386750Z 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-08-14T20:48:04.4387820Z 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-08-14T20:48:04.4388920Z 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-08-14T20:48:04.4390040Z 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-08-14T20:48:04.4391190Z 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-08-14T20:48:04.4392300Z 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-08-14T20:48:04.4393600Z 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-08-14T20:48:04.4394780Z 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-08-14T20:48:04.4396080Z 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-08-14T20:48:04.4397390Z 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-08-14T20:48:04.4399200Z 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-08-14T20:48:04.4400560Z 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-08-14T20:48:04.4401810Z 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-08-14T20:48:04.4403210Z 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-08-14T20:48:04.4404310Z 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-08-14T20:48:04.4405590Z 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-08-14T20:48:04.4406700Z 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-08-14T20:48:04.4407790Z 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-08-14T20:48:04.4409190Z 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-08-14T20:48:04.4410410Z 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-08-14T20:48:04.4411600Z 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-08-14T20:48:04.4412620Z 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-08-14T20:48:04.4413670Z 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-08-14T20:48:04.4414980Z 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-08-14T20:48:04.4416250Z 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-08-14T20:48:04.4417310Z 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-08-14T20:48:04.4418470Z 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-08-14T20:48:04.4419740Z 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-08-14T20:48:04.4420900Z 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-08-14T20:48:04.4422240Z 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-08-14T20:48:04.4423200Z 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-08-14T20:48:04.4424430Z 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-08-14T20:48:04.4425590Z 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-08-14T20:48:04.4426700Z 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-08-14T20:48:04.4427890Z 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-08-14T20:48:04.4429000Z 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-08-14T20:48:04.4430180Z 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-08-14T20:48:04.4431310Z 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-08-14T20:48:04.4432730Z 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-08-14T20:48:04.4433790Z 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-08-14T20:48:04.4434950Z 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-08-14T20:48:04.4436050Z 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-08-14T20:48:04.4437260Z 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-08-14T20:48:04.4438340Z 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-08-14T20:48:04.4439540Z 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-08-14T20:48:04.4440610Z 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-08-14T20:48:04.4441780Z 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-08-14T20:48:04.4442920Z 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-08-14T20:48:04.4444000Z 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-08-14T20:48:04.4445140Z 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-08-14T20:48:04.4446330Z 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-08-14T20:48:04.4447520Z 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-08-14T20:48:04.4448550Z 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-08-14T20:48:04.4449720Z 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-08-14T20:48:04.4450890Z 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-08-14T20:48:04.4452080Z 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-08-14T20:48:04.4453270Z 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-08-14T20:48:04.4454350Z 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-08-14T20:48:04.4455440Z 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-08-14T20:48:04.4456650Z 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-08-14T20:48:04.4457670Z 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-08-14T20:48:04.4458780Z 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-08-14T20:48:04.4459890Z 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-08-14T20:48:04.4461120Z 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-08-14T20:48:04.4462270Z 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-08-14T20:48:04.4463380Z 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-08-14T20:48:04.4464660Z 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-08-14T20:48:04.4465740Z 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-08-14T20:48:04.4466930Z 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-08-14T20:48:04.4468010Z 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-08-14T20:48:04.4469150Z 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-08-14T20:48:04.4470300Z 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-08-14T20:48:04.4471370Z 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-08-14T20:48:04.4472530Z 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-08-14T20:48:04.4473580Z 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-08-14T20:48:04.4474850Z 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-08-14T20:48:04.4475990Z 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-08-14T20:48:04.4477090Z 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-08-14T20:48:04.4478220Z 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-08-14T20:48:04.4479370Z 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-08-14T20:48:04.4480550Z 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-08-14T20:48:04.4481720Z 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-08-14T20:48:04.4482870Z 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-08-14T20:48:04.4484060Z 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-08-14T20:48:04.4485170Z 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-08-14T20:48:04.4486310Z 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-08-14T20:48:04.4487520Z 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-08-14T20:48:04.4488620Z 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-08-14T20:48:04.4489880Z 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-08-14T20:48:04.4491050Z 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-08-14T20:48:04.4492120Z 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-08-14T20:48:04.4493250Z 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-08-14T20:48:04.4494310Z 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-08-14T20:48:04.4495460Z 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-08-14T20:48:04.4496690Z 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-08-14T20:48:04.4497750Z 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-08-14T20:48:04.4498940Z 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-08-14T20:48:04.4500120Z 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-08-14T20:48:04.4501340Z 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-08-14T20:48:04.4502470Z 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-08-14T20:48:04.4503690Z 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-08-14T20:48:04.4504960Z 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-08-14T20:48:04.4506030Z 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-08-14T20:48:04.4507060Z 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-08-14T20:48:04.4508300Z 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-08-14T20:48:04.4509310Z 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-08-14T20:48:04.4510480Z 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-08-14T20:48:04.4511560Z 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-08-14T20:48:04.4512710Z 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-08-14T20:48:04.4513840Z 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-08-14T20:48:04.4514960Z 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-08-14T20:48:04.4516190Z 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-08-14T20:48:04.4517360Z 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-08-14T20:48:04.4518480Z 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-08-14T20:48:04.4519700Z 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-08-14T20:48:04.4520900Z 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-08-14T20:48:04.4521870Z 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-08-14T20:48:04.4523140Z 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-08-14T20:48:04.4524080Z 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-08-14T20:48:04.4525260Z 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-08-14T20:48:04.4526430Z 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-08-14T20:48:04.4527440Z 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-08-14T20:48:04.4528540Z 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-08-14T20:48:04.4529720Z 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-08-14T20:48:04.4530810Z 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-08-14T20:48:04.4531980Z 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-08-14T20:48:04.4533190Z 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-08-14T20:48:04.4534290Z 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-08-14T20:48:04.4535450Z 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-08-14T20:48:04.4536470Z 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-08-14T20:48:04.4537640Z 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-08-14T20:48:04.4538740Z 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-08-14T20:48:04.4539800Z 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-08-14T20:48:04.4540980Z 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-08-14T20:48:04.4542060Z 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-08-14T20:48:04.4543250Z 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-08-14T20:48:04.4544300Z 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-08-14T20:48:04.4545460Z 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-08-14T20:48:04.4546570Z 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-08-14T20:48:04.4547720Z 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-08-14T20:48:04.4548830Z 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-08-14T20:48:04.4550080Z 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-08-14T20:48:04.4551250Z 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-08-14T20:48:04.4552300Z 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-08-14T20:48:04.4553490Z 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-08-14T20:48:04.4554600Z 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-08-14T20:48:04.4555900Z 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-08-14T20:48:04.4557020Z 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-08-14T20:48:04.4558090Z 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-08-14T20:48:04.4559180Z 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-08-14T20:48:04.4560350Z 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-08-14T20:48:04.4561520Z 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-08-14T20:48:04.4562660Z 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-08-14T20:48:04.4563850Z 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-08-14T20:48:04.4565150Z 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-08-14T20:48:04.4566320Z 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-08-14T20:48:04.4567360Z 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-08-14T20:48:04.4568480Z 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-08-14T20:48:04.4569630Z 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-08-14T20:48:04.4570770Z 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-08-14T20:48:04.4571900Z 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-08-14T20:48:04.4572960Z 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-08-14T20:48:04.4574030Z 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-08-14T20:48:04.4575090Z 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-08-14T20:48:04.4576280Z 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-08-14T20:48:04.4577420Z 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-08-14T20:48:04.4578420Z 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-08-14T20:48:04.4579590Z 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-08-14T20:48:04.4580600Z 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-08-14T20:48:04.4581640Z 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-08-14T20:48:04.4582870Z 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-08-14T20:48:04.4583910Z 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-08-14T20:48:04.4585000Z 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-08-14T20:48:04.4586080Z 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-08-14T20:48:04.4587230Z 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-08-14T20:48:04.4588330Z 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-08-14T20:48:04.4589620Z 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-08-14T20:48:04.4590720Z 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-08-14T20:48:04.4592010Z 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-08-14T20:48:04.4593120Z 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-08-14T20:48:04.4594260Z 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-08-14T20:48:04.4595460Z 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-08-14T20:48:04.4596520Z 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-08-14T20:48:04.4597710Z 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-08-14T20:48:04.4598680Z 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-08-14T20:48:04.4599990Z 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-08-14T20:48:04.4601250Z 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-08-14T20:48:04.4602510Z 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-08-14T20:48:04.4603590Z 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-08-14T20:48:04.4604730Z 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-08-14T20:48:04.4605940Z 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-08-14T20:48:04.4607100Z 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-08-14T20:48:04.4608160Z 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-08-14T20:48:04.4609370Z 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-08-14T20:48:04.4610470Z 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-08-14T20:48:04.4611650Z 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-08-14T20:48:04.4612820Z 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-08-14T20:48:04.4613990Z 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-08-14T20:48:04.4615060Z 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-08-14T20:48:04.4616260Z 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-08-14T20:48:04.4617480Z 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-08-14T20:48:04.4618980Z 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-08-14T20:48:04.4620160Z 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-08-14T20:48:04.4621360Z 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-08-14T20:48:04.4622640Z 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-08-14T20:48:04.4623910Z 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-08-14T20:48:04.4625210Z 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-08-14T20:48:04.4626340Z 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-08-14T20:48:04.4627490Z 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-08-14T20:48:04.4628630Z 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-08-14T20:48:04.4629730Z 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-08-14T20:48:04.4630910Z 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-08-14T20:48:04.4632240Z 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-08-14T20:48:04.4633330Z 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-08-14T20:48:04.4634450Z 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-08-14T20:48:04.4635650Z 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-08-14T20:48:04.4636940Z 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-08-14T20:48:04.4638400Z 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-08-14T20:48:04.4640590Z 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-08-14T20:48:04.4641760Z 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-08-14T20:48:04.4642940Z 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-08-14T20:48:04.4644150Z 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-08-14T20:48:04.4645290Z 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-08-14T20:48:04.4646540Z 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-08-14T20:48:04.4647550Z 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-08-14T20:48:04.4648690Z 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-08-14T20:48:04.4649840Z 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-08-14T20:48:04.4651010Z 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-08-14T20:48:04.4652200Z 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-08-14T20:48:04.4653690Z 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-08-14T20:48:04.4654500Z 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-08-14T20:48:04.4655620Z 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-08-14T20:48:04.4656820Z 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-08-14T20:48:04.4657970Z 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-08-14T20:48:04.4659160Z 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-08-14T20:48:04.4660360Z 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-08-14T20:48:04.4661520Z 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-08-14T20:48:04.4662870Z 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-08-14T20:48:04.4664030Z 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-08-14T20:48:04.4665210Z 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-08-14T20:48:04.4666330Z 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-08-14T20:48:04.4667410Z 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-08-14T20:48:04.4668610Z 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-08-14T20:48:04.4675780Z 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-08-14T20:48:04.4676840Z 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-08-14T20:48:04.4677720Z 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-08-14T20:48:04.4678570Z 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-08-14T20:48:04.4679440Z 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-08-14T20:48:04.4680350Z 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-08-14T20:48:04.4681320Z 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-08-14T20:48:04.4682160Z 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-08-14T20:48:04.4682960Z 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-08-14T20:48:04.4683780Z 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-08-14T20:48:04.4684550Z 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-08-14T20:48:04.4685320Z 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-08-14T20:48:04.4686120Z 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-08-14T20:48:04.4686910Z 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-08-14T20:48:04.4687680Z 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-08-14T20:48:04.4688430Z 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-08-14T20:48:04.4689250Z 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-08-14T20:48:04.4690810Z 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-08-14T20:48:04.4691950Z 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-08-14T20:48:04.4693260Z 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-08-14T20:48:04.4694590Z 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-08-14T20:48:04.4695780Z 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-08-14T20:48:04.4696940Z 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-08-14T20:48:04.4698030Z 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-08-14T20:48:04.4699180Z 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-08-14T20:48:04.4700420Z 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-08-14T20:48:04.4701530Z 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-08-14T20:48:04.4702600Z 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-08-14T20:48:04.4703790Z 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-08-14T20:48:04.4704900Z 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-08-14T20:48:04.4706100Z 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-08-14T20:48:04.4707210Z 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-08-14T20:48:04.4708380Z 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-08-14T20:48:04.4709520Z 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-08-14T20:48:04.4710570Z 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-08-14T20:48:04.4711660Z 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-08-14T20:48:04.4712900Z 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-08-14T20:48:04.4714050Z 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-08-14T20:48:04.4715060Z 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-08-14T20:48:04.4716180Z 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-08-14T20:48:04.4717240Z 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-08-14T20:48:04.4718360Z 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-08-14T20:48:04.4719490Z 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-08-14T20:48:04.4720550Z 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-08-14T20:48:04.4721810Z 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-08-14T20:48:04.4722790Z 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-08-14T20:48:04.4723880Z 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-08-14T20:48:04.4724970Z 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-08-14T20:48:04.4726090Z 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-08-14T20:48:04.4727270Z 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-08-14T20:48:04.4728450Z 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-08-14T20:48:04.4729610Z 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-08-14T20:48:04.4731190Z 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-08-14T20:48:04.4732150Z 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-08-14T20:48:04.4733210Z 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-08-14T20:48:04.4734390Z 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-08-14T20:48:04.4735450Z 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-08-14T20:48:04.4736580Z 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-08-14T20:48:04.4737920Z 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-08-14T20:48:04.4738950Z 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-08-14T20:48:04.4740090Z 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-08-14T20:48:04.4741250Z 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-08-14T20:48:04.4742500Z 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-08-14T20:48:04.4743690Z 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-08-14T20:48:04.4744940Z 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-08-14T20:48:04.4746100Z 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-08-14T20:48:04.4747210Z 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-08-14T20:48:04.4748560Z 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-08-14T20:48:04.4749440Z 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-08-14T20:48:04.4750480Z 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-08-14T20:48:04.4751580Z 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-08-14T20:48:04.4753080Z 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-08-14T20:48:04.4753950Z 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-08-14T20:48:04.4754950Z 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-08-14T20:48:04.4756080Z 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-08-14T20:48:04.4757230Z 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-08-14T20:48:04.4758430Z 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-08-14T20:48:04.4759690Z 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-08-14T20:48:04.4760560Z 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-08-14T20:48:04.4761630Z 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-08-14T20:48:04.4762880Z 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-08-14T20:48:04.4763980Z 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-08-14T20:48:04.4765120Z 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-08-14T20:48:04.4766180Z 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-08-14T20:48:04.4767370Z 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-08-14T20:48:04.4768430Z 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-08-14T20:48:04.4769490Z 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-08-14T20:48:04.4770670Z 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-08-14T20:48:04.4771830Z 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-08-14T20:48:04.4773020Z 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-08-14T20:48:04.4774140Z 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-08-14T20:48:04.4775280Z 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-08-14T20:48:04.4776380Z 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-08-14T20:48:04.4777510Z 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-08-14T20:48:04.4778580Z 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-08-14T20:48:04.4779790Z 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-08-14T20:48:04.4780880Z 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-08-14T20:48:04.4782010Z 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-08-14T20:48:04.4783020Z 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-08-14T20:48:04.4784150Z 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-08-14T20:48:04.4785560Z 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-08-14T20:48:04.4786990Z 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-08-14T20:48:04.4788000Z 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-08-14T20:48:04.4789150Z 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-08-14T20:48:04.4790350Z 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-08-14T20:48:04.4791400Z 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-08-14T20:48:04.4792500Z 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-08-14T20:48:04.4793660Z 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-08-14T20:48:04.4794840Z 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-08-14T20:48:04.4796090Z 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-08-14T20:48:04.4797170Z 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-08-14T20:48:04.4798240Z 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-08-14T20:48:04.4799280Z 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-08-14T20:48:04.4800380Z 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-08-14T20:48:04.4801700Z 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-08-14T20:48:04.4802820Z 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-08-14T20:48:04.4803880Z 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-08-14T20:48:04.4805130Z 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-08-14T20:48:04.4806200Z 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-08-14T20:48:04.4807440Z 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-08-14T20:48:04.4808470Z 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-08-14T20:48:04.4809590Z 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-08-14T20:48:04.4810780Z 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-08-14T20:48:04.4811930Z 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-08-14T20:48:04.4812980Z 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-08-14T20:48:04.4814110Z 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-08-14T20:48:04.4815310Z 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-08-14T20:48:04.4816390Z 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-08-14T20:48:04.4817560Z 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-08-14T20:48:04.4818640Z 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-08-14T20:48:04.4819960Z 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-08-14T20:48:04.4821030Z 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-08-14T20:48:04.4822140Z 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-08-14T20:48:04.4823260Z 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-08-14T20:48:04.4824410Z 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-08-14T20:48:04.4825670Z 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-08-14T20:48:04.4826770Z 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-08-14T20:48:04.4827990Z 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-08-14T20:48:04.4829100Z 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-08-14T20:48:04.4830390Z 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-08-14T20:48:04.4831640Z 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-08-14T20:48:04.4832750Z 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-08-14T20:48:04.4833830Z 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-08-14T20:48:04.4834940Z 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-08-14T20:48:04.4836170Z 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-08-14T20:48:04.4837400Z 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-08-14T20:48:04.4838540Z 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-08-14T20:48:04.4839590Z 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-08-14T20:48:04.4840660Z 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-08-14T20:48:04.4841840Z 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-08-14T20:48:04.4843000Z 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-08-14T20:48:04.4844130Z 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-08-14T20:48:04.4845320Z 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-08-14T20:48:04.4846790Z 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-08-14T20:48:04.4847650Z 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-08-14T20:48:04.4848660Z 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-08-14T20:48:04.4849820Z 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-08-14T20:48:04.4850930Z 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-08-14T20:48:04.4852090Z 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-08-14T20:48:04.4853250Z 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-08-14T20:48:04.4854420Z 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-08-14T20:48:04.4855620Z 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-08-14T20:48:04.4856810Z 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-08-14T20:48:04.4857950Z 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-08-14T20:48:04.4859150Z 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-08-14T20:48:04.4860420Z 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-08-14T20:48:04.4861400Z 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-08-14T20:48:04.4862560Z 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-08-14T20:48:04.4863650Z 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-08-14T20:48:04.4864750Z 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-08-14T20:48:04.4866070Z 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-08-14T20:48:04.4867170Z 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-08-14T20:48:04.4868430Z 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-08-14T20:48:04.4869640Z 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-08-14T20:48:04.4870710Z 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-08-14T20:48:04.4871840Z 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-08-14T20:48:04.4872970Z 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-08-14T20:48:04.4874400Z 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-08-14T20:48:04.4875660Z 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-08-14T20:48:04.4876790Z 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-08-14T20:48:04.4877950Z 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-08-14T20:48:04.4879050Z 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-08-14T20:48:04.4880190Z 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-08-14T20:48:04.4881350Z 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-08-14T20:48:04.4882520Z 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-08-14T20:48:04.4883730Z 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-08-14T20:48:04.4884910Z 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-08-14T20:48:04.4885940Z 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-08-14T20:48:04.4887100Z 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-08-14T20:48:04.4888350Z 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-08-14T20:48:04.4889470Z 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-08-14T20:48:04.4890680Z 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-08-14T20:48:04.4891820Z 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-08-14T20:48:04.4892900Z 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-08-14T20:48:04.4894150Z 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-08-14T20:48:04.4895300Z 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-08-14T20:48:04.4896580Z 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-08-14T20:48:04.4897600Z 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-08-14T20:48:04.4898800Z 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-08-14T20:48:04.4900150Z 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-08-14T20:48:04.4901350Z 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-08-14T20:48:04.4902520Z 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-08-14T20:48:04.4903680Z 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-08-14T20:48:04.4904990Z 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-08-14T20:48:04.4906190Z 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-08-14T20:48:04.4907450Z 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-08-14T20:48:04.4908570Z 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-08-14T20:48:04.4909750Z 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-08-14T20:48:04.4910890Z 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-08-14T20:48:04.4911960Z 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-08-14T20:48:04.4913070Z 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-08-14T20:48:04.4914340Z 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-08-14T20:48:04.4915650Z 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-08-14T20:48:04.4916800Z 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-08-14T20:48:04.4917940Z 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-08-14T20:48:04.4919210Z 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-08-14T20:48:04.4921510Z 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-08-14T20:48:04.4922810Z 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-08-14T20:48:04.4925300Z 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-08-14T20:48:04.4926420Z 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-08-14T20:48:04.4927670Z 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-08-14T20:48:04.4928970Z 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-08-14T20:48:04.4931370Z 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-08-14T20:48:04.4932510Z 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-08-14T20:48:04.4933760Z 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-08-14T20:48:04.4934750Z 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-08-14T20:48:04.4935900Z 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-08-14T20:48:04.4937020Z 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-08-14T20:48:04.4938450Z 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-08-14T20:48:04.4939620Z 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-08-14T20:48:04.4940720Z 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-08-14T20:48:04.4941870Z 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-08-14T20:48:04.4942960Z 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-08-14T20:48:04.4944160Z 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-08-14T20:48:04.4945280Z 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-08-14T20:48:04.4946530Z 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-08-14T20:48:04.4947870Z 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-08-14T20:48:04.4949100Z 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-08-14T20:48:04.4950390Z 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-08-14T20:48:04.4951650Z 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-08-14T20:48:04.4952930Z 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-08-14T20:48:04.4954280Z 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-08-14T20:48:04.4955480Z 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-08-14T20:48:04.4956540Z 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-08-14T20:48:04.4957830Z 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-08-14T20:48:04.4959110Z 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-08-14T20:48:04.4960480Z 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-08-14T20:48:04.4961620Z 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-08-14T20:48:04.4962660Z 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-08-14T20:48:04.4963840Z 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-08-14T20:48:04.4964890Z 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-08-14T20:48:04.4966120Z 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-08-14T20:48:04.4967530Z 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-08-14T20:48:04.4968520Z 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-08-14T20:48:04.4969850Z 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-08-14T20:48:04.4970950Z 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-08-14T20:48:04.4972140Z 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-08-14T20:48:04.4973190Z 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-08-14T20:48:04.4974480Z 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-08-14T20:48:04.4975720Z 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-08-14T20:48:04.4976760Z 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-08-14T20:48:04.4977960Z 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-08-14T20:48:04.4979200Z 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-08-14T20:48:04.4980330Z 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-08-14T20:48:04.4981640Z 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-08-14T20:48:04.4982600Z 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-08-14T20:48:04.4983740Z 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-08-14T20:48:04.4984850Z 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-08-14T20:48:04.4985910Z 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-08-14T20:48:04.4987090Z 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-08-14T20:48:04.4988160Z 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-08-14T20:48:04.4989270Z 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-08-14T20:48:04.4990390Z 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-08-14T20:48:04.4991460Z 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-08-14T20:48:04.4992640Z 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-08-14T20:48:04.4993950Z 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-08-14T20:48:04.4995090Z 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-08-14T20:48:04.4996200Z 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-08-14T20:48:04.4997330Z 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-08-14T20:48:04.4998570Z 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-08-14T20:48:04.4999770Z 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-08-14T20:48:04.5000830Z 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-08-14T20:48:04.5001940Z 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-08-14T20:48:04.5009470Z 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-08-14T20:48:04.5010090Z 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-08-14T20:48:04.5010620Z 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-08-14T20:48:04.5010940Z 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-08-14T20:48:04.5011380Z 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-08-14T20:48:04.5011740Z 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-08-14T20:48:04.5012060Z 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-08-14T20:48:04.5012410Z 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-08-14T20:48:04.5012840Z 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-08-14T20:48:04.5013460Z 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-08-14T20:48:04.5014550Z 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-08-14T20:48:04.5015770Z 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-08-14T20:48:04.5016930Z 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-08-14T20:48:04.5018080Z 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-08-14T20:48:04.5019310Z 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-08-14T20:48:04.5020610Z 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-08-14T20:48:04.5021570Z 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-08-14T20:48:04.5022850Z 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-08-14T20:48:04.5023890Z 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-08-14T20:48:04.5025030Z 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-08-14T20:48:04.5026230Z 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-08-14T20:48:04.5027300Z 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-08-14T20:48:04.5028420Z 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-08-14T20:48:04.5029720Z 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-08-14T20:48:04.5030790Z 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-08-14T20:48:04.5031870Z 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-08-14T20:48:04.5033190Z 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-08-14T20:48:04.5034280Z 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-08-14T20:48:04.5035480Z 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-08-14T20:48:04.5036710Z 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-08-14T20:48:04.5037790Z 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-08-14T20:48:04.5038890Z 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-08-14T20:48:04.5040100Z 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-08-14T20:48:04.5041430Z 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-08-14T20:48:04.5042630Z 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-08-14T20:48:04.5043690Z 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-08-14T20:48:04.5044840Z 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-08-14T20:48:04.5045950Z 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-08-14T20:48:04.5047130Z 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-08-14T20:48:04.5048370Z 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-08-14T20:48:04.5049430Z 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-08-14T20:48:04.5050560Z 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-08-14T20:48:04.5051670Z 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-08-14T20:48:04.5052830Z 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-08-14T20:48:04.5053920Z 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-08-14T20:48:04.5055270Z 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-08-14T20:48:04.5056520Z 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-08-14T20:48:04.5058370Z 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-08-14T20:48:04.5059530Z 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-08-14T20:48:04.5060650Z 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-08-14T20:48:04.5061840Z 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-08-14T20:48:04.5063110Z 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-08-14T20:48:04.5064270Z 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-08-14T20:48:04.5065320Z 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-08-14T20:48:04.5066510Z 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-08-14T20:48:04.5067720Z 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-08-14T20:48:04.5068870Z 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-08-14T20:48:04.5070120Z 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-08-14T20:48:04.5071360Z 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-08-14T20:48:04.5072500Z 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-08-14T20:48:04.5073720Z 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-08-14T20:48:04.5074830Z 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-08-14T20:48:04.5075890Z 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-08-14T20:48:04.5077080Z 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-08-14T20:48:04.5078370Z 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-08-14T20:48:04.5079470Z 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-08-14T20:48:04.5080530Z 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-08-14T20:48:04.5081670Z 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-08-14T20:48:04.5082960Z 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-08-14T20:48:04.5084100Z 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-08-14T20:48:04.5085260Z 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-08-14T20:48:04.5086370Z 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-08-14T20:48:04.5087470Z 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-08-14T20:48:04.5088660Z 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-08-14T20:48:04.5089800Z 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-08-14T20:48:04.5090890Z 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-08-14T20:48:04.5092000Z 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-08-14T20:48:04.5093290Z 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-08-14T20:48:04.5094420Z 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-08-14T20:48:04.5095730Z 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-08-14T20:48:04.5096750Z 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-08-14T20:48:04.5097970Z 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-08-14T20:48:04.5099070Z 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-08-14T20:48:04.5100260Z 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-08-14T20:48:04.5101530Z 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-08-14T20:48:04.5102490Z 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-08-14T20:48:04.5103730Z 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-08-14T20:48:04.5104940Z 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-08-14T20:48:04.5106120Z 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-08-14T20:48:04.5107270Z 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-08-14T20:48:04.5108340Z 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-08-14T20:48:04.5109540Z 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-08-14T20:48:04.5110810Z 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-08-14T20:48:04.5111990Z 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-08-14T20:48:04.5113070Z 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-08-14T20:48:04.5114270Z 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-08-14T20:48:04.5115560Z 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-08-14T20:48:04.5116670Z 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-08-14T20:48:04.5117880Z 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-08-14T20:48:04.5119050Z 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-08-14T20:48:04.5120150Z 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-08-14T20:48:04.5121300Z 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-08-14T20:48:04.5122390Z 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-08-14T20:48:04.5123590Z 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-08-14T20:48:04.5124690Z 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-08-14T20:48:04.5125950Z 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-08-14T20:48:04.5127320Z 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-08-14T20:48:04.5128330Z 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-08-14T20:48:04.5129460Z 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-08-14T20:48:04.5130680Z 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-08-14T20:48:04.5131740Z 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-08-14T20:48:04.5133020Z 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-08-14T20:48:04.5134240Z 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-08-14T20:48:04.5135440Z 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-08-14T20:48:04.5136530Z 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-08-14T20:48:04.5137680Z 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-08-14T20:48:04.5138780Z 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-08-14T20:48:04.5139860Z 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-08-14T20:48:04.5140960Z 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-08-14T20:48:04.5142170Z 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-08-14T20:48:04.5143340Z 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-08-14T20:48:04.5144360Z 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-08-14T20:48:04.5145510Z 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-08-14T20:48:04.5146550Z 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-08-14T20:48:04.5147730Z 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-08-14T20:48:04.5148820Z 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-08-14T20:48:04.5149900Z 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-08-14T20:48:04.5151070Z 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-08-14T20:48:04.5152310Z 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-08-14T20:48:04.5153510Z 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-08-14T20:48:04.5154600Z 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-08-14T20:48:04.5155790Z 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-08-14T20:48:04.5156930Z 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-08-14T20:48:04.5158110Z 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-08-14T20:48:04.5159290Z 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-08-14T20:48:04.5160310Z 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-08-14T20:48:04.5161510Z 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-08-14T20:48:04.5162750Z 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-08-14T20:48:04.5163890Z 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-08-14T20:48:04.5164960Z 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-08-14T20:48:04.5166110Z 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-08-14T20:48:04.5167300Z 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-08-14T20:48:04.5168450Z 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-08-14T20:48:04.5169560Z 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-08-14T20:48:04.5170730Z 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-08-14T20:48:04.5171780Z 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-08-14T20:48:04.5173050Z 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-08-14T20:48:04.5174090Z 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-08-14T20:48:04.5175170Z 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-08-14T20:48:04.5176360Z 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-08-14T20:48:04.5177420Z 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-08-14T20:48:04.5178590Z 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-08-14T20:48:04.5179680Z 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-08-14T20:48:04.5180930Z 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-08-14T20:48:04.5182120Z 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-08-14T20:48:04.5183230Z 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-08-14T20:48:04.5184280Z 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-08-14T20:48:04.5185430Z 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-08-14T20:48:04.5186600Z 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-08-14T20:48:04.5187650Z 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-08-14T20:48:04.5188620Z 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-08-14T20:48:04.5189730Z 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-08-14T20:48:04.5190810Z 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-08-14T20:48:04.5191970Z 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-08-14T20:48:04.5193060Z 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-08-14T20:48:04.5194080Z 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-08-14T20:48:04.5195210Z 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-08-14T20:48:04.5196430Z 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-08-14T20:48:04.5197550Z 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-08-14T20:48:04.5198740Z 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-08-14T20:48:04.5199670Z 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-08-14T20:48:04.5200840Z 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-08-14T20:48:04.5201940Z 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-08-14T20:48:04.5203110Z 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-08-14T20:48:04.5204170Z 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-08-14T20:48:04.5205240Z 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-08-14T20:48:04.5206520Z 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-08-14T20:48:04.5207590Z 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-08-14T20:48:04.5208630Z 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-08-14T20:48:04.5209790Z 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-08-14T20:48:04.5210880Z 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-08-14T20:48:04.5212010Z 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-08-14T20:48:04.5213170Z 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-08-14T20:48:04.5214350Z 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-08-14T20:48:04.5215390Z 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-08-14T20:48:04.5216530Z 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-08-14T20:48:04.5217690Z 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-08-14T20:48:04.5218770Z 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-08-14T20:48:04.5219920Z 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-08-14T20:48:04.5221090Z 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-08-14T20:48:04.5222240Z 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-08-14T20:48:04.5223320Z 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-08-14T20:48:04.5224350Z 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-08-14T20:48:04.5225410Z 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-08-14T20:48:04.5226550Z 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-08-14T20:48:04.5227720Z 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-08-14T20:48:04.5228800Z 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-08-14T20:48:04.5229940Z 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-08-14T20:48:04.5231170Z 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-08-14T20:48:04.5232370Z 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-08-14T20:48:04.5233550Z 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-08-14T20:48:04.5234660Z 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-08-14T20:48:04.5235820Z 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-08-14T20:48:04.5236960Z 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-08-14T20:48:04.5238190Z 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-08-14T20:48:04.5239350Z 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-08-14T20:48:04.5240520Z 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-08-14T20:48:04.5241650Z 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-08-14T20:48:04.5242890Z 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-08-14T20:48:04.5244030Z 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-08-14T20:48:04.5245080Z 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-08-14T20:48:04.5246190Z 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-08-14T20:48:04.5247670Z 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-08-14T20:48:04.5248870Z 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-08-14T20:48:04.5249950Z 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-08-14T20:48:04.5251140Z 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-08-14T20:48:04.5252210Z 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-08-14T20:48:04.5253400Z 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-08-14T20:48:04.5254510Z 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-08-14T20:48:04.5256100Z 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-08-14T20:48:04.5257330Z 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-08-14T20:48:04.5258640Z 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-08-14T20:48:04.5259760Z 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-08-14T20:48:04.5260880Z 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-08-14T20:48:04.5261960Z 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-08-14T20:48:04.5263200Z 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-08-14T20:48:04.5264270Z 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-08-14T20:48:04.5265360Z 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-08-14T20:48:04.5266530Z 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-08-14T20:48:04.5267620Z 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-08-14T20:48:04.5268730Z 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-08-14T20:48:04.5269900Z 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-08-14T20:48:04.5271280Z 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-08-14T20:48:04.5272320Z 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-08-14T20:48:04.5273580Z 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-08-14T20:48:04.5274630Z 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-08-14T20:48:04.5276920Z 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-08-14T20:48:04.5278090Z 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-08-14T20:48:04.5279370Z 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-08-14T20:48:04.5280650Z 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-08-14T20:48:04.5281980Z 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-08-14T20:48:04.5283190Z 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-08-14T20:48:04.5284450Z 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-08-14T20:48:04.5285540Z 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-08-14T20:48:04.5286640Z 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-08-14T20:48:04.5287800Z 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-08-14T20:48:04.5289050Z 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-08-14T20:48:04.5290610Z 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-08-14T20:48:04.5291800Z 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-08-14T20:48:04.5292920Z 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-08-14T20:48:04.5294070Z 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-08-14T20:48:04.5295290Z 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-08-14T20:48:04.5296490Z 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-08-14T20:48:04.5297910Z 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-08-14T20:48:04.5299070Z 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-08-14T20:48:04.5300140Z 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-08-14T20:48:04.5301270Z 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-08-14T20:48:04.5302480Z 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-08-14T20:48:04.5303650Z 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-08-14T20:48:04.5304950Z 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-08-14T20:48:04.5306150Z 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-08-14T20:48:04.5307520Z 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-08-14T20:48:04.5308740Z 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-08-14T20:48:04.5309980Z 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-08-14T20:48:04.5311230Z 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-08-14T20:48:04.5312670Z 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-08-14T20:48:04.5313890Z 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-08-14T20:48:04.5315130Z 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-08-14T20:48:04.5316410Z 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-08-14T20:48:04.5317760Z 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-08-14T20:48:04.5319100Z 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-08-14T20:48:04.5320190Z 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-08-14T20:48:04.5321370Z 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-08-14T20:48:04.5322470Z 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-08-14T20:48:04.5323620Z 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-08-14T20:48:04.5324690Z 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-08-14T20:48:04.5325840Z 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-08-14T20:48:04.5326950Z 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-08-14T20:48:04.5328080Z 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-08-14T20:48:04.5329170Z 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-08-14T20:48:04.5330280Z 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-08-14T20:48:04.5331410Z 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-08-14T20:48:04.5332520Z 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-08-14T20:48:04.5333560Z 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-08-14T20:48:04.5334700Z 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-08-14T20:48:04.5335850Z 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-08-14T20:48:04.5336920Z 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-08-14T20:48:04.5338090Z 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-08-14T20:48:04.5339170Z 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-08-14T20:48:04.5340380Z 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-08-14T20:48:04.5341490Z 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-08-14T20:48:04.5342610Z 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-08-14T20:48:04.5343740Z 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-08-14T20:48:04.5344900Z 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-08-14T20:48:04.5346010Z 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-08-14T20:48:04.5347230Z 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-08-14T20:48:04.5348170Z 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-08-14T20:48:04.5349390Z 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-08-14T20:48:04.5350450Z 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-08-14T20:48:04.5351550Z 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-08-14T20:48:04.5352640Z 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-08-14T20:48:04.5353730Z 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-08-14T20:48:04.5355020Z 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-08-14T20:48:04.5356010Z 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-08-14T20:48:04.5357280Z 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-08-14T20:48:04.5358440Z 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-08-14T20:48:04.5359570Z 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-08-14T20:48:04.5360690Z 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-08-14T20:48:04.5361740Z 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-08-14T20:48:04.5363090Z 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-08-14T20:48:04.5364120Z 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-08-14T20:48:04.5365140Z 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-08-14T20:48:04.5366370Z 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-08-14T20:48:04.5367550Z 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-08-14T20:48:04.5368660Z 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-08-14T20:48:04.5369810Z 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-08-14T20:48:04.5370940Z 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-08-14T20:48:04.5372000Z 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-08-14T20:48:04.5373140Z 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-08-14T20:48:04.5374280Z 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-08-14T20:48:04.5375440Z 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-08-14T20:48:04.5376590Z 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-08-14T20:48:04.5377720Z 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-08-14T20:48:04.5378830Z 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-08-14T20:48:04.5380000Z 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-08-14T20:48:04.5381140Z 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-08-14T20:48:04.5382260Z 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-08-14T20:48:04.5383420Z 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-08-14T20:48:04.5384520Z 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-08-14T20:48:04.5385600Z 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-08-14T20:48:04.5386720Z 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-08-14T20:48:04.5387800Z 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-08-14T20:48:04.5389010Z 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-08-14T20:48:04.5390140Z 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-08-14T20:48:04.5391210Z 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-08-14T20:48:04.5392310Z 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-08-14T20:48:04.5393550Z 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-08-14T20:48:04.5394740Z 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-08-14T20:48:04.5395900Z 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-08-14T20:48:04.5396960Z 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-08-14T20:48:04.5398110Z 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-08-14T20:48:04.5399340Z 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-08-14T20:48:04.5400480Z 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-08-14T20:48:04.5401640Z 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-08-14T20:48:04.5402990Z 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-08-14T20:48:04.5404410Z 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-08-14T20:48:04.5405520Z 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-08-14T20:48:04.5406650Z 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-08-14T20:48:04.5407990Z 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-08-14T20:48:04.5409170Z 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-08-14T20:48:04.5410320Z 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-08-14T20:48:04.5411700Z 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-08-14T20:48:04.5413000Z 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-08-14T20:48:04.5414100Z 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-08-14T20:48:04.5415380Z 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-08-14T20:48:04.5416710Z 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-08-14T20:48:04.5417880Z 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-08-14T20:48:04.5419040Z 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-08-14T20:48:04.5420220Z 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-08-14T20:48:04.5421470Z 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-08-14T20:48:04.5422700Z 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-08-14T20:48:04.5423730Z 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-08-14T20:48:04.5424840Z 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-08-14T20:48:04.5425980Z 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-08-14T20:48:04.5427070Z 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-08-14T20:48:04.5428340Z 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-08-14T20:48:04.5429400Z 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-08-14T20:48:04.5430680Z 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-08-14T20:48:04.5431870Z 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-08-14T20:48:04.5432990Z 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-08-14T20:48:04.5434100Z 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-08-14T20:48:04.5435300Z 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-08-14T20:48:04.5436550Z 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-08-14T20:48:04.5437730Z 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-08-14T20:48:04.5439210Z 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-08-14T20:48:04.5440220Z 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-08-14T20:48:04.5441390Z 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-08-14T20:48:04.5442490Z 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-08-14T20:48:04.5443660Z 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-08-14T20:48:04.5444870Z 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-08-14T20:48:04.5446080Z 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-08-14T20:48:04.5447390Z 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-08-14T20:48:04.5448570Z 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-08-14T20:48:04.5449870Z 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-08-14T20:48:04.5451000Z 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-08-14T20:48:04.5452310Z 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-08-14T20:48:04.5453920Z 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-08-14T20:48:04.5454620Z 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-08-14T20:48:04.5455730Z 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-08-14T20:48:04.5456860Z 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-08-14T20:48:04.5458080Z 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-08-14T20:48:04.5459180Z 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-08-14T20:48:04.5460320Z 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-08-14T20:48:04.5461470Z 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-08-14T20:48:04.5462610Z 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-08-14T20:48:04.5463610Z 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-08-14T20:48:04.5464920Z 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-08-14T20:48:04.5465990Z 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-08-14T20:48:04.5467020Z 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-08-14T20:48:04.5468100Z 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-08-14T20:48:04.5469210Z 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-08-14T20:48:04.5470310Z 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-08-14T20:48:04.5471460Z 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-08-14T20:48:04.5472540Z 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-08-14T20:48:04.5473630Z 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-08-14T20:48:04.5474750Z 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-08-14T20:48:04.5475820Z 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-08-14T20:48:04.5476880Z 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-08-14T20:48:04.5477980Z 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-08-14T20:48:04.5479220Z 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-08-14T20:48:04.5480410Z 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-08-14T20:48:04.5481490Z 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-08-14T20:48:04.5482610Z 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-08-14T20:48:04.5483610Z 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-08-14T20:48:04.5484790Z 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-08-14T20:48:04.5485850Z 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-08-14T20:48:04.5487130Z 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-08-14T20:48:04.5488150Z 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-08-14T20:48:04.5489310Z 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-08-14T20:48:04.5490490Z 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-08-14T20:48:04.5491540Z 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-08-14T20:48:04.5492690Z 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-08-14T20:48:04.5493830Z 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-08-14T20:48:04.5495040Z 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-08-14T20:48:04.5496150Z 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-08-14T20:48:04.5497370Z 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-08-14T20:48:04.5498720Z 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-08-14T20:48:04.5499800Z 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-08-14T20:48:04.5500930Z 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-08-14T20:48:04.5502180Z 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-08-14T20:48:04.5503300Z 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-08-14T20:48:04.5504360Z 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-08-14T20:48:04.5505510Z 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-08-14T20:48:04.5506600Z 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-08-14T20:48:04.5507660Z 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-08-14T20:48:04.5508800Z 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-08-14T20:48:04.5509940Z 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-08-14T20:48:04.5511020Z 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-08-14T20:48:04.5512210Z 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-08-14T20:48:04.5513230Z 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-08-14T20:48:04.5514460Z 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-08-14T20:48:04.5515550Z 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-08-14T20:48:04.5516770Z 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-08-14T20:48:04.5518030Z 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-08-14T20:48:04.5519100Z 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-08-14T20:48:04.5520360Z 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-08-14T20:48:04.5521380Z 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-08-14T20:48:04.5522460Z 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-08-14T20:48:04.5523630Z 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-08-14T20:48:04.5524760Z 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-08-14T20:48:04.5526000Z 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-08-14T20:48:04.5527070Z 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-08-14T20:48:04.5528260Z 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-08-14T20:48:04.5529350Z 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-08-14T20:48:04.5530560Z 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-08-14T20:48:04.5531730Z 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-08-14T20:48:04.5532960Z 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-08-14T20:48:04.5534060Z 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-08-14T20:48:04.5535150Z 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-08-14T20:48:04.5536310Z 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-08-14T20:48:04.5537450Z 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-08-14T20:48:04.5538590Z 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-08-14T20:48:04.5539720Z 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-08-14T20:48:04.5540920Z 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-08-14T20:48:04.5542260Z 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-08-14T20:48:04.5543410Z 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-08-14T20:48:04.5544520Z 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-08-14T20:48:04.5545800Z 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-08-14T20:48:04.5546910Z 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-08-14T20:48:04.5548140Z 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-08-14T20:48:04.5549370Z 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-08-14T20:48:04.5550460Z 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-08-14T20:48:04.5551580Z 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-08-14T20:48:04.5552840Z 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-08-14T20:48:04.5554250Z 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-08-14T20:48:04.5555310Z 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-08-14T20:48:04.5556510Z 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-08-14T20:48:04.5557850Z 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-08-14T20:48:04.5558950Z 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-08-14T20:48:04.5560090Z 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-08-14T20:48:04.5561190Z 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-08-14T20:48:04.5562290Z 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-08-14T20:48:04.5563430Z 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-08-14T20:48:04.5564790Z 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-08-14T20:48:04.5565990Z 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-08-14T20:48:04.5567890Z 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-08-14T20:48:04.5570040Z 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-08-14T20:48:04.5571640Z 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-08-14T20:48:04.5572970Z 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-08-14T20:48:04.5574320Z 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-08-14T20:48:04.5575490Z 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-08-14T20:48:04.5576780Z 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-08-14T20:48:04.5578000Z 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-08-14T20:48:04.5579240Z 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-08-14T20:48:04.5580400Z 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-08-14T20:48:04.5581450Z 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-08-14T20:48:04.5582680Z 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-08-14T20:48:04.5584010Z 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-08-14T20:48:04.5585140Z 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-08-14T20:48:04.5586420Z 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-08-14T20:48:04.5587430Z 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-08-14T20:48:04.5588730Z 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-08-14T20:48:04.5589860Z 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-08-14T20:48:04.5591080Z 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-08-14T20:48:04.5592460Z 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-08-14T20:48:04.5593700Z 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-08-14T20:48:04.5594870Z 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-08-14T20:48:04.5596070Z 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-08-14T20:48:04.5597200Z 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-08-14T20:48:04.5598610Z 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-08-14T20:48:04.5599630Z 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-08-14T20:48:04.5600780Z 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-08-14T20:48:04.5601980Z 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-08-14T20:48:04.5603090Z 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-08-14T20:48:04.5604200Z 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-08-14T20:48:04.5605470Z 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-08-14T20:48:04.5606640Z 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-08-14T20:48:04.5607920Z 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-08-14T20:48:04.5609030Z 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-08-14T20:48:04.5610180Z 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-08-14T20:48:04.5611300Z 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-08-14T20:48:04.5612510Z 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-08-14T20:48:04.5613830Z 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-08-14T20:48:04.5614950Z 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-08-14T20:48:04.5616170Z 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-08-14T20:48:04.5617470Z 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-08-14T20:48:04.5618670Z 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-08-14T20:48:04.5619840Z 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-08-14T20:48:04.5620950Z 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-08-14T20:48:04.5622220Z 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-08-14T20:48:04.5632100Z 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-08-14T20:48:04.5632720Z 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-08-14T20:48:04.5633210Z 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-08-14T20:48:04.5633690Z 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-08-14T20:48:04.5634070Z 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-08-14T20:48:04.5634520Z 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-08-14T20:48:04.5634890Z 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-08-14T20:48:04.5635300Z 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-08-14T20:48:04.5635730Z 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-08-14T20:48:04.5636130Z 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-08-14T20:48:04.5636600Z 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-08-14T20:48:04.5636930Z 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-08-14T20:48:04.5637800Z 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-08-14T20:48:04.5638880Z 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-08-14T20:48:04.5640050Z 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-08-14T20:48:04.5641180Z 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-08-14T20:48:04.5642410Z 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-08-14T20:48:04.5643540Z 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-08-14T20:48:04.5644730Z 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-08-14T20:48:04.5645830Z 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-08-14T20:48:04.5647120Z 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-08-14T20:48:04.5648180Z 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-08-14T20:48:04.5649260Z 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-08-14T20:48:04.5650480Z 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-08-14T20:48:04.5651500Z 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-08-14T20:48:04.5652710Z 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-08-14T20:48:04.5653860Z 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-08-14T20:48:04.5655000Z 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-08-14T20:48:04.5656120Z 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-08-14T20:48:04.5657240Z 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-08-14T20:48:04.5658370Z 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-08-14T20:48:04.5659450Z 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-08-14T20:48:04.5660570Z 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-08-14T20:48:04.5661660Z 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-08-14T20:48:04.5662740Z 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-08-14T20:48:04.5663770Z 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-08-14T20:48:04.5664920Z 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-08-14T20:48:04.5665920Z 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-08-14T20:48:04.5667020Z 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-08-14T20:48:04.5668110Z 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-08-14T20:48:04.5669320Z 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-08-14T20:48:04.5671060Z 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-08-14T20:48:04.5672470Z 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-08-14T20:48:04.5673700Z 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-08-14T20:48:04.5675070Z 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-08-14T20:48:04.5676400Z 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-08-14T20:48:04.5677700Z 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-08-14T20:48:04.5679010Z 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-08-14T20:48:04.5680410Z 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-08-14T20:48:04.5681600Z 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-08-14T20:48:04.5682890Z 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-08-14T20:48:04.5684270Z 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-08-14T20:48:04.5685510Z 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-08-14T20:48:04.5686740Z 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-08-14T20:48:04.5687980Z 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-08-14T20:48:04.5689220Z 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-08-14T20:48:04.5690620Z 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-08-14T20:48:04.5691900Z 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-08-14T20:48:04.5693070Z 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-08-14T20:48:04.5694160Z 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-08-14T20:48:04.5695240Z 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-08-14T20:48:04.5696850Z 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-08-14T20:48:04.5697710Z 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-08-14T20:48:04.5698790Z 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-08-14T20:48:04.5699980Z 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-08-14T20:48:04.5701020Z 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-08-14T20:48:04.5702240Z 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-08-14T20:48:04.5703280Z 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-08-14T20:48:04.5704410Z 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-08-14T20:48:04.5705660Z 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-08-14T20:48:04.5706680Z 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-08-14T20:48:04.5707880Z 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-08-14T20:48:04.5709090Z 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-08-14T20:48:04.5710220Z 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-08-14T20:48:04.5711240Z 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-08-14T20:48:04.5712370Z 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-08-14T20:48:04.5713540Z 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-08-14T20:48:04.5714670Z 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-08-14T20:48:04.5715830Z 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-08-14T20:48:04.5716870Z 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-08-14T20:48:04.5718000Z 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-08-14T20:48:04.5719220Z 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-08-14T20:48:04.5720260Z 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-08-14T20:48:04.5721450Z 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-08-14T20:48:04.5722680Z 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-08-14T20:48:04.5723740Z 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-08-14T20:48:04.5724950Z 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-08-14T20:48:04.5725970Z 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-08-14T20:48:04.5727220Z 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-08-14T20:48:04.5728360Z 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-08-14T20:48:04.5729580Z 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-08-14T20:48:04.5730860Z 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-08-14T20:48:04.5732020Z 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-08-14T20:48:04.5733060Z 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-08-14T20:48:04.5734340Z 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-08-14T20:48:04.5735370Z 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-08-14T20:48:04.5736570Z 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-08-14T20:48:04.5737660Z 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-08-14T20:48:04.5738730Z 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-08-14T20:48:04.5739800Z 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-08-14T20:48:04.5740860Z 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-08-14T20:48:04.5742120Z 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-08-14T20:48:04.5743160Z 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-08-14T20:48:04.5744310Z 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-08-14T20:48:04.5745430Z 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-08-14T20:48:04.5746600Z 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-08-14T20:48:04.5747730Z 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-08-14T20:48:04.5748970Z 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-08-14T20:48:04.5749960Z 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-08-14T20:48:04.5751080Z 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-08-14T20:48:04.5752300Z 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-08-14T20:48:04.5753340Z 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-08-14T20:48:04.5754540Z 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-08-14T20:48:04.5755690Z 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-08-14T20:48:04.5756750Z 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-08-14T20:48:04.5758000Z 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-08-14T20:48:04.5759070Z 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-08-14T20:48:04.5760200Z 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-08-14T20:48:04.5761320Z 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-08-14T20:48:04.5762440Z 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-08-14T20:48:04.5763620Z 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-08-14T20:48:04.5764760Z 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-08-14T20:48:04.5765910Z 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-08-14T20:48:04.5767030Z 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-08-14T20:48:04.5768120Z 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-08-14T20:48:04.5769220Z 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-08-14T20:48:04.5770410Z 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-08-14T20:48:04.5771530Z 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-08-14T20:48:04.5772760Z 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-08-14T20:48:04.5773790Z 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-08-14T20:48:04.5774930Z 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-08-14T20:48:04.5776050Z 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-08-14T20:48:04.5777200Z 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-08-14T20:48:04.5778380Z 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-08-14T20:48:04.5779460Z 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-08-14T20:48:04.5780530Z 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-08-14T20:48:04.5781680Z 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-08-14T20:48:04.5782770Z 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-08-14T20:48:04.5784010Z 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-08-14T20:48:04.5785060Z 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-08-14T20:48:04.5786120Z 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-08-14T20:48:04.5787300Z 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-08-14T20:48:04.5788330Z 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-08-14T20:48:04.5789430Z 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-08-14T20:48:04.5790530Z 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-08-14T20:48:04.5791620Z 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-08-14T20:48:04.5792910Z 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-08-14T20:48:04.5794110Z 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-08-14T20:48:04.5795180Z 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-08-14T20:48:04.5796410Z 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-08-14T20:48:04.5797440Z 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-08-14T20:48:04.5798540Z 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-08-14T20:48:04.5799640Z 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-08-14T20:48:04.5800820Z 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-08-14T20:48:04.5802190Z 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-08-14T20:48:04.5802960Z 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-08-14T20:48:04.5804060Z 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-08-14T20:48:04.5805180Z 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-08-14T20:48:04.5806330Z 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-08-14T20:48:04.5807370Z 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-08-14T20:48:04.5808510Z 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-08-14T20:48:04.5809600Z 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-08-14T20:48:04.5810760Z 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-08-14T20:48:04.5811890Z 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-08-14T20:48:04.5812980Z 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-08-14T20:48:04.5814070Z 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-08-14T20:48:04.5815170Z 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-08-14T20:48:04.5816330Z 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-08-14T20:48:04.5817470Z 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-08-14T20:48:04.5818650Z 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-08-14T20:48:04.5819890Z 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-08-14T20:48:04.5820980Z 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-08-14T20:48:04.5822080Z 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-08-14T20:48:04.5823200Z 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-08-14T20:48:04.5824280Z 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-08-14T20:48:04.5825530Z 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-08-14T20:48:04.5826630Z 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-08-14T20:48:04.5827930Z 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-08-14T20:48:04.5828900Z 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-08-14T20:48:04.5829980Z 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-08-14T20:48:04.5831220Z 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-08-14T20:48:04.5832350Z 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-08-14T20:48:04.5833440Z 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-08-14T20:48:04.5834520Z 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-08-14T20:48:04.5835670Z 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-08-14T20:48:04.5836750Z 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-08-14T20:48:04.5837910Z 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-08-14T20:48:04.5839020Z 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-08-14T20:48:04.5840100Z 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-08-14T20:48:04.5841300Z 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-08-14T20:48:04.5842410Z 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-08-14T20:48:04.5843510Z 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-08-14T20:48:04.5844690Z 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-08-14T20:48:04.5845830Z 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-08-14T20:48:04.5846930Z 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-08-14T20:48:04.5848070Z 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-08-14T20:48:04.5849300Z 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-08-14T20:48:04.5850330Z 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-08-14T20:48:04.5851520Z 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-08-14T20:48:04.5852680Z 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-08-14T20:48:04.5853830Z 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-08-14T20:48:04.5854870Z 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-08-14T20:48:04.5856040Z 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-08-14T20:48:04.5857200Z 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-08-14T20:48:04.5858330Z 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-08-14T20:48:04.5859570Z 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-08-14T20:48:04.5860630Z 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-08-14T20:48:04.5861780Z 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-08-14T20:48:04.5862900Z 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-08-14T20:48:04.5863980Z 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-08-14T20:48:04.5865170Z 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-08-14T20:48:04.5866230Z 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-08-14T20:48:04.5867340Z 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-08-14T20:48:04.5868570Z 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-08-14T20:48:04.5869620Z 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-08-14T20:48:04.5870740Z 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-08-14T20:48:04.5871900Z 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-08-14T20:48:04.5873120Z 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-08-14T20:48:04.5874370Z 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-08-14T20:48:04.5875440Z 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-08-14T20:48:04.5876520Z 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-08-14T20:48:04.5877690Z 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-08-14T20:48:04.5878730Z 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-08-14T20:48:04.5879900Z 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-08-14T20:48:04.5881180Z 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-08-14T20:48:04.5882380Z 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-08-14T20:48:04.5883660Z 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-08-14T20:48:04.5884730Z 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-08-14T20:48:04.5886000Z 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-08-14T20:48:04.5887190Z 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-08-14T20:48:04.5888270Z 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-08-14T20:48:04.5889430Z 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-08-14T20:48:04.5891070Z 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-08-14T20:48:04.5892240Z 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-08-14T20:48:04.5893600Z 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-08-14T20:48:04.5894670Z 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-08-14T20:48:04.5895830Z 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-08-14T20:48:04.5897140Z 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-08-14T20:48:04.5898390Z 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-08-14T20:48:04.5899290Z 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-08-14T20:48:04.5900520Z 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-08-14T20:48:04.5901550Z 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-08-14T20:48:04.5902830Z 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-08-14T20:48:04.5904050Z 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-08-14T20:48:04.5905240Z 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-08-14T20:48:04.5906580Z 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-08-14T20:48:04.5907950Z 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-08-14T20:48:04.5909240Z 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-08-14T20:48:04.5910350Z 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-08-14T20:48:04.5911530Z 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-08-14T20:48:04.5912710Z 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-08-14T20:48:04.5913860Z 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-08-14T20:48:04.5915130Z 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-08-14T20:48:04.5916290Z 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-08-14T20:48:04.5917670Z 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-08-14T20:48:04.5918840Z 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-08-14T20:48:04.5919970Z 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-08-14T20:48:04.5921200Z 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-08-14T20:48:04.5922310Z 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-08-14T20:48:04.5923480Z 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-08-14T20:48:04.5924680Z 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-08-14T20:48:04.5925930Z 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-08-14T20:48:04.5927140Z 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-08-14T20:48:04.5928400Z 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-08-14T20:48:04.5929670Z 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-08-14T20:48:04.5930840Z 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-08-14T20:48:04.5931930Z 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-08-14T20:48:04.5933450Z 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-08-14T20:48:04.5934650Z 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-08-14T20:48:04.5935810Z 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-08-14T20:48:04.5936990Z 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-08-14T20:48:04.5938050Z 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-08-14T20:48:04.5939250Z 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-08-14T20:48:04.5940390Z 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-08-14T20:48:04.5941580Z 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-08-14T20:48:04.5942860Z 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-08-14T20:48:04.5944130Z 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-08-14T20:48:04.5945230Z 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-08-14T20:48:04.5946370Z 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-08-14T20:48:04.5947430Z 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-08-14T20:48:04.5948770Z 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-08-14T20:48:04.5950600Z 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-08-14T20:48:04.5951780Z 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-08-14T20:48:04.5952980Z 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-08-14T20:48:04.5954070Z 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-08-14T20:48:04.5955450Z 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-08-14T20:48:04.5956560Z 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-08-14T20:48:04.5957730Z 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-08-14T20:48:04.5958890Z 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-08-14T20:48:04.5959980Z 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-08-14T20:48:04.5961100Z 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-08-14T20:48:04.5962270Z 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-08-14T20:48:04.5963460Z 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-08-14T20:48:04.5964690Z 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-08-14T20:48:04.5965960Z 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-08-14T20:48:04.5967150Z 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-08-14T20:48:04.5968410Z 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-08-14T20:48:04.5969500Z 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-08-14T20:48:04.5970590Z 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-08-14T20:48:04.5971920Z 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-08-14T20:48:04.5973460Z 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-08-14T20:48:04.5974610Z 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-08-14T20:48:04.5975990Z 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-08-14T20:48:04.5977080Z 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-08-14T20:48:04.5978210Z 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-08-14T20:48:04.5979380Z 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-08-14T20:48:04.5980580Z 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-08-14T20:48:04.5981980Z 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-08-14T20:48:04.5983110Z 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-08-14T20:48:04.5984330Z 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-08-14T20:48:04.5985420Z 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-08-14T20:48:04.5986660Z 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-08-14T20:48:04.5987770Z 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-08-14T20:48:04.5989160Z 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-08-14T20:48:04.5990520Z 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-08-14T20:48:04.5991600Z 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-08-14T20:48:04.5992770Z 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-08-14T20:48:04.5993960Z 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-08-14T20:48:04.5995060Z 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-08-14T20:48:04.5996200Z 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-08-14T20:48:04.5997390Z 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-08-14T20:48:04.5998560Z 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-08-14T20:48:04.5999800Z 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-08-14T20:48:04.6001080Z 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-08-14T20:48:04.6002160Z 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-08-14T20:48:04.6003390Z 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-08-14T20:48:04.6004380Z 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-08-14T20:48:04.6005660Z 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-08-14T20:48:04.6006880Z 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-08-14T20:48:04.6008100Z 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-08-14T20:48:04.6009070Z 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-08-14T20:48:04.6010250Z 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-08-14T20:48:04.6011670Z 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-08-14T20:48:04.6012880Z 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-08-14T20:48:04.6014160Z 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-08-14T20:48:04.6015210Z 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-08-14T20:48:04.6016460Z 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-08-14T20:48:04.6017610Z 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-08-14T20:48:04.6018720Z 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-08-14T20:48:04.6019940Z 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-08-14T20:48:04.6021230Z 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-08-14T20:48:04.6022480Z 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-08-14T20:48:04.6023580Z 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-08-14T20:48:04.6024830Z 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-08-14T20:48:04.6025930Z 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-08-14T20:48:04.6027100Z 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-08-14T20:48:04.6028340Z 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-08-14T20:48:04.6029690Z 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-08-14T20:48:04.6030820Z 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-08-14T20:48:04.6032060Z 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-08-14T20:48:04.6033160Z 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-08-14T20:48:04.6034260Z 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-08-14T20:48:04.6035370Z 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-08-14T20:48:04.6036610Z 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-08-14T20:48:04.6037940Z 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-08-14T20:48:04.6039140Z 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-08-14T20:48:04.6040240Z 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-08-14T20:48:04.6041320Z 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-08-14T20:48:04.6042700Z 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-08-14T20:48:04.6044010Z 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-08-14T20:48:04.6045360Z 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-08-14T20:48:04.6046680Z 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-08-14T20:48:04.6048080Z 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-08-14T20:48:04.6049390Z 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-08-14T20:48:04.6050660Z 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-08-14T20:48:04.6051950Z 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-08-14T20:48:04.6053510Z 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-08-14T20:48:04.6054830Z 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-08-14T20:48:04.6056080Z 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-08-14T20:48:04.6057320Z 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-08-14T20:48:04.6058630Z 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-08-14T20:48:04.6059980Z 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-08-14T20:48:04.6061380Z 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-08-14T20:48:04.6062690Z 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-08-14T20:48:04.6064060Z 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-08-14T20:48:04.6065370Z 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-08-14T20:48:04.6066600Z 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-08-14T20:48:04.6068160Z 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-08-14T20:48:04.6069290Z 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-08-14T20:48:04.6070430Z 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-08-14T20:48:04.6071580Z 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-08-14T20:48:04.6072800Z 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-08-14T20:48:04.6073870Z 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-08-14T20:48:04.6075070Z 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-08-14T20:48:04.6076110Z 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-08-14T20:48:04.6077200Z 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-08-14T20:48:04.6078340Z 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-08-14T20:48:04.6079410Z 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-08-14T20:48:04.6080490Z 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-08-14T20:48:04.6081590Z 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-08-14T20:48:04.6082880Z 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-08-14T20:48:04.6084320Z 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-08-14T20:48:04.6085430Z 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-08-14T20:48:04.6086520Z 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-08-14T20:48:04.6087710Z 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-08-14T20:48:04.6088780Z 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-08-14T20:48:04.6089830Z 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-08-14T20:48:04.6091110Z 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-08-14T20:48:04.6092390Z 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-08-14T20:48:04.6093630Z 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-08-14T20:48:04.6094710Z 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-08-14T20:48:04.6097550Z 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-08-14T20:48:04.6097890Z 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-08-14T20:48:04.6098310Z 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-08-14T20:48:04.6099440Z 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-08-14T20:48:04.6100440Z 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-08-14T20:48:04.6101560Z 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-08-14T20:48:04.6102590Z 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-08-14T20:48:04.6103800Z 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-08-14T20:48:04.6105000Z 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-08-14T20:48:04.6106040Z 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-08-14T20:48:04.6107240Z 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-08-14T20:48:04.6108310Z 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-08-14T20:48:04.6109410Z 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-08-14T20:48:04.6110500Z 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-08-14T20:48:04.6111710Z 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-08-14T20:48:04.6112810Z 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-08-14T20:48:04.6113930Z 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-08-14T20:48:04.6114980Z 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-08-14T20:48:04.6116240Z 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-08-14T20:48:04.6117360Z 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-08-14T20:48:04.6118610Z 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-08-14T20:48:04.6119610Z 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-08-14T20:48:04.6120930Z 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-08-14T20:48:04.6122210Z 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-08-14T20:48:04.6123300Z 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-08-14T20:48:04.6124400Z 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-08-14T20:48:04.6125540Z 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-08-14T20:48:04.6126630Z 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-08-14T20:48:04.6127780Z 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-08-14T20:48:04.6128990Z 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-08-14T20:48:04.6130110Z 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-08-14T20:48:04.6131320Z 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-08-14T20:48:04.6132600Z 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-08-14T20:48:04.6133780Z 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-08-14T20:48:04.6134950Z 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-08-14T20:48:04.6136130Z 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-08-14T20:48:04.6137230Z 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-08-14T20:48:04.6138500Z 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-08-14T20:48:04.6139620Z 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-08-14T20:48:04.6141220Z 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-08-14T20:48:04.6141950Z 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-08-14T20:48:04.6143030Z 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-08-14T20:48:04.6144170Z 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-08-14T20:48:04.6145270Z 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-08-14T20:48:04.6146460Z 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-08-14T20:48:04.6147510Z 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-08-14T20:48:04.6148770Z 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-08-14T20:48:04.6149790Z 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-08-14T20:48:04.6150890Z 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-08-14T20:48:04.6151980Z 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-08-14T20:48:04.6153400Z 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-08-14T20:48:04.6154460Z 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-08-14T20:48:04.6155520Z 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-08-14T20:48:04.6156680Z 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-08-14T20:48:04.6157860Z 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-08-14T20:48:04.6158940Z 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-08-14T20:48:04.6160130Z 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-08-14T20:48:04.6161150Z 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-08-14T20:48:04.6162230Z 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-08-14T20:48:04.6163390Z 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-08-14T20:48:04.6164610Z 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-08-14T20:48:04.6165770Z 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-08-14T20:48:04.6166850Z 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-08-14T20:48:04.6167910Z 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-08-14T20:48:04.6169040Z 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-08-14T20:48:04.6170280Z 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-08-14T20:48:04.6171400Z 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-08-14T20:48:04.6172470Z 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-08-14T20:48:04.6173660Z 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-08-14T20:48:04.6174820Z 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-08-14T20:48:04.6175880Z 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-08-14T20:48:04.6176960Z 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-08-14T20:48:04.6178070Z 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-08-14T20:48:04.6179220Z 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-08-14T20:48:04.6180310Z 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-08-14T20:48:04.6181490Z 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-08-14T20:48:04.6182660Z 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-08-14T20:48:04.6183770Z 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-08-14T20:48:04.6184870Z 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-08-14T20:48:04.6186020Z 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-08-14T20:48:04.6187110Z 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-08-14T20:48:04.6188180Z 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-08-14T20:48:04.6189250Z 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-08-14T20:48:04.6190400Z 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-08-14T20:48:04.6191540Z 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-08-14T20:48:04.6192680Z 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-08-14T20:48:04.6193750Z 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-08-14T20:48:04.6194940Z 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-08-14T20:48:04.6196120Z 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-08-14T20:48:04.6197370Z 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-08-14T20:48:04.6198620Z 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-08-14T20:48:04.6199920Z 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-08-14T20:48:04.6201290Z 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-08-14T20:48:04.6202560Z 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-08-14T20:48:04.6203720Z 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-08-14T20:48:04.6204980Z 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-08-14T20:48:04.6206160Z 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-08-14T20:48:04.6207230Z 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-08-14T20:48:04.6208390Z 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-08-14T20:48:04.6209450Z 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-08-14T20:48:04.6210570Z 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-08-14T20:48:04.6211740Z 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-08-14T20:48:04.6212790Z 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-08-14T20:48:04.6213870Z 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-08-14T20:48:04.6215000Z 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-08-14T20:48:04.6216080Z 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-08-14T20:48:04.6217960Z 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-08-14T20:48:04.6219170Z 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-08-14T20:48:04.6220390Z 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-08-14T20:48:04.6221490Z 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-08-14T20:48:04.6222650Z 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-08-14T20:48:04.6223920Z 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-08-14T20:48:04.6224960Z 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-08-14T20:48:04.6226080Z 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-08-14T20:48:04.6227170Z 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-08-14T20:48:04.6228440Z 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-08-14T20:48:04.6229510Z 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-08-14T20:48:04.6230630Z 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-08-14T20:48:04.6231920Z 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-08-14T20:48:04.6233020Z 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-08-14T20:48:04.6234140Z 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-08-14T20:48:04.6235270Z 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-08-14T20:48:04.6236370Z 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-08-14T20:48:04.6237670Z 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-08-14T20:48:04.6238750Z 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-08-14T20:48:04.6239910Z 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-08-14T20:48:04.6241180Z 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-08-14T20:48:04.6246170Z 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-08-14T20:48:04.6246680Z 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-08-14T20:48:04.6247220Z 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-08-14T20:48:04.6247590Z 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-08-14T20:48:04.6247920Z 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-08-14T20:48:04.6248370Z 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-08-14T20:48:04.6249120Z 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-08-14T20:48:04.6250350Z 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-08-14T20:48:04.6252850Z 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-08-14T20:48:04.6254270Z 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-08-14T20:48:04.6257430Z 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-08-14T20:48:04.6261850Z 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-08-14T20:48:04.6265130Z 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-08-14T20:48:04.6267500Z 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-08-14T20:48:04.6271610Z 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-08-14T20:48:04.6274430Z 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-08-14T20:48:04.6277400Z 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-08-14T20:48:04.6281170Z 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-08-14T20:48:04.6284080Z 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-08-14T20:48:04.6287690Z 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-08-14T20:48:04.6290830Z 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-08-14T20:48:04.6294320Z 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-08-14T20:48:04.6297860Z 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-08-14T20:48:04.6301330Z 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-08-14T20:48:04.6304360Z 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-08-14T20:48:04.6308200Z 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-08-14T20:48:04.6311010Z 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-08-14T20:48:04.6314470Z 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-08-14T20:48:04.6318120Z 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-08-14T20:48:04.6320830Z 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-08-14T20:48:04.6324700Z 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-08-14T20:48:04.6327450Z 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-08-14T20:48:04.6330880Z 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-08-14T20:48:04.6335290Z 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-08-14T20:48:04.6337900Z 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-08-14T20:48:04.6341010Z 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-08-14T20:48:04.6344270Z 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-08-14T20:48:04.6347510Z 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-08-14T20:48:04.6351180Z 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-08-14T20:48:04.6354210Z 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-08-14T20:48:04.6357830Z 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-08-14T20:48:04.6361530Z 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-08-14T20:48:04.6365870Z 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-08-14T20:48:04.6367560Z 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-08-14T20:48:04.6371240Z 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-08-14T20:48:04.6376780Z 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-08-14T20:48:04.6380890Z 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-08-14T20:48:04.6381740Z 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-08-14T20:48:04.6385950Z 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-08-14T20:48:04.6390740Z 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-08-14T20:48:04.6391580Z 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-08-14T20:48:04.6397030Z 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-08-14T20:48:04.6402120Z 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-08-14T20:48:04.6403010Z 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-08-14T20:48:04.6407860Z 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-08-14T20:48:04.6408600Z 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-08-14T20:48:04.6414640Z 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-08-14T20:48:04.6420560Z 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-08-14T20:48:04.6425620Z 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-08-14T20:48:04.6426560Z 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-08-14T20:48:04.6432020Z 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-08-14T20:48:04.6433000Z 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-08-14T20:48:04.6438330Z 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-08-14T20:48:04.6439450Z 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-08-14T20:48:04.6444410Z 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-08-14T20:48:04.6445780Z 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-08-14T20:48:04.6453010Z 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-08-14T20:48:04.6453860Z 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-08-14T20:48:04.6459320Z 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-08-14T20:48:04.6460450Z 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-08-14T20:48:04.6466290Z 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-08-14T20:48:04.6466940Z 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-08-14T20:48:04.6473380Z 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-08-14T20:48:04.6479800Z 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-08-14T20:48:04.6487420Z 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-08-14T20:48:04.6488310Z 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-08-14T20:48:04.6494330Z 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-08-14T20:48:04.6495190Z 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-08-14T20:48:04.6502090Z 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-08-14T20:48:04.6502910Z 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-08-14T20:48:04.6503960Z 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-08-14T20:48:04.6509080Z 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-08-14T20:48:04.6510410Z 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-08-14T20:48:04.6516480Z 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-08-14T20:48:04.6517330Z 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-08-14T20:48:04.6524410Z 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-08-14T20:48:04.6525620Z 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-08-14T20:48:04.6531900Z 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-08-14T20:48:04.6532730Z 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-08-14T20:48:04.6533760Z 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-08-14T20:48:04.6539340Z 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-08-14T20:48:04.6540670Z 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-08-14T20:48:04.6546780Z 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-08-14T20:48:04.6548330Z 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-08-14T20:48:04.6554680Z 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-08-14T20:48:04.6555560Z 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-08-14T20:48:04.6556650Z 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-08-14T20:48:04.6563400Z 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-08-14T20:48:04.6564180Z 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-08-14T20:48:04.6571360Z 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-08-14T20:48:04.6572250Z 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-08-14T20:48:04.6579240Z 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-08-14T20:48:04.6580170Z 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-08-14T20:48:04.6581330Z 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-08-14T20:48:04.6586520Z 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-08-14T20:48:04.6588000Z 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-08-14T20:48:04.6594460Z 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-08-14T20:48:04.6595200Z 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-08-14T20:48:04.6596280Z 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-08-14T20:48:04.6603580Z 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-08-14T20:48:04.6604660Z 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-08-14T20:48:04.6611240Z 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-08-14T20:48:04.6612780Z 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-08-14T20:48:04.6618700Z 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-08-14T20:48:04.6619540Z 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-08-14T20:48:04.6620850Z 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-08-14T20:48:04.6625250Z 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-08-14T20:48:04.6633160Z 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-08-14T20:48:04.6634070Z 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-08-14T20:48:04.6640890Z 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-08-14T20:48:04.6642160Z 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-08-14T20:48:04.6648460Z 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-08-14T20:48:04.6649270Z 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-08-14T20:48:04.6650390Z 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-08-14T20:48:04.6656480Z 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-08-14T20:48:04.6657310Z 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-08-14T20:48:04.6664600Z 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-08-14T20:48:04.6665980Z 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-08-14T20:48:04.6672400Z 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-08-14T20:48:04.6673330Z 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-08-14T20:48:04.6674360Z 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-08-14T20:48:04.6679540Z 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-08-14T20:48:04.6681910Z 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-08-14T20:48:04.6687150Z 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-08-14T20:48:04.6688580Z 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-08-14T20:48:04.6690340Z 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-08-14T20:48:04.6696760Z 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-08-14T20:48:04.6697680Z 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-08-14T20:48:04.6704740Z 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-08-14T20:48:04.6705570Z 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-08-14T20:48:04.6712760Z 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-08-14T20:48:04.6713740Z 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-08-14T20:48:04.6714790Z 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-08-14T20:48:04.6721060Z 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-08-14T20:48:04.6721830Z 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-08-14T20:48:04.6728290Z 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-08-14T20:48:04.6729390Z 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-08-14T20:48:04.6730670Z 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-08-14T20:48:04.6737380Z 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-08-14T20:48:04.6738430Z 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-08-14T20:48:04.6745520Z 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-08-14T20:48:04.6746330Z 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-08-14T20:48:04.6753470Z 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-08-14T20:48:04.6754340Z 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-08-14T20:48:04.6755520Z 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-08-14T20:48:04.6761450Z 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-08-14T20:48:04.6762810Z 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-08-14T20:48:04.6770080Z 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-08-14T20:48:04.6770750Z 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-08-14T20:48:04.6771850Z 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-08-14T20:48:04.6777330Z 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-08-14T20:48:04.6778150Z 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-08-14T20:48:04.6785140Z 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-08-14T20:48:04.6785950Z 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-08-14T20:48:04.6787130Z 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-08-14T20:48:04.6792960Z 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-08-14T20:48:04.6795400Z 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-08-14T20:48:04.6800370Z 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-08-14T20:48:04.6801720Z 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-08-14T20:48:04.6804880Z 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-08-14T20:48:04.6810370Z 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-08-14T20:48:04.6811180Z 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-08-14T20:48:04.6818340Z 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-08-14T20:48:04.6819400Z 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-08-14T20:48:04.6826010Z 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-08-14T20:48:04.6826840Z 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-08-14T20:48:04.6827940Z 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-08-14T20:48:04.6832240Z 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-08-14T20:48:04.6835610Z 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-08-14T20:48:04.6841480Z 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-08-14T20:48:04.6844580Z 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-08-14T20:48:04.6848440Z 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-08-14T20:48:04.6849840Z 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-08-14T20:48:04.6856340Z 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-08-14T20:48:04.6857640Z 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-08-14T20:48:04.6865390Z 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-08-14T20:48:04.6866090Z 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-08-14T20:48:04.6874110Z 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-08-14T20:48:04.6874870Z 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-08-14T20:48:04.6875990Z 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-08-14T20:48:04.6881670Z 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-08-14T20:48:04.6882540Z 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-08-14T20:48:04.6889450Z 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-08-14T20:48:04.6890330Z 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-08-14T20:48:04.6891490Z 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-08-14T20:48:04.6896860Z 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-08-14T20:48:04.6898430Z 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-08-14T20:48:04.6904840Z 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-08-14T20:48:04.6905700Z 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-08-14T20:48:04.6906880Z 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-08-14T20:48:04.6912770Z 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-08-14T20:48:04.6913640Z 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-08-14T20:48:04.6920410Z 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-08-14T20:48:04.6922280Z 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-08-14T20:48:04.6927610Z 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-08-14T20:48:04.6929100Z 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-08-14T20:48:04.6931120Z 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-08-14T20:48:04.6936590Z 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-08-14T20:48:04.6937270Z 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-08-14T20:48:04.6944470Z 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-08-14T20:48:04.6945360Z 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-08-14T20:48:04.6952010Z 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-08-14T20:48:04.6952950Z 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-08-14T20:48:04.6953950Z 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-08-14T20:48:04.6959470Z 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-08-14T20:48:04.6960950Z 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-08-14T20:48:04.6967430Z 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-08-14T20:48:04.6968650Z 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-08-14T20:48:04.6975590Z 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-08-14T20:48:04.6976360Z 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-08-14T20:48:04.6977720Z 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-08-14T20:48:04.6983480Z 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-08-14T20:48:04.6984190Z 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-08-14T20:48:04.6990630Z 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-08-14T20:48:04.6991920Z 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-08-14T20:48:04.6998530Z 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-08-14T20:48:04.6999440Z 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-08-14T20:48:04.7000900Z 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-08-14T20:48:04.7007910Z 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-08-14T20:48:04.7016580Z 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-08-14T20:48:04.7023840Z 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-08-14T20:48:04.7024870Z 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-08-14T20:48:04.7031430Z 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-08-14T20:48:04.7032920Z 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-08-14T20:48:04.7039680Z 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-08-14T20:48:04.7040600Z 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-08-14T20:48:04.7041800Z 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-08-14T20:48:04.7044520Z 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-08-14T20:48:04.7053100Z 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-08-14T20:48:04.7055660Z 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-08-14T20:48:04.7056460Z 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-08-14T20:48:04.7062670Z 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-08-14T20:48:04.7064580Z 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-08-14T20:48:04.7071320Z 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-08-14T20:48:04.7071990Z 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-08-14T20:48:04.7073220Z 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-08-14T20:48:04.7081070Z 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-08-14T20:48:04.7082060Z 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-08-14T20:48:04.7088850Z 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-08-14T20:48:04.7089720Z 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-08-14T20:48:04.7096310Z 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-08-14T20:48:04.7097490Z 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-08-14T20:48:04.7098550Z 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-08-14T20:48:04.7105010Z 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-08-14T20:48:04.7105950Z 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-08-14T20:48:04.7112910Z 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-08-14T20:48:04.7113690Z 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-08-14T20:48:04.7114820Z 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-08-14T20:48:04.7120740Z 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-08-14T20:48:04.7121600Z 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-08-14T20:48:04.7128250Z 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-08-14T20:48:04.7129460Z 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-08-14T20:48:04.7130490Z 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-08-14T20:48:04.7137820Z 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-08-14T20:48:04.7138710Z 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-08-14T20:48:04.7145920Z 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-08-14T20:48:04.7146730Z 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-08-14T20:48:04.7153730Z 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-08-14T20:48:04.7154600Z 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-08-14T20:48:04.7155600Z 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-08-14T20:48:04.7161670Z 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-08-14T20:48:04.7162410Z 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-08-14T20:48:04.7169920Z 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-08-14T20:48:04.7170620Z 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-08-14T20:48:04.7171760Z 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-08-14T20:48:04.7177310Z 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-08-14T20:48:04.7178360Z 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-08-14T20:48:04.7185210Z 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-08-14T20:48:04.7185910Z 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-08-14T20:48:04.7187610Z 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-08-14T20:48:04.7192680Z 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-08-14T20:48:04.7193890Z 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-08-14T20:48:04.7200330Z 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-08-14T20:48:04.7201450Z 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-08-14T20:48:04.7208590Z 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-08-14T20:48:04.7209420Z 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-08-14T20:48:04.7210680Z 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-08-14T20:48:04.7216000Z 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-08-14T20:48:04.7217390Z 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-08-14T20:48:04.7224660Z 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-08-14T20:48:04.7225320Z 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-08-14T20:48:04.7231870Z 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-08-14T20:48:04.7232950Z 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-08-14T20:48:04.7234120Z 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-08-14T20:48:04.7327420Z 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-08-14T20:48:04.8428380Z 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-08-14T20:48:04.8429280Z 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-08-14T20:48:04.8430640Z 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-08-14T20:48:04.8431880Z 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-08-14T20:48:04.8433040Z 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-08-14T20:48:04.8434230Z 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-08-14T20:48:04.8435350Z 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-08-14T20:48:04.8436710Z 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-08-14T20:48:04.8437750Z 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-08-14T20:48:04.8438950Z 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-08-14T20:48:04.8440100Z 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-08-14T20:48:04.8441510Z 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-08-14T20:48:04.8443220Z 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-08-14T20:48:04.8444310Z 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-08-14T20:48:04.8445490Z 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-08-14T20:48:04.8446810Z 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-08-14T20:48:04.8448120Z 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-08-14T20:48:04.8449400Z 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-08-14T20:48:04.8450680Z 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-08-14T20:48:04.8451850Z 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-08-14T20:48:04.8452970Z 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-08-14T20:48:04.8454150Z 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-08-14T20:48:04.8455400Z 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-08-14T20:48:04.8456460Z 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-08-14T20:48:04.8457640Z 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-08-14T20:48:04.8458770Z 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-08-14T20:48:04.8460320Z 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-08-14T20:48:04.8461120Z 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-08-14T20:48:04.8462360Z 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-08-14T20:48:04.8463630Z 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-08-14T20:48:04.8465130Z 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-08-14T20:48:04.8466010Z 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-08-14T20:48:04.8467200Z 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-08-14T20:48:04.8468490Z 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-08-14T20:48:04.8469710Z 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-08-14T20:48:04.8471150Z 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-08-14T20:48:04.8472060Z 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-08-14T20:48:04.8473620Z 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-08-14T20:48:04.8474410Z 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-08-14T20:48:04.8475610Z 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-08-14T20:48:04.8476980Z 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-08-14T20:48:04.8478090Z 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-08-14T20:48:04.8479510Z 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-08-14T20:48:04.8480880Z 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-08-14T20:48:04.8481940Z 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-08-14T20:48:04.8483170Z 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-08-14T20:48:04.8484290Z 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-08-14T20:48:04.8489540Z 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-08-14T20:48:04.8490450Z 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-08-14T20:48:04.8491700Z 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-08-14T20:48:04.8497580Z 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-08-14T20:48:04.8505250Z 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-08-14T20:48:04.8506120Z 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-08-14T20:48:04.8513000Z 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-08-14T20:48:04.8513930Z 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-08-14T20:48:04.8515120Z 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-08-14T20:48:04.8520620Z 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-08-14T20:48:04.8521660Z 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-08-14T20:48:04.8528570Z 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-08-14T20:48:04.8529280Z 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-08-14T20:48:04.8530590Z 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-08-14T20:48:04.8531980Z 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-08-14T20:48:04.8541370Z 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-08-14T20:48:04.8546580Z 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-08-14T20:48:04.8549050Z 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-08-14T20:48:04.8555430Z 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-08-14T20:48:04.8556220Z 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-08-14T20:48:04.8557650Z 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-08-14T20:48:04.8562300Z 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-08-14T20:48:04.8563380Z 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-08-14T20:48:04.8570170Z 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-08-14T20:48:04.8571400Z 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-08-14T20:48:04.8577580Z 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-08-14T20:48:04.8579600Z 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-08-14T20:48:04.8580680Z 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-08-14T20:48:04.8587310Z 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-08-14T20:48:04.8589030Z 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-08-14T20:48:04.8597170Z 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-08-14T20:48:04.8604320Z 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-08-14T20:48:04.8807930Z 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-08-14T20:48:04.8810380Z 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-08-14T20:48:04.8811720Z 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-08-14T20:48:04.8812860Z 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-08-14T20:48:04.8814290Z 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-08-14T20:48:04.8815450Z 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-08-14T20:48:04.8816510Z 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-08-14T20:48:04.8817800Z 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-08-14T20:48:04.8818890Z 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-08-14T20:48:04.8820150Z 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-08-14T20:48:04.8821340Z 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-08-14T20:48:04.8822560Z 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-08-14T20:48:04.8823770Z 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-08-14T20:48:04.8825020Z 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-08-14T20:48:04.8826160Z 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-08-14T20:48:04.8827160Z 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-08-14T20:48:04.8828360Z 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-08-14T20:48:04.8829600Z 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-08-14T20:48:04.8830770Z 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-08-14T20:48:04.8831850Z 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-08-14T20:48:04.8833000Z 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-08-14T20:48:04.8834180Z 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-08-14T20:48:04.8835390Z 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-08-14T20:48:04.8836490Z 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-08-14T20:48:04.8837720Z 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-08-14T20:48:04.8838940Z 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-08-14T20:48:04.8840080Z 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-08-14T20:48:04.8841270Z 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-08-14T20:48:04.8842440Z 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-08-14T20:48:04.8843530Z 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-08-14T20:48:04.8844720Z 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-08-14T20:48:04.8845930Z 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-08-14T20:48:04.8847050Z 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-08-14T20:48:04.8848300Z 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-08-14T20:48:04.8849460Z 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-08-14T20:48:04.8850570Z 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-08-14T20:48:04.8851740Z 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-08-14T20:48:04.8852930Z 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-08-14T20:48:04.8853980Z 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-08-14T20:48:04.8855170Z 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-08-14T20:48:04.8856450Z 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-08-14T20:48:04.8857560Z 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-08-14T20:48:04.8858760Z 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-08-14T20:48:04.8859920Z 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-08-14T20:48:04.8860970Z 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-08-14T20:48:04.8862240Z 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-08-14T20:48:04.8863450Z 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-08-14T20:48:04.8864630Z 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-08-14T20:48:04.8865660Z 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-08-14T20:48:04.8866840Z 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-08-14T20:48:04.8868000Z 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-08-14T20:48:04.8869120Z 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-08-14T20:48:04.8870240Z 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-08-14T20:48:04.8871350Z 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-08-14T20:48:04.8872620Z 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-08-14T20:48:04.8873690Z 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-08-14T20:48:04.8874910Z 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-08-14T20:48:04.8876050Z 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-08-14T20:48:04.8877330Z 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-08-14T20:48:04.8878480Z 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-08-14T20:48:04.8879520Z 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-08-14T20:48:04.8880780Z 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-08-14T20:48:04.8881800Z 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-08-14T20:48:04.8882890Z 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-08-14T20:48:04.8884080Z 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-08-14T20:48:04.8885220Z 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-08-14T20:48:04.8886320Z 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-08-14T20:48:04.8887450Z 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-08-14T20:48:04.8888580Z 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-08-14T20:48:04.8889710Z 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-08-14T20:48:04.8890870Z 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-08-14T20:48:04.8892000Z 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-08-14T20:48:04.8893200Z 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-08-14T20:48:04.8894460Z 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-08-14T20:48:04.8895730Z 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-08-14T20:48:04.8896820Z 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-08-14T20:48:04.8897940Z 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-08-14T20:48:04.8899190Z 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-08-14T20:48:04.8900380Z 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-08-14T20:48:04.8901420Z 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-08-14T20:48:04.8902680Z 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-08-14T20:48:04.8903790Z 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-08-14T20:48:04.8906690Z 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-08-14T20:48:04.8908370Z 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-08-14T20:48:04.8914450Z 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-08-14T20:48:04.8916030Z 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-08-14T20:48:04.8917400Z 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-08-14T20:48:04.8924160Z 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-08-14T20:48:04.8925320Z 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-08-14T20:48:04.8931640Z 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-08-14T20:48:04.8932950Z 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-08-14T20:48:04.8939570Z 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-08-14T20:48:04.8940490Z 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-08-14T20:48:04.8941790Z 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-08-14T20:48:04.8947230Z 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-08-14T20:48:04.8948420Z 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-08-14T20:48:04.8955240Z 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-08-14T20:48:04.8956040Z 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-08-14T20:48:04.8957480Z 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-08-14T20:48:04.8964350Z 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-08-14T20:48:04.8965530Z 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-08-14T20:48:04.8971620Z 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-08-14T20:48:04.8972530Z 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-08-14T20:48:04.8978530Z 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-08-14T20:48:04.8979290Z 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-08-14T20:48:04.8986060Z 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-08-14T20:48:04.8987010Z 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-08-14T20:48:04.8993850Z 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-08-14T20:48:04.8995470Z 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-08-14T20:48:04.9001950Z 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-08-14T20:48:04.9002680Z 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-08-14T20:48:04.9003990Z 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-08-14T20:48:04.9010820Z 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-08-14T20:48:04.9011700Z 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-08-14T20:48:04.9019140Z 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-08-14T20:48:04.9020000Z 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-08-14T20:48:04.9026960Z 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-08-14T20:48:04.9027590Z 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-08-14T20:48:04.9028820Z 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-08-14T20:48:04.9034350Z 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-08-14T20:48:04.9035760Z 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-08-14T20:48:04.9042260Z 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-08-14T20:48:04.9043010Z 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-08-14T20:48:04.9044090Z 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-08-14T20:48:04.9049870Z 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-08-14T20:48:04.9051250Z 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-08-14T20:48:04.9057110Z 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-08-14T20:48:04.9060720Z 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-08-14T20:48:04.9061750Z 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-08-14T20:48:04.9062650Z 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-08-14T20:48:04.9067010Z 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-08-14T20:48:04.9069010Z 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-08-14T20:48:04.9070070Z 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-08-14T20:48:04.9076660Z 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-08-14T20:48:04.9077680Z 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-08-14T20:48:04.9085020Z 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-08-14T20:48:04.9085760Z 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-08-14T20:48:04.9093500Z 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-08-14T20:48:04.9094460Z 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-08-14T20:48:04.9095840Z 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-08-14T20:48:04.9100790Z 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-08-14T20:48:04.9101900Z 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-08-14T20:48:04.9109140Z 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-08-14T20:48:04.9109960Z 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-08-14T20:48:04.9111180Z 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-08-14T20:48:04.9117000Z 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-08-14T20:48:04.9117930Z 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-08-14T20:48:04.9125150Z 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-08-14T20:48:04.9126020Z 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-08-14T20:48:04.9133200Z 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-08-14T20:48:04.9134050Z 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-08-14T20:48:04.9135190Z 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-08-14T20:48:04.9140640Z 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-08-14T20:48:04.9148120Z 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-08-14T20:48:04.9149200Z 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-08-14T20:48:04.9150640Z 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-08-14T20:48:04.9161450Z 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-08-14T20:48:04.9161890Z 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-08-14T20:48:04.9166360Z 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-08-14T20:48:04.9167210Z 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-08-14T20:48:04.9174000Z 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-08-14T20:48:04.9174860Z 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-08-14T20:48:04.9176090Z 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-08-14T20:48:04.9181860Z 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-08-14T20:48:04.9183040Z 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-08-14T20:48:04.9186920Z 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-08-14T20:48:04.9190430Z 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-08-14T20:48:04.9197270Z 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-08-14T20:48:04.9198140Z 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-08-14T20:48:04.9205090Z 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-08-14T20:48:04.9205960Z 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-08-14T20:48:04.9207130Z 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-08-14T20:48:04.9214290Z 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-08-14T20:48:04.9215180Z 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-08-14T20:48:04.9222390Z 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-08-14T20:48:04.9223070Z 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-08-14T20:48:04.9230080Z 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-08-14T20:48:04.9230960Z 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-08-14T20:48:04.9232090Z 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-08-14T20:48:04.9237580Z 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-08-14T20:48:04.9238700Z 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-08-14T20:48:04.9245800Z 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-08-14T20:48:04.9246690Z 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-08-14T20:48:04.9247680Z 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-08-14T20:48:04.9254110Z 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-08-14T20:48:04.9255110Z 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-08-14T20:48:04.9261660Z 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-08-14T20:48:04.9262800Z 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-08-14T20:48:04.9269670Z 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-08-14T20:48:04.9270520Z 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-08-14T20:48:04.9271640Z 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-08-14T20:48:04.9277380Z 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-08-14T20:48:04.9278570Z 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-08-14T20:48:04.9284930Z 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-08-14T20:48:04.9285860Z 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-08-14T20:48:04.9287010Z 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-08-14T20:48:04.9293590Z 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-08-14T20:48:04.9294760Z 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-08-14T20:48:04.9301290Z 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-08-14T20:48:04.9302530Z 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-08-14T20:48:04.9309620Z 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-08-14T20:48:04.9310500Z 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-08-14T20:48:04.9311550Z 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-08-14T20:48:04.9317430Z 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-08-14T20:48:04.9318460Z 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-08-14T20:48:04.9325340Z 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-08-14T20:48:04.9326670Z 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-08-14T20:48:04.9327880Z 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-08-14T20:48:04.9333740Z 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-08-14T20:48:04.9334730Z 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-08-14T20:48:04.9341480Z 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-08-14T20:48:04.9342610Z 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-08-14T20:48:04.9343740Z 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-08-14T20:48:04.9351130Z 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-08-14T20:48:04.9351970Z 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-08-14T20:48:04.9359440Z 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-08-14T20:48:04.9360220Z 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-08-14T20:48:04.9361360Z 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-08-14T20:48:04.9367600Z 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-08-14T20:48:04.9368520Z 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-08-14T20:48:04.9375480Z 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-08-14T20:48:04.9376350Z 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-08-14T20:48:04.9377440Z 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-08-14T20:48:04.9383200Z 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-08-14T20:48:04.9384190Z 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-08-14T20:48:04.9390740Z 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-08-14T20:48:04.9392440Z 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-08-14T20:48:04.9395570Z 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-08-14T20:48:04.9400260Z 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-08-14T20:48:04.9404500Z 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-08-14T20:48:04.9409990Z 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-08-14T20:48:04.9413260Z 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-08-14T20:48:04.9417520Z 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-08-14T20:48:04.9418700Z 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-08-14T20:48:04.9422890Z 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-08-14T20:48:04.9426530Z 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-08-14T20:48:04.9429910Z 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-08-14T20:48:04.9431680Z 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-08-14T20:48:04.9434610Z 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-08-14T20:48:04.9438960Z 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-08-14T20:48:04.9442620Z 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-08-14T20:48:04.9443730Z 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-08-14T20:48:04.9449380Z 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-08-14T20:48:04.9450170Z 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-08-14T20:48:04.9454180Z 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-08-14T20:48:04.9455930Z 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-08-14T20:48:04.9457160Z 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-08-14T20:48:04.9463810Z 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-08-14T20:48:04.9464840Z 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-08-14T20:48:04.9471480Z 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-08-14T20:48:04.9472580Z 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-08-14T20:48:04.9473760Z 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-08-14T20:48:04.9480430Z 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-08-14T20:48:04.9481330Z 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-08-14T20:48:04.9487940Z 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-08-14T20:48:04.9488960Z 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-08-14T20:48:04.9495950Z 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-08-14T20:48:04.9496790Z 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-08-14T20:48:04.9497850Z 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-08-14T20:48:04.9504630Z 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-08-14T20:48:04.9505550Z 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-08-14T20:48:04.9512320Z 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-08-14T20:48:04.9513410Z 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-08-14T20:48:04.9519710Z 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-08-14T20:48:04.9520760Z 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-08-14T20:48:04.9522280Z 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-08-14T20:48:04.9527880Z 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-08-14T20:48:04.9529510Z 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-08-14T20:48:04.9535250Z 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-08-14T20:48:04.9536460Z 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-08-14T20:48:04.9537610Z 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-08-14T20:48:04.9542380Z 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-08-14T20:48:04.9544340Z 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-08-14T20:48:04.9550590Z 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-08-14T20:48:04.9552310Z 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-08-14T20:48:04.9558040Z 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-08-14T20:48:04.9558900Z 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-08-14T20:48:04.9561020Z 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-08-14T20:48:04.9567490Z 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-08-14T20:48:04.9575380Z 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-08-14T20:48:04.9576490Z 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-08-14T20:48:04.9583320Z 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-08-14T20:48:04.9584280Z 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-08-14T20:48:04.9585290Z 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-08-14T20:48:04.9590780Z 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-08-14T20:48:04.9591960Z 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-08-14T20:48:04.9598330Z 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-08-14T20:48:04.9599390Z 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-08-14T20:48:04.9600410Z 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-08-14T20:48:04.9602800Z 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-08-14T20:48:04.9613040Z 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-08-14T20:48:04.9616640Z 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-08-14T20:48:04.9620990Z 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-08-14T20:48:04.9621930Z 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-08-14T20:48:04.9625970Z 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-08-14T20:48:04.9630450Z 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-08-14T20:48:04.9634190Z 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-08-14T20:48:04.9635040Z 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-08-14T20:48:04.9639940Z 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-08-14T20:48:04.9641860Z 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-08-14T20:48:04.9647800Z 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-08-14T20:48:04.9648760Z 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-08-14T20:48:04.9650210Z 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-08-14T20:48:04.9656370Z 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-08-14T20:48:04.9657190Z 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-08-14T20:48:04.9665030Z 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-08-14T20:48:04.9666080Z 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-08-14T20:48:04.9672770Z 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-08-14T20:48:04.9673840Z 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-08-14T20:48:04.9675030Z 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-08-14T20:48:04.9680330Z 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-08-14T20:48:04.9681260Z 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-08-14T20:48:04.9687540Z 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-08-14T20:48:04.9688730Z 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-08-14T20:48:04.9695450Z 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-08-14T20:48:04.9696640Z 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-08-14T20:48:04.9697750Z 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-08-14T20:48:04.9703600Z 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-08-14T20:48:04.9704840Z 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-08-14T20:48:04.9711800Z 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-08-14T20:48:04.9713120Z 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-08-14T20:48:04.9714490Z 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-08-14T20:48:04.9719090Z 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-08-14T20:48:04.9720430Z 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-08-14T20:48:04.9726680Z 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-08-14T20:48:04.9729440Z 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-08-14T20:48:04.9734870Z 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-08-14T20:48:04.9735970Z 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-08-14T20:48:04.9737600Z 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-08-14T20:48:04.9742380Z 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-08-14T20:48:04.9743310Z 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-08-14T20:48:04.9750280Z 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-08-14T20:48:04.9752020Z 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-08-14T20:48:04.9758310Z 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-08-14T20:48:04.9759130Z 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-08-14T20:48:04.9760640Z 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-08-14T20:48:04.9767560Z 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-08-14T20:48:04.9768460Z 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-08-14T20:48:04.9775130Z 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-08-14T20:48:04.9776330Z 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-08-14T20:48:04.9783540Z 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-08-14T20:48:04.9784420Z 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-08-14T20:48:04.9785700Z 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-08-14T20:48:04.9790900Z 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-08-14T20:48:04.9791920Z 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-08-14T20:48:04.9798740Z 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-08-14T20:48:04.9799760Z 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-08-14T20:48:04.9800860Z 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-08-14T20:48:04.9806820Z 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-08-14T20:48:04.9807630Z 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-08-14T20:48:04.9811590Z 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-08-14T20:48:04.9820370Z 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-08-14T20:48:04.9824250Z 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-08-14T20:48:04.9825130Z 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-08-14T20:48:04.9830270Z 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-08-14T20:48:04.9831810Z 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-08-14T20:48:04.9837870Z 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-08-14T20:48:04.9838750Z 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-08-14T20:48:04.9841960Z 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-08-14T20:48:04.9846280Z 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-08-14T20:48:04.9847540Z 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-08-14T20:48:04.9856170Z 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-08-14T20:48:04.9858580Z 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-08-14T20:48:04.9859880Z 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-08-14T20:48:04.9865880Z 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-08-14T20:48:04.9867070Z 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-08-14T20:48:04.9874260Z 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-08-14T20:48:04.9875150Z 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-08-14T20:48:04.9882180Z 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-08-14T20:48:04.9882900Z 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-08-14T20:48:04.9884040Z 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-08-14T20:48:04.9890160Z 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-08-14T20:48:04.9891330Z 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-08-14T20:48:04.9898400Z 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-08-14T20:48:04.9899280Z 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-08-14T20:48:04.9900430Z 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-08-14T20:48:04.9907460Z 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-08-14T20:48:04.9908240Z 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-08-14T20:48:04.9915660Z 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-08-14T20:48:04.9916440Z 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-08-14T20:48:04.9923450Z 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-08-14T20:48:04.9924230Z 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-08-14T20:48:04.9925430Z 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-08-14T20:48:04.9930880Z 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-08-14T20:48:04.9932170Z 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-08-14T20:48:04.9938770Z 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-08-14T20:48:04.9939520Z 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-08-14T20:48:04.9940650Z 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-08-14T20:48:04.9946200Z 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-08-14T20:48:04.9947000Z 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-08-14T20:48:04.9953900Z 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-08-14T20:48:04.9955100Z 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-08-14T20:48:04.9961870Z 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-08-14T20:48:04.9962780Z 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-08-14T20:48:04.9963990Z 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-08-14T20:48:04.9970640Z 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-08-14T20:48:04.9971620Z 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-08-14T20:48:04.9978640Z 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-08-14T20:48:04.9979450Z 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-08-14T20:48:04.9986970Z 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-08-14T20:48:04.9987900Z 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-08-14T20:48:04.9988930Z 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-08-14T20:48:04.9994270Z 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-08-14T20:48:04.9996100Z 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-08-14T20:48:05.0002130Z 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-08-14T20:48:05.0003030Z 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-08-14T20:48:05.0004310Z 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-08-14T20:48:05.0010030Z 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-08-14T20:48:05.0011040Z 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-08-14T20:48:05.0017740Z 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-08-14T20:48:05.0019150Z 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-08-14T20:48:05.0020950Z 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-08-14T20:48:05.0027690Z 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-08-14T20:48:05.0034490Z 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-08-14T20:48:05.0035650Z 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-08-14T20:48:05.0042360Z 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-08-14T20:48:05.0043280Z 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-08-14T20:48:05.0044320Z 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-08-14T20:48:05.0050200Z 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-08-14T20:48:05.0051280Z 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-08-14T20:48:05.0057860Z 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-08-14T20:48:05.0058820Z 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-08-14T20:48:05.0060100Z 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-08-14T20:48:05.0067490Z 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-08-14T20:48:05.0068280Z 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-08-14T20:48:05.0074510Z 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-08-14T20:48:05.0075630Z 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-08-14T20:48:05.0082650Z 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-08-14T20:48:05.0083730Z 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-08-14T20:48:05.0084950Z 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-08-14T20:48:05.0090640Z 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-08-14T20:48:05.0091620Z 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-08-14T20:48:05.0098260Z 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-08-14T20:48:05.0099120Z 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-08-14T20:48:05.0100210Z 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-08-14T20:48:05.0107940Z 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-08-14T20:48:05.0108850Z 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-08-14T20:48:05.0115740Z 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-08-14T20:48:05.0116840Z 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-08-14T20:48:05.0123690Z 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-08-14T20:48:05.0124500Z 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-08-14T20:48:05.0125960Z 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-08-14T20:48:05.0132160Z 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-08-14T20:48:05.0133140Z 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-08-14T20:48:05.0139790Z 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-08-14T20:48:05.0140810Z 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-08-14T20:48:05.0141950Z 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-08-14T20:48:05.0148340Z 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-08-14T20:48:05.0149230Z 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-08-14T20:48:05.0155950Z 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-08-14T20:48:05.0157080Z 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-08-14T20:48:05.0158230Z 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-08-14T20:48:05.0163480Z 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-08-14T20:48:05.0164960Z 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-08-14T20:48:05.0168040Z 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-08-14T20:48:05.0172520Z 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-08-14T20:48:05.0173500Z 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-08-14T20:48:05.0180160Z 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-08-14T20:48:05.0180930Z 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-08-14T20:48:05.0187470Z 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-08-14T20:48:05.0188930Z 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-08-14T20:48:05.0196170Z 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-08-14T20:48:05.0196950Z 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-08-14T20:48:05.0198180Z 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-08-14T20:48:05.0203400Z 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-08-14T20:48:05.0205790Z 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-08-14T20:48:05.0211570Z 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-08-14T20:48:05.0212520Z 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-08-14T20:48:05.0270800Z 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-08-14T20:48:05.0271650Z 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-08-14T20:48:05.0272430Z 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-08-14T20:48:05.0273180Z 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-08-14T20:48:05.0274070Z 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-08-14T20:48:05.0275040Z 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-08-14T20:48:05.0275900Z 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-08-14T20:48:05.0276750Z 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-08-14T20:48:05.0278850Z 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-08-14T20:48:05.0279870Z 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-08-14T20:48:05.0287720Z 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-08-14T20:48:05.0288560Z 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-08-14T20:48:05.0289680Z 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-08-14T20:48:05.0295750Z 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-08-14T20:48:05.0296760Z 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-08-14T20:48:05.0303280Z 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-08-14T20:48:05.0303990Z 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-08-14T20:48:05.0305140Z 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-08-14T20:48:05.0311010Z 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-08-14T20:48:05.0311990Z 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-08-14T20:48:05.0319340Z 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-08-14T20:48:05.0320220Z 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-08-14T20:48:05.0321650Z 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-08-14T20:48:05.0327070Z 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-08-14T20:48:05.0327850Z 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-08-14T20:48:05.0329870Z 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-08-14T20:48:05.0336490Z 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-08-14T20:48:05.0338420Z 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-08-14T20:48:05.0343780Z 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-08-14T20:48:05.0344560Z 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-08-14T20:48:05.0346760Z 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-08-14T20:48:05.0353210Z 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-08-14T20:48:05.0355000Z 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-08-14T20:48:05.0361660Z 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-08-14T20:48:05.0362450Z 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-08-14T20:48:05.0363990Z 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-08-14T20:48:05.0370020Z 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-08-14T20:48:05.0371570Z 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-08-14T20:48:05.0378300Z 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-08-14T20:48:05.0379080Z 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-08-14T20:48:05.0380310Z 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-08-14T20:48:05.0386920Z 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-08-14T20:48:05.0388130Z 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-08-14T20:48:05.0395100Z 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-08-14T20:48:05.0395910Z 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-08-14T20:48:05.0404000Z 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-08-14T20:48:05.0404820Z 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-08-14T20:48:05.0411870Z 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-08-14T20:48:05.0412800Z 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-08-14T20:48:05.0419550Z 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-08-14T20:48:05.0420340Z 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-08-14T20:48:05.0421430Z 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-08-14T20:48:05.0427020Z 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-08-14T20:48:05.0428960Z 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-08-14T20:48:05.0438530Z 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-08-14T20:48:05.0440840Z 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-08-14T20:48:05.0447460Z 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-08-14T20:48:05.0451040Z 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-08-14T20:48:05.0457020Z 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-08-14T20:48:05.0457920Z 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-08-14T20:48:05.0459040Z 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-08-14T20:48:05.0460190Z 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-08-14T20:48:05.0464990Z 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-08-14T20:48:05.0465960Z 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-08-14T20:48:05.0467130Z 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-08-14T20:48:05.0474260Z 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-08-14T20:48:05.0475190Z 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-08-14T20:48:05.0482110Z 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-08-14T20:48:05.0482920Z 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-08-14T20:48:05.0484210Z 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-08-14T20:48:05.0489530Z 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-08-14T20:48:05.0490570Z 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-08-14T20:48:05.0497860Z 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-08-14T20:48:05.0498870Z 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-08-14T20:48:05.0505130Z 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-08-14T20:48:05.0505880Z 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-08-14T20:48:05.0507130Z 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-08-14T20:48:05.0513440Z 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-08-14T20:48:05.0514300Z 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-08-14T20:48:05.0521950Z 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-08-14T20:48:05.0522800Z 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-08-14T20:48:05.0530010Z 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-08-14T20:48:05.0531100Z 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-08-14T20:48:05.0531880Z 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-08-14T20:48:05.0537400Z 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-08-14T20:48:05.0538570Z 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-08-14T20:48:05.0545260Z 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-08-14T20:48:05.0546130Z 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-08-14T20:48:05.0547280Z 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-08-14T20:48:05.0554230Z 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-08-14T20:48:05.0555080Z 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-08-14T20:48:05.0561800Z 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-08-14T20:48:05.0563050Z 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-08-14T20:48:05.0570080Z 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-08-14T20:48:05.0570880Z 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-08-14T20:48:05.0572100Z 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-08-14T20:48:05.0577560Z 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-08-14T20:48:05.0578850Z 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-08-14T20:48:05.0585540Z 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-08-14T20:48:05.0586310Z 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-08-14T20:48:05.0587620Z 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-08-14T20:48:05.0593400Z 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-08-14T20:48:05.0594160Z 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-08-14T20:48:05.0600980Z 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-08-14T20:48:05.0602230Z 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-08-14T20:48:05.0609100Z 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-08-14T20:48:05.0609850Z 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-08-14T20:48:05.0610930Z 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-08-14T20:48:05.0633000Z 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-08-14T20:48:05.0639510Z 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-08-14T20:48:05.0650310Z 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-08-14T20:48:05.0654020Z 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-08-14T20:48:05.0656690Z 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-08-14T20:48:05.0657900Z 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-08-14T20:48:05.0659170Z 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-08-14T20:48:05.0660290Z 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-08-14T20:48:05.0661660Z 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-08-14T20:48:05.0662710Z 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-08-14T20:48:05.0663920Z 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-08-14T20:48:05.0665110Z 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-08-14T20:48:05.0666250Z 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-08-14T20:48:05.0667360Z 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-08-14T20:48:05.0668540Z 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-08-14T20:48:05.0669670Z 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-08-14T20:48:05.0670750Z 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-08-14T20:48:05.0672020Z 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-08-14T20:48:05.0673070Z 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-08-14T20:48:05.0677380Z 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-08-14T20:48:05.0681730Z 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-08-14T20:48:05.0684640Z 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-08-14T20:48:05.0688480Z 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-08-14T20:48:05.0689360Z 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-08-14T20:48:05.0695640Z 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-08-14T20:48:05.0696460Z 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-08-14T20:48:05.0702720Z 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-08-14T20:48:05.0703590Z 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-08-14T20:48:05.0709200Z 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-08-14T20:48:05.0710670Z 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-08-14T20:48:05.0716180Z 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-08-14T20:48:05.0716960Z 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-08-14T20:48:05.0723200Z 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-08-14T20:48:05.0724510Z 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-08-14T20:48:05.0730390Z 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-08-14T20:48:05.0731590Z 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-08-14T20:48:05.0732690Z 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-08-14T20:48:05.0739280Z 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-08-14T20:48:05.0740090Z 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-08-14T20:48:05.0747350Z 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-08-14T20:48:05.0748150Z 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-08-14T20:48:05.0754600Z 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-08-14T20:48:05.0755380Z 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-08-14T20:48:05.0756440Z 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-08-14T20:48:05.0763950Z 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-08-14T20:48:05.0764930Z 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-08-14T20:48:05.0770650Z 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-08-14T20:48:05.0771730Z 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-08-14T20:48:05.0777920Z 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-08-14T20:48:05.0778710Z 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-08-14T20:48:05.0779790Z 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-08-14T20:48:05.0786590Z 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-08-14T20:48:05.0787400Z 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-08-14T20:48:05.0794470Z 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-08-14T20:48:05.0795280Z 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-08-14T20:48:05.0802360Z 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-08-14T20:48:05.0803210Z 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-08-14T20:48:05.0804350Z 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-08-14T20:48:05.0810160Z 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-08-14T20:48:05.0810960Z 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-08-14T20:48:05.0817130Z 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-08-14T20:48:05.0825050Z 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-08-14T20:48:05.0826080Z 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-08-14T20:48:05.0827830Z 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-08-14T20:48:05.0832850Z 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-08-14T20:48:05.0833750Z 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-08-14T20:48:05.0841880Z 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-08-14T20:48:05.0844580Z 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-08-14T20:48:05.0849100Z 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-08-14T20:48:05.0849980Z 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-08-14T20:48:05.0854720Z 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-08-14T20:48:05.0857600Z 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-08-14T20:48:05.0863610Z 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-08-14T20:48:05.0864860Z 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-08-14T20:48:05.0871490Z 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-08-14T20:48:05.0872320Z 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-08-14T20:48:05.0873500Z 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-08-14T20:48:05.0880340Z 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-08-14T20:48:05.0881400Z 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-08-14T20:48:05.0887380Z 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-08-14T20:48:05.0889310Z 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-08-14T20:48:05.0894910Z 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-08-14T20:48:05.0895650Z 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-08-14T20:48:05.0898240Z 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-08-14T20:48:05.0903930Z 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-08-14T20:48:05.0904740Z 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-08-14T20:48:05.0907070Z 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-08-14T20:48:05.0913200Z 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-08-14T20:48:05.0915090Z 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-08-14T20:48:05.0921200Z 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-08-14T20:48:05.0921990Z 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-08-14T20:48:05.0923470Z 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-08-14T20:48:05.0930100Z 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-08-14T20:48:05.0930900Z 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-08-14T20:48:05.0937740Z 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-08-14T20:48:05.0938910Z 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-08-14T20:48:05.0945850Z 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-08-14T20:48:05.0946810Z 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-08-14T20:48:05.0947860Z 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-08-14T20:48:05.0954110Z 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-08-14T20:48:05.0954910Z 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-08-14T20:48:05.0961860Z 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-08-14T20:48:05.0962890Z 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-08-14T20:48:05.0964020Z 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-08-14T20:48:05.0969680Z 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-08-14T20:48:05.0970730Z 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-08-14T20:48:05.0976810Z 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-08-14T20:48:05.0978790Z 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-08-14T20:48:05.0984220Z 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-08-14T20:48:05.0985370Z 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-08-14T20:48:05.0986980Z 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-08-14T20:48:05.0992800Z 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-08-14T20:48:05.0993690Z 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-08-14T20:48:05.1000370Z 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-08-14T20:48:05.1001310Z 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-08-14T20:48:05.1008680Z 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-08-14T20:48:05.1009920Z 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-08-14T20:48:05.1010770Z 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-08-14T20:48:05.1017040Z 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-08-14T20:48:05.1018330Z 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-08-14T20:48:05.1024660Z 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-08-14T20:48:05.1025840Z 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-08-14T20:48:05.1027210Z 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-08-14T20:48:05.1034580Z 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-08-14T20:48:05.1035520Z 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-08-14T20:48:05.1042340Z 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-08-14T20:48:05.1043180Z 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-08-14T20:48:05.1049020Z 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-08-14T20:48:05.1049920Z 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-08-14T20:48:05.1056230Z 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-08-14T20:48:05.1057400Z 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-08-14T20:48:05.1064920Z 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-08-14T20:48:05.1065700Z 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-08-14T20:48:05.1072950Z 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-08-14T20:48:05.1073980Z 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-08-14T20:48:05.1075100Z 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-08-14T20:48:05.1080280Z 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-08-14T20:48:05.1081500Z 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-08-14T20:48:05.1088050Z 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-08-14T20:48:05.1088930Z 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-08-14T20:48:05.1090130Z 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-08-14T20:48:05.1096580Z 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-08-14T20:48:05.1097780Z 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-08-14T20:48:05.1105030Z 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-08-14T20:48:05.1105930Z 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-08-14T20:48:05.1113120Z 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-08-14T20:48:05.1114050Z 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-08-14T20:48:05.1115290Z 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-08-14T20:48:05.1121010Z 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-08-14T20:48:05.1122130Z 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-08-14T20:48:05.1129820Z 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-08-14T20:48:05.1130640Z 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-08-14T20:48:05.1131810Z 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-08-14T20:48:05.1137320Z 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-08-14T20:48:05.1138610Z 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-08-14T20:48:05.1144880Z 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-08-14T20:48:05.1146030Z 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-08-14T20:48:05.1147520Z 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-08-14T20:48:05.1153700Z 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-08-14T20:48:05.1154620Z 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-08-14T20:48:05.1161160Z 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-08-14T20:48:05.1161910Z 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-08-14T20:48:05.1168970Z 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-08-14T20:48:05.1169970Z 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-08-14T20:48:05.1171140Z 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-08-14T20:48:05.1176800Z 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-08-14T20:48:05.1178110Z 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-08-14T20:48:05.1184790Z 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-08-14T20:48:05.1185730Z 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-08-14T20:48:05.1186980Z 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-08-14T20:48:05.1194390Z 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-08-14T20:48:05.1195180Z 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-08-14T20:48:05.1202240Z 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-08-14T20:48:05.1203270Z 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-08-14T20:48:05.1209460Z 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-08-14T20:48:05.1210480Z 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-08-14T20:48:05.1211690Z 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-08-14T20:48:05.1218060Z 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-08-14T20:48:05.1218910Z 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-08-14T20:48:05.1220190Z 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-08-14T20:48:05.1227390Z 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-08-14T20:48:05.1228360Z 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-08-14T20:48:05.1229420Z 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-08-14T20:48:05.1235100Z 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-08-14T20:48:05.1236840Z 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-08-14T20:48:05.1238140Z 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-08-14T20:48:05.1243620Z 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-08-14T20:48:05.1252230Z 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-08-14T20:48:05.1253050Z 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-08-14T20:48:05.1256580Z 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-08-14T20:48:05.1260060Z 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-08-14T20:48:05.1260950Z 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-08-14T20:48:05.1266480Z 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-08-14T20:48:05.1268360Z 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-08-14T20:48:05.1274400Z 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-08-14T20:48:05.1275380Z 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-08-14T20:48:05.1277180Z 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-08-14T20:48:05.1283610Z 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-08-14T20:48:05.1284420Z 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-08-14T20:48:05.1291920Z 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-08-14T20:48:05.1292740Z 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-08-14T20:48:05.1299840Z 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-08-14T20:48:05.1300660Z 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-08-14T20:48:05.1301950Z 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-08-14T20:48:05.1307680Z 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-08-14T20:48:05.1308590Z 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-08-14T20:48:05.1315340Z 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-08-14T20:48:05.1316500Z 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-08-14T20:48:05.1317720Z 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-08-14T20:48:05.1323510Z 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-08-14T20:48:05.1324250Z 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-08-14T20:48:05.1330970Z 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-08-14T20:48:05.1332180Z 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-08-14T20:48:05.1338820Z 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-08-14T20:48:05.1339480Z 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-08-14T20:48:05.1340600Z 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-08-14T20:48:05.1346680Z 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-08-14T20:48:05.1347420Z 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-08-14T20:48:05.1354440Z 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-08-14T20:48:05.1355360Z 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-08-14T20:48:05.1362080Z 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-08-14T20:48:05.1363000Z 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-08-14T20:48:05.1364040Z 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-08-14T20:48:05.1369370Z 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-08-14T20:48:05.1370510Z 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-08-14T20:48:05.1377190Z 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-08-14T20:48:05.1378380Z 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-08-14T20:48:05.1384770Z 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-08-14T20:48:05.1385890Z 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-08-14T20:48:05.1387160Z 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-08-14T20:48:05.1394550Z 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-08-14T20:48:05.1395460Z 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-08-14T20:48:05.1402000Z 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-08-14T20:48:05.1409990Z 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-08-14T20:48:05.1410960Z 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-08-14T20:48:05.1412190Z 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-08-14T20:48:05.1418390Z 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-08-14T20:48:05.1419510Z 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-08-14T20:48:05.1426340Z 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-08-14T20:48:05.1427280Z 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-08-14T20:48:05.1428510Z 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-08-14T20:48:05.1434110Z 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-08-14T20:48:05.1435920Z 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-08-14T20:48:05.1442610Z 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-08-14T20:48:05.1443390Z 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-08-14T20:48:05.1444700Z 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-08-14T20:48:05.1450690Z 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-08-14T20:48:05.1451510Z 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-08-14T20:48:05.1458610Z 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-08-14T20:48:05.1459440Z 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-08-14T20:48:05.1466730Z 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-08-14T20:48:05.1467680Z 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-08-14T20:48:05.1468780Z 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-08-14T20:48:05.1474410Z 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-08-14T20:48:05.1475480Z 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-08-14T20:48:05.1481650Z 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-08-14T20:48:05.1482650Z 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-08-14T20:48:05.1483930Z 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-08-14T20:48:05.1490960Z 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-08-14T20:48:05.1491910Z 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-08-14T20:48:05.1498360Z 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-08-14T20:48:05.1499190Z 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-08-14T20:48:05.1506670Z 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-08-14T20:48:05.1507560Z 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-08-14T20:48:05.1508610Z 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-08-14T20:48:05.1514710Z 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-08-14T20:48:05.1516080Z 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-08-14T20:48:05.1523240Z 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-08-14T20:48:05.1524020Z 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-08-14T20:48:05.1525220Z 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-08-14T20:48:05.1531280Z 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-08-14T20:48:05.1532020Z 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-08-14T20:48:05.1539980Z 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-08-14T20:48:05.1540890Z 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-08-14T20:48:05.1542100Z 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-08-14T20:48:05.1547750Z 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-08-14T20:48:05.1548760Z 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-08-14T20:48:05.1555400Z 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-08-14T20:48:05.1556110Z 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-08-14T20:48:05.1557310Z 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-08-14T20:48:05.1562730Z 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-08-14T20:48:05.1563910Z 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-08-14T20:48:05.1571010Z 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-08-14T20:48:05.1571730Z 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-08-14T20:48:05.1578980Z 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-08-14T20:48:05.1579690Z 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-08-14T20:48:05.1580910Z 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-08-14T20:48:05.1586760Z 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-08-14T20:48:05.1587730Z 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-08-14T20:48:05.1594570Z 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-08-14T20:48:05.1595530Z 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-08-14T20:48:05.1596640Z 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-08-14T20:48:05.1603250Z 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-08-14T20:48:05.1604300Z 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-08-14T20:48:05.1608140Z 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-08-14T20:48:05.1614220Z 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-08-14T20:48:05.1621420Z 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-08-14T20:48:05.1624500Z 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-08-14T20:48:05.1630460Z 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-08-14T20:48:05.1631340Z 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-08-14T20:48:05.1639150Z 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-08-14T20:48:05.1640490Z 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-08-14T20:48:05.1645570Z 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-08-14T20:48:05.1646500Z 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-08-14T20:48:05.1647650Z 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-08-14T20:48:05.1653390Z 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-08-14T20:48:05.1654730Z 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-08-14T20:48:05.1662210Z 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-08-14T20:48:05.1663190Z 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-08-14T20:48:05.1664380Z 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-08-14T20:48:05.1670540Z 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-08-14T20:48:05.1671410Z 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-08-14T20:48:05.1675690Z 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-08-14T20:48:05.1680300Z 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-08-14T20:48:05.1681210Z 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-08-14T20:48:05.1684270Z 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-08-14T20:48:05.1689970Z 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-08-14T20:48:05.1693220Z 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-08-14T20:48:05.1698030Z 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-08-14T20:48:05.1698950Z 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-08-14T20:48:05.1701450Z 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-08-14T20:48:05.1706890Z 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-08-14T20:48:05.1707850Z 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-08-14T20:48:05.1709070Z 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-08-14T20:48:05.1716650Z 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-08-14T20:48:05.1717790Z 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-08-14T20:48:05.1724020Z 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-08-14T20:48:05.1726320Z 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-08-14T20:48:05.1731870Z 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-08-14T20:48:05.1733280Z 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-08-14T20:48:05.1734120Z 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-08-14T20:48:05.1740550Z 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-08-14T20:48:05.1741590Z 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-08-14T20:48:05.1747810Z 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-08-14T20:48:05.1748850Z 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-08-14T20:48:05.1755410Z 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-08-14T20:48:05.1756410Z 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-08-14T20:48:05.1757500Z 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-08-14T20:48:05.1763160Z 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-08-14T20:48:05.1764560Z 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-08-14T20:48:05.1770270Z 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-08-14T20:48:05.1771880Z 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-08-14T20:48:05.1777690Z 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-08-14T20:48:05.1778450Z 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-08-14T20:48:05.1780790Z 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-08-14T20:48:05.1787030Z 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-08-14T20:48:05.1787960Z 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-08-14T20:48:05.1794480Z 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-08-14T20:48:05.1795850Z 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-08-14T20:48:05.1802630Z 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-08-14T20:48:05.1803880Z 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-08-14T20:48:05.1804910Z 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-08-14T20:48:05.1810810Z 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-08-14T20:48:05.1811560Z 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-08-14T20:48:05.1818150Z 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-08-14T20:48:05.1820160Z 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-08-14T20:48:05.1821200Z 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-08-14T20:48:05.1825560Z 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-08-14T20:48:05.1827430Z 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-08-14T20:48:05.1832890Z 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-08-14T20:48:05.1834150Z 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-08-14T20:48:05.1841950Z 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-08-14T20:48:05.1848960Z 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-08-14T20:48:05.1849820Z 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-08-14T20:48:05.1851100Z 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-08-14T20:48:05.1857310Z 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-08-14T20:48:05.1858040Z 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-08-14T20:48:05.1865100Z 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-08-14T20:48:05.1866440Z 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-08-14T20:48:05.1874590Z 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-08-14T20:48:05.1875210Z 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-08-14T20:48:05.1876290Z 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-08-14T20:48:05.1881740Z 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-08-14T20:48:05.1882660Z 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-08-14T20:48:05.1883840Z 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-08-14T20:48:05.1891080Z 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-08-14T20:48:05.1892080Z 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-08-14T20:48:05.1898340Z 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-08-14T20:48:05.1899100Z 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-08-14T20:48:05.1905610Z 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-08-14T20:48:05.1906650Z 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-08-14T20:48:05.1907840Z 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-08-14T20:48:05.1912910Z 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-08-14T20:48:05.1914260Z 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-08-14T20:48:05.1920860Z 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-08-14T20:48:05.1921810Z 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-08-14T20:48:05.1928500Z 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-08-14T20:48:05.1929220Z 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-08-14T20:48:05.1930410Z 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-08-14T20:48:05.1936150Z 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-08-14T20:48:05.1937600Z 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-08-14T20:48:05.1943600Z 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-08-14T20:48:05.1945230Z 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-08-14T20:48:05.1951300Z 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-08-14T20:48:05.1952140Z 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-08-14T20:48:05.1953250Z 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-08-14T20:48:05.1959780Z 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-08-14T20:48:05.1960840Z 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-08-14T20:48:05.1967330Z 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-08-14T20:48:05.1968690Z 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-08-14T20:48:05.1975350Z 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-08-14T20:48:05.1976590Z 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-08-14T20:48:05.1977620Z 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-08-14T20:48:05.1983050Z 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-08-14T20:48:05.1983990Z 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-08-14T20:48:05.1991070Z 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-08-14T20:48:05.1992450Z 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-08-14T20:48:05.1999110Z 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-08-14T20:48:05.1999960Z 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-08-14T20:48:05.2001220Z 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-08-14T20:48:05.2004510Z 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-08-14T20:48:05.2007820Z 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-08-14T20:48:05.2008810Z 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-08-14T20:48:05.2010460Z 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-08-14T20:48:05.2016510Z 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-08-14T20:48:05.2017820Z 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-08-14T20:48:05.2024150Z 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-08-14T20:48:05.2025580Z 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-08-14T20:48:05.2031470Z 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-08-14T20:48:05.2033360Z 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-08-14T20:48:05.2040810Z 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-08-14T20:48:05.2041690Z 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-08-14T20:48:05.2045720Z 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-08-14T20:48:05.2049670Z 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-08-14T20:48:05.2053210Z 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-08-14T20:48:05.2054130Z 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-08-14T20:48:05.2058190Z 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-08-14T20:48:05.2061310Z 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-08-14T20:48:05.2066450Z 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-08-14T20:48:05.2067390Z 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-08-14T20:48:05.2074550Z 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-08-14T20:48:05.2075880Z 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-08-14T20:48:05.2082030Z 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-08-14T20:48:05.2082770Z 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-08-14T20:48:05.2083920Z 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-08-14T20:48:05.2089850Z 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-08-14T20:48:05.2090610Z 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-08-14T20:48:05.2097360Z 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-08-14T20:48:05.2098700Z 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-08-14T20:48:05.2105320Z 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-08-14T20:48:05.2106050Z 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-08-14T20:48:05.2107380Z 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-08-14T20:48:05.2112820Z 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-08-14T20:48:05.2114130Z 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-08-14T20:48:05.2121150Z 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-08-14T20:48:05.2122530Z 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-08-14T20:48:05.2128940Z 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-08-14T20:48:05.2129680Z 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-08-14T20:48:05.2131070Z 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-08-14T20:48:05.2137070Z 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-08-14T20:48:05.2137960Z 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-08-14T20:48:05.2140860Z 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-08-14T20:48:05.2146450Z 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-08-14T20:48:05.2149600Z 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-08-14T20:48:05.2154710Z 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-08-14T20:48:05.2155610Z 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-08-14T20:48:05.2158860Z 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-08-14T20:48:05.2164350Z 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-08-14T20:48:05.2165780Z 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-08-14T20:48:05.2166900Z 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-08-14T20:48:05.2174030Z 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-08-14T20:48:05.2174880Z 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-08-14T20:48:05.2182190Z 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-08-14T20:48:05.2183030Z 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-08-14T20:48:05.2189840Z 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-08-14T20:48:05.2190590Z 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-08-14T20:48:05.2191690Z 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-08-14T20:48:05.2198160Z 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-08-14T20:48:05.2199650Z 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-08-14T20:48:05.2206540Z 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-08-14T20:48:05.2207650Z 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-08-14T20:48:05.2214460Z 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-08-14T20:48:05.2215250Z 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-08-14T20:48:05.2222500Z 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-08-14T20:48:05.2223300Z 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-08-14T20:48:05.2224410Z 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-08-14T20:48:05.2230120Z 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-08-14T20:48:05.2232510Z 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-08-14T20:48:05.2237850Z 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-08-14T20:48:05.2238750Z 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-08-14T20:48:05.2240680Z 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-08-14T20:48:05.2247160Z 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-08-14T20:48:05.2248000Z 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-08-14T20:48:05.2255760Z 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-08-14T20:48:05.2256710Z 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-08-14T20:48:05.2264010Z 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-08-14T20:48:05.2264860Z 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-08-14T20:48:05.2265900Z 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-08-14T20:48:05.2271680Z 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-08-14T20:48:05.2273120Z 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-08-14T20:48:05.2279430Z 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-08-14T20:48:05.2280410Z 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-08-14T20:48:05.2281600Z 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-08-14T20:48:05.2287680Z 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-08-14T20:48:05.2289000Z 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-08-14T20:48:05.2295310Z 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-08-14T20:48:05.2296040Z 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-08-14T20:48:05.2297840Z 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-08-14T20:48:05.2303530Z 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-08-14T20:48:05.2304290Z 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-08-14T20:48:05.2307940Z 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-08-14T20:48:05.2313610Z 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-08-14T20:48:05.2316600Z 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-08-14T20:48:05.2320870Z 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-08-14T20:48:05.2321800Z 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-08-14T20:48:05.2325410Z 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-08-14T20:48:05.2329670Z 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-08-14T20:48:05.2330600Z 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-08-14T20:48:05.2335230Z 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-08-14T20:48:05.2339280Z 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-08-14T20:48:05.2343240Z 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-08-14T20:48:05.2343990Z 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-08-14T20:48:05.2349180Z 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-08-14T20:48:05.2352330Z 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-08-14T20:48:05.2357060Z 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-08-14T20:48:05.2358030Z 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-08-14T20:48:05.2361780Z 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-08-14T20:48:05.2366020Z 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-08-14T20:48:05.2369700Z 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-08-14T20:48:05.2370630Z 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-08-14T20:48:05.2375040Z 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-08-14T20:48:05.2378870Z 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-08-14T20:48:05.2383200Z 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-08-14T20:48:05.2384120Z 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-08-14T20:48:05.2388610Z 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-08-14T20:48:05.2393680Z 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-08-14T20:48:05.2394480Z 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-08-14T20:48:05.2396440Z 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-08-14T20:48:05.2401820Z 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-08-14T20:48:05.2402740Z 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-08-14T20:48:05.2404450Z 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-08-14T20:48:05.2409190Z 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-08-14T20:48:05.2410650Z 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-08-14T20:48:05.2411870Z 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-08-14T20:48:05.2421450Z 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-08-14T20:48:05.2426650Z 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-08-14T20:48:05.2427980Z 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-08-14T20:48:05.2434460Z 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-08-14T20:48:05.2435340Z 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-08-14T20:48:05.2436470Z 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-08-14T20:48:05.2443790Z 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-08-14T20:48:05.2444770Z 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-08-14T20:48:05.2452350Z 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-08-14T20:48:05.2459440Z 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-08-14T20:48:05.2460290Z 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-08-14T20:48:05.2461410Z 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-08-14T20:48:05.2466880Z 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-08-14T20:48:05.2468390Z 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-08-14T20:48:05.2474130Z 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-08-14T20:48:05.2475700Z 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-08-14T20:48:05.2476770Z 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-08-14T20:48:05.2482880Z 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-08-14T20:48:05.2483750Z 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-08-14T20:48:05.2490670Z 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-08-14T20:48:05.2491680Z 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-08-14T20:48:05.2498390Z 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-08-14T20:48:05.2499250Z 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-08-14T20:48:05.2500270Z 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-08-14T20:48:05.2506070Z 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-08-14T20:48:05.2508520Z 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-08-14T20:48:05.2513830Z 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-08-14T20:48:05.2514510Z 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-08-14T20:48:05.2517350Z 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-08-14T20:48:05.2522990Z 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-08-14T20:48:05.2523870Z 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-08-14T20:48:05.2530700Z 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-08-14T20:48:05.2532030Z 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-08-14T20:48:05.2538390Z 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-08-14T20:48:05.2539320Z 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-08-14T20:48:05.2540350Z 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-08-14T20:48:05.2547450Z 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-08-14T20:48:05.2548370Z 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-08-14T20:48:05.2555300Z 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-08-14T20:48:05.2556500Z 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-08-14T20:48:05.2562470Z 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-08-14T20:48:05.2563220Z 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-08-14T20:48:05.2564310Z 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-08-14T20:48:05.2570520Z 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-08-14T20:48:05.2571990Z 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-08-14T20:48:05.2579190Z 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-08-14T20:48:05.2580060Z 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-08-14T20:48:05.2581140Z 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-08-14T20:48:05.2587210Z 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-08-14T20:48:05.2588090Z 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-08-14T20:48:05.2594890Z 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-08-14T20:48:05.2595750Z 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-08-14T20:48:05.2596900Z 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-08-14T20:48:05.2602300Z 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-08-14T20:48:05.2603690Z 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-08-14T20:48:05.2610460Z 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-08-14T20:48:05.2611790Z 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-08-14T20:48:05.2618170Z 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-08-14T20:48:05.2619050Z 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-08-14T20:48:05.2620280Z 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-08-14T20:48:05.2626090Z 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-08-14T20:48:05.2633620Z 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-08-14T20:48:05.2634460Z 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-08-14T20:48:05.2641510Z 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-08-14T20:48:05.2642400Z 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-08-14T20:48:05.2648760Z 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-08-14T20:48:05.2649570Z 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-08-14T20:48:05.2650650Z 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-08-14T20:48:05.2656840Z 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-08-14T20:48:05.2658380Z 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-08-14T20:48:05.2664870Z 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-08-14T20:48:05.2666210Z 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-08-14T20:48:05.2667570Z 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-08-14T20:48:05.2673390Z 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-08-14T20:48:05.2674210Z 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-08-14T20:48:05.2680450Z 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-08-14T20:48:05.2682640Z 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-08-14T20:48:05.2687770Z 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-08-14T20:48:05.2689130Z 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-08-14T20:48:05.2690490Z 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-08-14T20:48:05.2696550Z 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-08-14T20:48:05.2697440Z 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-08-14T20:48:05.2704130Z 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-08-14T20:48:05.2705010Z 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-08-14T20:48:05.2711860Z 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-08-14T20:48:05.2712680Z 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-08-14T20:48:05.2713800Z 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-08-14T20:48:05.2719620Z 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-08-14T20:48:05.2720890Z 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-08-14T20:48:05.2727450Z 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-08-14T20:48:05.2728860Z 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-08-14T20:48:05.2735400Z 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-08-14T20:48:05.2736360Z 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-08-14T20:48:05.2737540Z 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-08-14T20:48:05.2743140Z 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-08-14T20:48:05.2743920Z 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-08-14T20:48:05.2751430Z 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-08-14T20:48:05.2752460Z 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-08-14T20:48:05.2760050Z 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-08-14T20:48:05.2760970Z 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-08-14T20:48:05.2762150Z 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-08-14T20:48:05.2767660Z 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-08-14T20:48:05.2768960Z 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-08-14T20:48:05.2776270Z 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-08-14T20:48:05.2777100Z 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-08-14T20:48:05.2778240Z 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-08-14T20:48:05.2785910Z 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-08-14T20:48:05.2786660Z 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-08-14T20:48:05.2791330Z 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-08-14T20:48:05.2793940Z 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-08-14T20:48:05.2794660Z 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-08-14T20:48:05.2795900Z 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-08-14T20:48:05.2798990Z 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-08-14T20:48:05.2799830Z 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-08-14T20:48:05.2806890Z 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-08-14T20:48:05.2808250Z 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-08-14T20:48:05.2814920Z 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-08-14T20:48:05.2816860Z 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-08-14T20:48:05.2827090Z 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-08-14T20:48:05.2827640Z 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-08-14T20:48:05.2830450Z 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-08-14T20:48:05.2831540Z 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-08-14T20:48:05.2839300Z 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-08-14T20:48:05.2841740Z 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-08-14T20:48:05.2847260Z 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-08-14T20:48:05.2848390Z 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-08-14T20:48:05.2849930Z 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-08-14T20:48:05.2856590Z 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-08-14T20:48:05.2857620Z 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-08-14T20:48:05.2864110Z 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-08-14T20:48:05.2865670Z 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-08-14T20:48:05.2871740Z 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-08-14T20:48:05.2872540Z 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-08-14T20:48:05.2873680Z 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-08-14T20:48:05.2879210Z 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-08-14T20:48:05.2880740Z 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-08-14T20:48:05.2887360Z 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-08-14T20:48:05.2888190Z 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-08-14T20:48:05.2895580Z 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-08-14T20:48:05.2896590Z 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-08-14T20:48:05.2897760Z 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-08-14T20:48:05.2903240Z 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-08-14T20:48:05.2904790Z 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-08-14T20:48:05.2911420Z 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-08-14T20:48:05.2912590Z 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-08-14T20:48:05.2913530Z 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-08-14T20:48:05.2919140Z 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-08-14T20:48:05.2920510Z 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-08-14T20:48:05.2926760Z 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-08-14T20:48:05.2928620Z 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-08-14T20:48:05.2934230Z 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-08-14T20:48:05.2935770Z 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-08-14T20:48:05.2936780Z 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-08-14T20:48:05.2943370Z 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-08-14T20:48:05.2944070Z 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-08-14T20:48:05.2951110Z 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-08-14T20:48:05.2951810Z 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-08-14T20:48:05.2958580Z 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-08-14T20:48:05.2959520Z 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-08-14T20:48:05.2960690Z 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-08-14T20:48:05.2966080Z 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-08-14T20:48:05.2967620Z 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-08-14T20:48:05.2974240Z 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-08-14T20:48:05.2975840Z 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-08-14T20:48:05.2982730Z 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-08-14T20:48:05.2983650Z 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-08-14T20:48:05.2984700Z 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-08-14T20:48:05.2990120Z 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-08-14T20:48:05.2991400Z 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-08-14T20:48:05.2997730Z 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-08-14T20:48:05.2999000Z 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-08-14T20:48:05.3000400Z 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-08-14T20:48:05.3006610Z 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-08-14T20:48:05.3007460Z 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-08-14T20:48:05.3014160Z 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-08-14T20:48:05.3015020Z 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-08-14T20:48:05.3021750Z 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-08-14T20:48:05.3023170Z 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-08-14T20:48:05.3024410Z 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-08-14T20:48:05.3029190Z 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-08-14T20:48:05.3030630Z 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-08-14T20:48:05.3035110Z 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-08-14T20:48:05.3038760Z 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-08-14T20:48:05.3043060Z 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-08-14T20:48:05.3048380Z 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-08-14T20:48:05.3052100Z 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-08-14T20:48:05.3056380Z 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-08-14T20:48:05.3061680Z 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-08-14T20:48:05.3066110Z 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-08-14T20:48:05.3069050Z 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-08-14T20:48:05.3069890Z 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-08-14T20:48:05.3075910Z 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-08-14T20:48:05.3078000Z 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-08-14T20:48:05.3083330Z 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-08-14T20:48:05.3084760Z 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-08-14T20:48:05.3086540Z 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-08-14T20:48:05.3092670Z 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-08-14T20:48:05.3093690Z 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-08-14T20:48:05.3100400Z 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-08-14T20:48:05.3101720Z 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-08-14T20:48:05.3107840Z 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-08-14T20:48:05.3108850Z 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-08-14T20:48:05.3110160Z 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-08-14T20:48:05.3117100Z 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-08-14T20:48:05.3118130Z 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-08-14T20:48:05.3124560Z 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-08-14T20:48:05.3126000Z 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-08-14T20:48:05.3132560Z 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-08-14T20:48:05.3133470Z 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-08-14T20:48:05.3134680Z 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-08-14T20:48:05.3139820Z 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-08-14T20:48:05.3141090Z 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-08-14T20:48:05.3147770Z 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-08-14T20:48:05.3148530Z 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-08-14T20:48:05.3149730Z 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-08-14T20:48:05.3157170Z 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-08-14T20:48:05.3158000Z 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-08-14T20:48:05.3165740Z 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-08-14T20:48:05.3166470Z 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-08-14T20:48:05.3172820Z 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-08-14T20:48:05.3173770Z 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-08-14T20:48:05.3175080Z 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-08-14T20:48:05.3180500Z 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-08-14T20:48:05.3181750Z 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-08-14T20:48:05.3183740Z 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-08-14T20:48:05.3189310Z 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-08-14T20:48:05.3190240Z 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-08-14T20:48:05.3191340Z 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-08-14T20:48:05.3197680Z 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-08-14T20:48:05.3205610Z 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-08-14T20:48:05.3206470Z 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-08-14T20:48:05.3207630Z 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-08-14T20:48:05.3213950Z 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-08-14T20:48:05.3214650Z 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-08-14T20:48:05.3221720Z 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-08-14T20:48:05.3223150Z 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-08-14T20:48:05.3224490Z 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-08-14T20:48:05.3229410Z 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-08-14T20:48:05.3230910Z 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-08-14T20:48:05.3237380Z 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-08-14T20:48:05.3238250Z 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-08-14T20:48:05.3242910Z 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-08-14T20:48:05.3246450Z 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-08-14T20:48:05.3252390Z 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-08-14T20:48:05.3255580Z 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-08-14T20:48:05.3258520Z 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-08-14T20:48:05.3262900Z 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-08-14T20:48:05.3267320Z 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-08-14T20:48:05.3272500Z 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-08-14T20:48:05.3275660Z 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-08-14T20:48:05.3279990Z 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-08-14T20:48:05.3280840Z 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-08-14T20:48:05.3284520Z 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-08-14T20:48:05.3288560Z 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-08-14T20:48:05.3293490Z 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-08-14T20:48:05.3295870Z 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-08-14T20:48:05.3296670Z 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-08-14T20:48:05.3303220Z 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-08-14T20:48:05.3304010Z 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-08-14T20:48:05.3310700Z 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-08-14T20:48:05.3311680Z 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-08-14T20:48:05.3318400Z 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-08-14T20:48:05.3319300Z 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-08-14T20:48:05.3320490Z 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-08-14T20:48:05.3326050Z 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-08-14T20:48:05.3327570Z 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-08-14T20:48:05.3333790Z 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-08-14T20:48:05.3335100Z 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-08-14T20:48:05.3341400Z 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-08-14T20:48:05.3343000Z 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-08-14T20:48:05.3344100Z 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-08-14T20:48:05.3349000Z 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-08-14T20:48:05.3350420Z 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-08-14T20:48:05.3356600Z 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-08-14T20:48:05.3358030Z 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-08-14T20:48:05.3364450Z 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-08-14T20:48:05.3365470Z 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-08-14T20:48:05.3366710Z 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-08-14T20:48:05.3372950Z 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-08-14T20:48:05.3374410Z 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-08-14T20:48:05.3380790Z 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-08-14T20:48:05.3382060Z 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-08-14T20:48:05.3387990Z 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-08-14T20:48:05.3389020Z 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-08-14T20:48:05.3390130Z 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-08-14T20:48:05.3396060Z 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-08-14T20:48:05.3396870Z 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-08-14T20:48:05.3404210Z 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-08-14T20:48:05.3405120Z 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-08-14T20:48:05.3412370Z 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-08-14T20:48:05.3413140Z 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-08-14T20:48:05.3414290Z 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-08-14T20:48:05.3420660Z 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-08-14T20:48:05.3421370Z 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-08-14T20:48:05.3429290Z 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-08-14T20:48:05.3430220Z 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-08-14T20:48:05.3431290Z 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-08-14T20:48:05.3437300Z 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-08-14T20:48:05.3438690Z 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-08-14T20:48:05.3445460Z 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-08-14T20:48:05.3446290Z 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-08-14T20:48:05.3447820Z 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-08-14T20:48:05.3451390Z 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-08-14T20:48:05.3454340Z 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-08-14T20:48:05.3461800Z 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-08-14T20:48:05.3465010Z 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-08-14T20:48:05.3469580Z 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-08-14T20:48:05.3476010Z 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-08-14T20:48:05.3477530Z 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-08-14T20:48:05.3484170Z 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-08-14T20:48:05.3485050Z 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-08-14T20:48:05.3492690Z 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-08-14T20:48:05.3493430Z 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-08-14T20:48:05.3494590Z 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-08-14T20:48:05.3500010Z 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-08-14T20:48:05.3502510Z 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-08-14T20:48:05.3507890Z 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-08-14T20:48:05.3508670Z 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-08-14T20:48:05.3509920Z 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-08-14T20:48:05.3517350Z 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-08-14T20:48:05.3518070Z 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-08-14T20:48:05.3524500Z 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-08-14T20:48:05.3525970Z 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-08-14T20:48:05.3532850Z 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-08-14T20:48:05.3533730Z 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-08-14T20:48:05.3535000Z 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-08-14T20:48:05.3540270Z 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-08-14T20:48:05.3541470Z 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-08-14T20:48:05.3547760Z 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-08-14T20:48:05.3548450Z 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-08-14T20:48:05.3549770Z 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-08-14T20:48:05.3556890Z 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-08-14T20:48:05.3557850Z 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-08-14T20:48:05.3566460Z 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-08-14T20:48:05.3567280Z 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-08-14T20:48:05.3568540Z 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-08-14T20:48:05.3571300Z 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-08-14T20:48:05.3575070Z 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-08-14T20:48:05.3576580Z 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-08-14T20:48:05.3577880Z 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-08-14T20:48:05.3582630Z 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-08-14T20:48:05.3584060Z 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-08-14T20:48:05.3591030Z 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-08-14T20:48:05.3591890Z 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-08-14T20:48:05.3598690Z 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-08-14T20:48:05.3600040Z 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-08-14T20:48:05.3601250Z 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-08-14T20:48:05.3606850Z 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-08-14T20:48:05.3607710Z 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-08-14T20:48:05.3614670Z 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-08-14T20:48:05.3616150Z 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-08-14T20:48:05.3624340Z 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-08-14T20:48:05.3625180Z 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-08-14T20:48:05.3631830Z 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-08-14T20:48:05.3632790Z 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-08-14T20:48:05.3633840Z 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-08-14T20:48:05.3639130Z 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-08-14T20:48:05.3641450Z 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-08-14T20:48:05.3646380Z 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-08-14T20:48:05.3648700Z 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-08-14T20:48:05.3650270Z 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-08-14T20:48:05.3655750Z 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-08-14T20:48:05.3657160Z 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-08-14T20:48:05.3661660Z 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-08-14T20:48:05.3667860Z 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-08-14T20:48:05.3673020Z 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-08-14T20:48:05.3680290Z 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-08-14T20:48:05.3681200Z 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-08-14T20:48:05.3687960Z 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-08-14T20:48:05.3688770Z 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-08-14T20:48:05.3695740Z 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-08-14T20:48:05.3696590Z 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-08-14T20:48:05.3697710Z 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-08-14T20:48:05.3703610Z 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-08-14T20:48:05.3704300Z 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-08-14T20:48:05.3711040Z 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-08-14T20:48:05.3712410Z 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-08-14T20:48:05.3718350Z 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-08-14T20:48:05.3719090Z 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-08-14T20:48:05.3721060Z 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-08-14T20:48:05.3726460Z 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-08-14T20:48:05.3727310Z 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-08-14T20:48:05.3731010Z 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-08-14T20:48:05.3736950Z 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-08-14T20:48:05.3738910Z 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-08-14T20:48:05.3743890Z 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-08-14T20:48:05.3744820Z 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-08-14T20:48:05.3747720Z 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-08-14T20:48:05.3752660Z 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-08-14T20:48:05.3753400Z 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-08-14T20:48:05.3762140Z 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-08-14T20:48:05.3763070Z 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-08-14T20:48:05.3770370Z 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-08-14T20:48:05.3771320Z 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-08-14T20:48:05.3772350Z 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-08-14T20:48:05.3778520Z 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-08-14T20:48:05.3779670Z 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-08-14T20:48:05.3780660Z 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-08-14T20:48:05.3786800Z 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-08-14T20:48:05.3788210Z 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-08-14T20:48:05.3794660Z 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-08-14T20:48:05.3795500Z 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-08-14T20:48:05.3796620Z 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-08-14T20:48:05.3803920Z 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-08-14T20:48:05.3804890Z 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-08-14T20:48:05.3812140Z 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-08-14T20:48:05.3812950Z 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-08-14T20:48:05.3820080Z 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-08-14T20:48:05.3820840Z 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-08-14T20:48:05.3821880Z 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-08-14T20:48:05.3827460Z 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-08-14T20:48:05.3828880Z 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-08-14T20:48:05.3835400Z 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-08-14T20:48:05.3836360Z 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-08-14T20:48:05.3837470Z 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-08-14T20:48:05.3842740Z 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-08-14T20:48:05.3844160Z 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-08-14T20:48:05.3850720Z 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-08-14T20:48:05.3851850Z 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-08-14T20:48:05.3858420Z 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-08-14T20:48:05.3859320Z 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-08-14T20:48:05.3860480Z 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-08-14T20:48:05.3866630Z 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-08-14T20:48:05.3868090Z 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-08-14T20:48:05.3872510Z 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-08-14T20:48:05.3874170Z 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-08-14T20:48:05.3885350Z 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-08-14T20:48:05.3889780Z 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-08-14T20:48:05.3893490Z 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-08-14T20:48:05.3894390Z 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-08-14T20:48:05.3900000Z 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-08-14T20:48:05.3901690Z 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-08-14T20:48:05.3907570Z 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-08-14T20:48:05.3908330Z 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-08-14T20:48:05.3910880Z 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-08-14T20:48:05.3917100Z 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-08-14T20:48:05.3918050Z 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-08-14T20:48:05.3924690Z 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-08-14T20:48:05.3925830Z 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-08-14T20:48:05.3932640Z 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-08-14T20:48:05.3933320Z 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-08-14T20:48:05.3934390Z 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-08-14T20:48:05.3940560Z 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-08-14T20:48:05.3941380Z 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-08-14T20:48:05.3948430Z 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-08-14T20:48:05.3949230Z 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-08-14T20:48:05.3956850Z 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-08-14T20:48:05.3957610Z 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-08-14T20:48:05.3958810Z 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-08-14T20:48:05.3965110Z 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-08-14T20:48:05.3966060Z 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-08-14T20:48:05.3967250Z 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-08-14T20:48:05.3972710Z 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-08-14T20:48:05.3973650Z 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-08-14T20:48:05.3974870Z 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-08-14T20:48:05.3980790Z 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-08-14T20:48:05.3981800Z 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-08-14T20:48:05.3989550Z 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-08-14T20:48:05.3990460Z 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-08-14T20:48:05.3991590Z 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-08-14T20:48:05.3996780Z 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-08-14T20:48:05.3999170Z 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-08-14T20:48:05.4004860Z 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-08-14T20:48:05.4005960Z 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-08-14T20:48:05.4007790Z 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-08-14T20:48:05.4013690Z 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-08-14T20:48:05.4014520Z 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-08-14T20:48:05.4016580Z 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-08-14T20:48:05.4023360Z 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-08-14T20:48:05.4026390Z 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-08-14T20:48:05.4030630Z 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-08-14T20:48:05.4035290Z 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-08-14T20:48:05.4039570Z 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-08-14T20:48:05.4042290Z 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-08-14T20:48:05.4043350Z 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-08-14T20:48:05.4049110Z 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-08-14T20:48:05.4050890Z 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-08-14T20:48:05.4056920Z 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-08-14T20:48:05.4058040Z 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-08-14T20:48:05.4065690Z 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-08-14T20:48:05.4066670Z 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-08-14T20:48:05.4068250Z 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-08-14T20:48:05.4073440Z 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-08-14T20:48:05.4074360Z 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-08-14T20:48:05.4080830Z 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-08-14T20:48:05.4082140Z 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-08-14T20:48:05.4087100Z 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-08-14T20:48:05.4095920Z 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-08-14T20:48:05.4099450Z 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-08-14T20:48:05.4100470Z 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-08-14T20:48:05.4105470Z 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-08-14T20:48:05.4108290Z 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-08-14T20:48:05.4113200Z 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-08-14T20:48:05.4113980Z 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-08-14T20:48:05.4117980Z 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-08-14T20:48:05.4122070Z 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-08-14T20:48:05.4126700Z 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-08-14T20:48:05.4128540Z 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-08-14T20:48:05.4129660Z 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-08-14T20:48:05.4135490Z 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-08-14T20:48:05.4136980Z 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-08-14T20:48:05.4143010Z 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-08-14T20:48:05.4144100Z 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-08-14T20:48:05.4149970Z 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-08-14T20:48:05.4151220Z 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-08-14T20:48:05.4158230Z 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-08-14T20:48:05.4159270Z 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-08-14T20:48:05.4160410Z 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-08-14T20:48:05.4166180Z 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-08-14T20:48:05.4167330Z 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-08-14T20:48:05.4173150Z 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-08-14T20:48:05.4175580Z 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-08-14T20:48:05.4181050Z 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-08-14T20:48:05.4182100Z 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-08-14T20:48:05.4184370Z 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-08-14T20:48:05.4189210Z 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-08-14T20:48:05.4190670Z 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-08-14T20:48:05.4197320Z 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-08-14T20:48:05.4198230Z 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-08-14T20:48:05.4204450Z 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-08-14T20:48:05.4205700Z 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-08-14T20:48:05.4213280Z 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-08-14T20:48:05.4214180Z 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-08-14T20:48:05.4215310Z 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-08-14T20:48:05.4220910Z 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-08-14T20:48:05.4221940Z 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-08-14T20:48:05.4228630Z 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-08-14T20:48:05.4229400Z 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-08-14T20:48:05.4230420Z 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-08-14T20:48:05.4235930Z 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-08-14T20:48:05.4237320Z 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-08-14T20:48:05.4243530Z 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-08-14T20:48:05.4244950Z 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-08-14T20:48:05.4251230Z 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-08-14T20:48:05.4252360Z 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-08-14T20:48:05.4253380Z 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-08-14T20:48:05.4260650Z 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-08-14T20:48:05.4261460Z 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-08-14T20:48:05.4268390Z 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-08-14T20:48:05.4269500Z 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-08-14T20:48:05.4276660Z 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-08-14T20:48:05.4277450Z 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-08-14T20:48:05.4278580Z 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-08-14T20:48:05.4283960Z 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-08-14T20:48:05.4285130Z 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-08-14T20:48:05.4288610Z 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-08-14T20:48:05.4294230Z 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-08-14T20:48:05.4301710Z 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-08-14T20:48:05.4309440Z 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-08-14T20:48:05.4310830Z 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-08-14T20:48:05.4317420Z 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-08-14T20:48:05.4318360Z 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-08-14T20:48:05.4319460Z 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-08-14T20:48:05.4325010Z 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-08-14T20:48:05.4326170Z 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-08-14T20:48:05.4333780Z 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-08-14T20:48:05.4334480Z 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-08-14T20:48:05.4335600Z 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-08-14T20:48:05.4341810Z 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-08-14T20:48:05.4342700Z 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-08-14T20:48:05.4343850Z 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-08-14T20:48:05.4349800Z 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-08-14T20:48:05.4350700Z 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-08-14T20:48:05.4358080Z 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-08-14T20:48:05.4359500Z 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-08-14T20:48:05.4360820Z 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-08-14T20:48:05.4367720Z 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-08-14T20:48:05.4368510Z 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-08-14T20:48:05.4369660Z 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-08-14T20:48:05.4375400Z 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-08-14T20:48:05.4376230Z 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-08-14T20:48:05.4383070Z 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-08-14T20:48:05.4383920Z 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-08-14T20:48:05.4385050Z 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-08-14T20:48:05.4390860Z 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-08-14T20:48:05.4391910Z 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-08-14T20:48:05.4398870Z 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-08-14T20:48:05.4399900Z 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-08-14T20:48:05.4401010Z 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-08-14T20:48:05.4407090Z 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-08-14T20:48:05.4407830Z 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-08-14T20:48:05.4415410Z 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-08-14T20:48:05.4416640Z 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-08-14T20:48:05.4423930Z 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-08-14T20:48:05.4424700Z 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-08-14T20:48:05.4426040Z 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-08-14T20:48:05.4430740Z 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-08-14T20:48:05.4434070Z 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-08-14T20:48:05.4439140Z 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-08-14T20:48:05.4440010Z 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-08-14T20:48:05.4441380Z 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-08-14T20:48:05.4446730Z 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-08-14T20:48:05.4447330Z 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-08-14T20:48:05.4451210Z 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-08-14T20:48:05.4455140Z 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-08-14T20:48:05.4459750Z 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-08-14T20:48:05.4468230Z 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-08-14T20:48:05.4469500Z 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-08-14T20:48:05.4471760Z 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-08-14T20:48:05.4684520Z 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-08-14T20:48:05.4685520Z 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-08-14T20:48:05.4686650Z 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-08-14T20:48:05.4687930Z 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-08-14T20:48:05.4689190Z 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-08-14T20:48:05.4690310Z 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-08-14T20:48:05.4691410Z 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-08-14T20:48:05.4692600Z 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-08-14T20:48:05.4693940Z 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-08-14T20:48:05.4694950Z 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-08-14T20:48:05.4696130Z 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-08-14T20:48:05.4697410Z 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-08-14T20:48:05.4698650Z 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-08-14T20:48:05.4699900Z 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-08-14T20:48:05.4745150Z 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-08-14T20:48:05.4746040Z 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-08-14T20:48:05.4747190Z 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-08-14T20:48:05.4748240Z 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-08-14T20:48:05.4749560Z 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-08-14T20:48:05.4750540Z 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-08-14T20:48:05.4751800Z 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-08-14T20:48:05.4753010Z 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-08-14T20:48:05.4754160Z 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-08-14T20:48:05.4755350Z 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-08-14T20:48:05.4756430Z 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-08-14T20:48:05.4757700Z 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-08-14T20:48:05.4758900Z 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-08-14T20:48:05.4760090Z 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-08-14T20:48:05.4761180Z 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-08-14T20:48:05.4762370Z 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-08-14T20:48:05.4763780Z 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-08-14T20:48:05.4764940Z 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-08-14T20:48:05.4766020Z 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-08-14T20:48:05.4767140Z 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-08-14T20:48:05.4768370Z 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-08-14T20:48:05.4769490Z 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-08-14T20:48:05.4770580Z 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-08-14T20:48:05.4771800Z 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-08-14T20:48:05.4773140Z 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-08-14T20:48:05.4774440Z 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-08-14T20:48:05.4775250Z 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-08-14T20:48:05.4776440Z 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-08-14T20:48:05.4777610Z 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-08-14T20:48:05.4778780Z 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-08-14T20:48:05.4779980Z 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-08-14T20:48:05.4781240Z 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-08-14T20:48:05.4782330Z 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-08-14T20:48:05.4783380Z 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-08-14T20:48:05.4882390Z 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-08-14T20:48:05.4883240Z 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-08-14T20:48:05.4884440Z 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-08-14T20:48:05.4885640Z 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-08-14T20:48:05.4887000Z 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-08-14T20:48:05.4888240Z 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-08-14T20:48:05.4889420Z 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-08-14T20:48:05.4890580Z 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-08-14T20:48:05.4891640Z 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-08-14T20:48:05.4892710Z 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-08-14T20:48:05.4893790Z 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-08-14T20:48:05.4895640Z 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-08-14T20:48:05.4896450Z 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-08-14T20:48:05.4897340Z 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-08-14T20:48:05.4898360Z 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-08-14T20:48:05.4899510Z 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-08-14T20:48:05.4972510Z 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-08-14T20:48:05.4973410Z 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-08-14T20:48:05.4975500Z 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-08-14T20:48:05.4976300Z 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-08-14T20:48:05.4977090Z 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-08-14T20:48:05.4977950Z 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-08-14T20:48:05.4979240Z 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-08-14T20:48:05.4980310Z 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-08-14T20:48:05.4998850Z 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-08-14T20:48:05.4999970Z 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-08-14T20:48:05.5015660Z 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-08-14T20:48:05.5016540Z 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-08-14T20:48:05.5017620Z 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-08-14T20:48:05.5018820Z 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-08-14T20:48:05.5020130Z 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-08-14T20:48:05.5021160Z 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-08-14T20:48:05.5022330Z 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-08-14T20:48:05.5056730Z 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-08-14T20:48:05.5057770Z 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-08-14T20:48:05.5059020Z 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-08-14T20:48:05.5060150Z 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-08-14T20:48:05.5061210Z 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-08-14T20:48:05.5062370Z 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-08-14T20:48:05.5063530Z 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-08-14T20:48:05.5064670Z 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-08-14T20:48:05.5065860Z 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-08-14T20:48:05.5067080Z 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-08-14T20:48:05.5068350Z 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-08-14T20:48:05.5069640Z 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-08-14T20:48:05.5070780Z 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-08-14T20:48:05.5071920Z 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-08-14T20:48:05.5073050Z 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-08-14T20:48:05.5074240Z 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-08-14T20:48:05.5075400Z 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-08-14T20:48:05.5076550Z 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-08-14T20:48:05.5077650Z 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-08-14T20:48:05.5078770Z 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-08-14T20:48:05.5079940Z 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-08-14T20:48:05.5081130Z 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-08-14T20:48:05.5082450Z 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-08-14T20:48:05.5083670Z 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-08-14T20:48:05.5084720Z 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-08-14T20:48:05.5085870Z 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-08-14T20:48:05.5087010Z 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-08-14T20:48:05.5088180Z 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-08-14T20:48:05.5089420Z 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-08-14T20:48:05.5090720Z 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-08-14T20:48:05.5091910Z 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-08-14T20:48:05.5093160Z 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-08-14T20:48:05.5094400Z 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-08-14T20:48:05.5095770Z 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-08-14T20:48:05.5096890Z 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-08-14T20:48:05.5098140Z 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-08-14T20:48:05.5099400Z 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-08-14T20:48:05.5100630Z 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-08-14T20:48:05.5101970Z 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-08-14T20:48:05.5103210Z 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-08-14T20:48:05.5104340Z 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-08-14T20:48:05.5105650Z 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-08-14T20:48:05.5106820Z 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-08-14T20:48:05.5108020Z 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-08-14T20:48:05.5109270Z 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-08-14T20:48:05.5110360Z 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-08-14T20:48:05.5111720Z 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-08-14T20:48:05.5112960Z 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-08-14T20:48:05.5114120Z 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-08-14T20:48:05.5245370Z 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-08-14T20:48:05.5246140Z 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-08-14T20:48:05.5247230Z 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-08-14T20:48:05.5248340Z 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-08-14T20:48:05.5249620Z 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-08-14T20:48:05.5250700Z 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-08-14T20:48:05.5252040Z 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-08-14T20:48:05.5253280Z 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-08-14T20:48:05.5254400Z 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-08-14T20:48:05.5255550Z 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-08-14T20:48:05.5256750Z 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-08-14T20:48:05.5257780Z 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-08-14T20:48:05.5259190Z 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-08-14T20:48:05.5260300Z 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-08-14T20:48:05.5261340Z 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-08-14T20:48:05.5262530Z 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-08-14T20:48:05.5263710Z 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-08-14T20:48:05.5265050Z 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-08-14T20:48:05.5265970Z 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-08-14T20:48:05.5267140Z 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-08-14T20:48:05.5268350Z 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-08-14T20:48:05.5295630Z 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-08-14T20:48:05.5296560Z 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-08-14T20:48:05.5297730Z 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-08-14T20:48:05.5298860Z 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-08-14T20:48:05.5299960Z 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-08-14T20:48:05.5301040Z 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-08-14T20:48:05.5302180Z 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-08-14T20:48:05.5303260Z 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-08-14T20:48:05.5304500Z 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-08-14T20:48:05.5305600Z 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-08-14T20:48:05.5307030Z 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-08-14T20:48:05.5308120Z 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-08-14T20:48:05.5338850Z 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-08-14T20:48:05.5339720Z 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-08-14T20:48:05.5340920Z 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-08-14T20:48:05.5342060Z 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-08-14T20:48:05.5402130Z 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-08-14T20:48:05.5403300Z 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-08-14T20:48:05.5404410Z 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-08-14T20:48:05.5405610Z 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-08-14T20:48:05.5406890Z 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-08-14T20:48:05.5407990Z 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-08-14T20:48:05.5409130Z 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-08-14T20:48:05.5410290Z 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-08-14T20:48:05.5411370Z 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-08-14T20:48:05.5412580Z 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-08-14T20:48:05.5413840Z 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-08-14T20:48:05.5414930Z 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-08-14T20:48:05.5416090Z 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-08-14T20:48:05.5417380Z 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-08-14T20:48:05.5474160Z 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-08-14T20:48:05.5475050Z 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-08-14T20:48:05.5476380Z 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-08-14T20:48:05.5477600Z 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-08-14T20:48:05.5478720Z 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-08-14T20:48:05.5479830Z 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-08-14T20:48:05.5481010Z 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-08-14T20:48:05.5482240Z 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-08-14T20:48:05.5483500Z 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-08-14T20:48:05.5484470Z 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-08-14T20:48:05.5485710Z 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-08-14T20:48:05.5486930Z 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-08-14T20:48:05.5505830Z 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-08-14T20:48:05.5506620Z 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-08-14T20:48:05.5507720Z 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-08-14T20:48:05.5508840Z 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-08-14T20:48:05.5510010Z 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-08-14T20:48:05.5511190Z 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-08-14T20:48:05.5512200Z 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-08-14T20:48:05.5513380Z 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-08-14T20:48:05.5514500Z 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-08-14T20:48:05.5515950Z 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-08-14T20:48:05.5537430Z 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-08-14T20:48:05.5538280Z 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-08-14T20:48:05.5539510Z 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-08-14T20:48:05.5585340Z 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-08-14T20:48:05.5586350Z 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-08-14T20:48:05.5592240Z 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-08-14T20:48:05.5593180Z 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-08-14T20:48:05.5594380Z 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-08-14T20:48:05.5595510Z 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-08-14T20:48:05.5605190Z 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-08-14T20:48:05.5606130Z 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-08-14T20:48:05.5623790Z 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-08-14T20:48:05.5624620Z 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-08-14T20:48:05.5625720Z 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-08-14T20:48:05.5627060Z 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-08-14T20:48:05.5628080Z 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-08-14T20:48:05.5656910Z 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-08-14T20:48:05.5657810Z 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-08-14T20:48:05.5659310Z 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-08-14T20:48:05.5664430Z 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-08-14T20:48:05.5665490Z 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-08-14T20:48:05.5666650Z 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-08-14T20:48:05.5668000Z 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-08-14T20:48:05.5668990Z 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-08-14T20:48:05.5670160Z 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-08-14T20:48:05.5671330Z 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-08-14T20:48:05.5672360Z 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-08-14T20:48:05.5673530Z 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-08-14T20:48:05.5674960Z 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-08-14T20:48:05.5676060Z 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-08-14T20:48:05.5677050Z 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-08-14T20:48:05.5725430Z 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-08-14T20:48:05.5726260Z 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-08-14T20:48:05.5727250Z 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-08-14T20:48:05.5728250Z 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-08-14T20:48:05.5729410Z 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-08-14T20:48:05.5730650Z 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-08-14T20:48:05.5731880Z 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-08-14T20:48:05.5733070Z 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-08-14T20:48:05.5734120Z 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-08-14T20:48:05.5755980Z 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-08-14T20:48:05.5756820Z 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-08-14T20:48:05.5758060Z 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-08-14T20:48:05.5759280Z 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-08-14T20:48:05.5760300Z 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-08-14T20:48:05.5767500Z 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-08-14T20:48:05.5768380Z 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-08-14T20:48:05.5769560Z 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-08-14T20:48:05.5770590Z 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-08-14T20:48:05.5771880Z 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-08-14T20:48:05.5773130Z 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-08-14T20:48:05.5774310Z 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-08-14T20:48:05.5775490Z 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-08-14T20:48:05.5776610Z 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-08-14T20:48:05.5777810Z 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-08-14T20:48:05.5778990Z 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-08-14T20:48:05.5780050Z 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-08-14T20:48:05.5781320Z 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-08-14T20:48:05.5782370Z 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-08-14T20:48:05.5783610Z 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-08-14T20:48:05.5784780Z 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-08-14T20:48:05.5785900Z 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-08-14T20:48:05.5787090Z 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-08-14T20:48:05.5788200Z 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-08-14T20:48:05.5791220Z 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-08-14T20:48:05.5792120Z 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-08-14T20:48:05.5793260Z 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-08-14T20:48:05.5794360Z 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-08-14T20:48:05.5795590Z 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-08-14T20:48:05.5796720Z 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-08-14T20:48:05.5797960Z 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-08-14T20:48:05.5857280Z 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-08-14T20:48:05.5858320Z 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-08-14T20:48:05.5864580Z 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-08-14T20:48:05.5865470Z 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-08-14T20:48:05.5866360Z 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-08-14T20:48:05.5867240Z 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-08-14T20:48:05.5868190Z 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-08-14T20:48:05.5869080Z 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-08-14T20:48:05.5869900Z 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-08-14T20:48:05.5870710Z 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-08-14T20:48:05.5871610Z 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-08-14T20:48:05.5872490Z 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-08-14T20:48:05.5873350Z 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-08-14T20:48:05.5874060Z 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-08-14T20:48:05.5874760Z 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-08-14T20:48:05.5882680Z 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-08-14T20:48:05.5883490Z 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-08-14T20:48:05.5884590Z 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-08-14T20:48:05.5885620Z 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-08-14T20:48:05.5886740Z 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-08-14T20:48:05.5935520Z 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-08-14T20:48:05.5936410Z 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-08-14T20:48:05.5937490Z 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-08-14T20:48:05.5938610Z 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-08-14T20:48:05.5939720Z 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-08-14T20:48:05.5940780Z 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-08-14T20:48:05.5941880Z 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-08-14T20:48:05.5943100Z 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-08-14T20:48:05.5944190Z 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-08-14T20:48:05.5945240Z 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-08-14T20:48:05.5946390Z 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-08-14T20:48:05.5958220Z 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-08-14T20:48:05.5959030Z 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-08-14T20:48:05.5960230Z 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-08-14T20:48:05.5961360Z 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-08-14T20:48:05.5962410Z 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-08-14T20:48:05.5963600Z 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-08-14T20:48:05.5964720Z 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-08-14T20:48:05.5965880Z 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-08-14T20:48:05.5966960Z 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-08-14T20:48:05.5968100Z 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-08-14T20:48:05.5995010Z 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-08-14T20:48:05.5995890Z 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-08-14T20:48:05.5997080Z 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-08-14T20:48:05.5998070Z 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-08-14T20:48:05.5999170Z 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-08-14T20:48:05.6000290Z 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-08-14T20:48:05.6001550Z 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-08-14T20:48:05.6002640Z 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-08-14T20:48:05.6003780Z 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-08-14T20:48:05.6004940Z 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-08-14T20:48:05.6006090Z 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-08-14T20:48:05.6032220Z 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-08-14T20:48:05.6033050Z 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-08-14T20:48:05.6034240Z 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-08-14T20:48:05.6035410Z 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-08-14T20:48:05.6036520Z 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-08-14T20:48:05.6037760Z 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-08-14T20:48:05.6038830Z 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-08-14T20:48:05.6071720Z 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-08-14T20:48:05.6072910Z 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-08-14T20:48:05.6074290Z 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-08-14T20:48:05.6075410Z 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-08-14T20:48:05.6076700Z 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-08-14T20:48:05.6078120Z 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-08-14T20:48:05.6079470Z 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-08-14T20:48:05.6080780Z 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-08-14T20:48:05.6081970Z 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-08-14T20:48:05.6083340Z 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-08-14T20:48:05.6084850Z 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-08-14T20:48:05.6085910Z 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-08-14T20:48:05.6102380Z 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-08-14T20:48:05.6103330Z 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-08-14T20:48:05.6104480Z 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-08-14T20:48:05.6105610Z 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-08-14T20:48:05.6106810Z 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-08-14T20:48:05.6145220Z 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-08-14T20:48:05.6147060Z 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-08-14T20:48:05.6147890Z 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-08-14T20:48:05.6167700Z 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-08-14T20:48:05.6168530Z 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-08-14T20:48:05.6169610Z 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-08-14T20:48:05.6170740Z 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-08-14T20:48:05.6171840Z 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-08-14T20:48:05.6173010Z 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-08-14T20:48:05.6174090Z 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-08-14T20:48:05.6175410Z 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-08-14T20:48:05.6176370Z 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-08-14T20:48:05.6177540Z 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-08-14T20:48:05.6178550Z 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-08-14T20:48:05.6179690Z 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-08-14T20:48:05.6186600Z 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-08-14T20:48:05.6187480Z 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-08-14T20:48:05.6188470Z 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-08-14T20:48:05.6189580Z 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-08-14T20:48:05.6190910Z 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-08-14T20:48:05.6191920Z 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-08-14T20:48:05.6193050Z 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-08-14T20:48:05.6194440Z 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-08-14T20:48:05.6195480Z 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-08-14T20:48:05.6196780Z 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-08-14T20:48:05.6232250Z 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-08-14T20:48:05.6233180Z 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-08-14T20:48:05.6275180Z 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-08-14T20:48:05.6276220Z 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-08-14T20:48:05.6277960Z 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-08-14T20:48:05.6279170Z 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-08-14T20:48:05.6292010Z 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-08-14T20:48:05.6292900Z 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-08-14T20:48:05.6294120Z 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-08-14T20:48:05.6300380Z 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-08-14T20:48:05.6301160Z 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-08-14T20:48:05.6325060Z 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-08-14T20:48:05.6325910Z 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-08-14T20:48:05.6327250Z 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-08-14T20:48:05.6328470Z 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-08-14T20:48:05.6342120Z 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-08-14T20:48:05.6343070Z 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-08-14T20:48:05.6357800Z 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-08-14T20:48:05.6359020Z 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-08-14T20:48:05.6360120Z 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-08-14T20:48:05.6361370Z 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-08-14T20:48:05.6378640Z 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-08-14T20:48:05.6379490Z 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-08-14T20:48:05.6380590Z 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-08-14T20:48:05.6395420Z 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-08-14T20:48:05.6396320Z 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-08-14T20:48:05.6397410Z 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-08-14T20:48:05.6414910Z 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-08-14T20:48:05.6415700Z 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-08-14T20:48:05.6416950Z 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-08-14T20:48:05.6418120Z 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-08-14T20:48:05.6420210Z 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-08-14T20:48:05.6421190Z 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-08-14T20:48:05.6435190Z 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-08-14T20:48:05.6436200Z 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-08-14T20:48:05.6437210Z 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-08-14T20:48:05.6447690Z 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-08-14T20:48:05.6448580Z 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-08-14T20:48:05.6449750Z 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-08-14T20:48:05.6475600Z 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-08-14T20:48:05.6476510Z 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-08-14T20:48:05.6477710Z 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-08-14T20:48:05.6478830Z 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-08-14T20:48:05.6485140Z 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-08-14T20:48:05.6485980Z 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-08-14T20:48:05.6491730Z 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-08-14T20:48:05.6492620Z 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-08-14T20:48:05.6506540Z 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-08-14T20:48:05.6507390Z 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-08-14T20:48:05.6508440Z 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-08-14T20:48:05.6525470Z 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-08-14T20:48:05.6526380Z 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-08-14T20:48:05.6541970Z 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-08-14T20:48:05.6542810Z 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-08-14T20:48:05.6544080Z 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-08-14T20:48:05.6545130Z 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-08-14T20:48:05.6546280Z 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-08-14T20:48:05.6547320Z 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-08-14T20:48:05.6548600Z 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-08-14T20:48:05.6549680Z 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-08-14T20:48:05.6550890Z 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-08-14T20:48:05.6578830Z 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-08-14T20:48:05.6579730Z 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-08-14T20:48:05.6582660Z 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-08-14T20:48:05.6583870Z 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-08-14T20:48:05.6602620Z 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-08-14T20:48:05.6603440Z 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-08-14T20:48:05.6604630Z 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-08-14T20:48:05.6618630Z 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-08-14T20:48:05.6619530Z 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-08-14T20:48:05.6620630Z 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-08-14T20:48:05.6625600Z 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-08-14T20:48:05.6626420Z 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-08-14T20:48:05.6637980Z 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-08-14T20:48:05.6638860Z 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-08-14T20:48:05.6640050Z 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-08-14T20:48:05.6641240Z 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-08-14T20:48:05.6662120Z 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-08-14T20:48:05.6663020Z 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-08-14T20:48:05.6664120Z 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-08-14T20:48:05.6665370Z 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-08-14T20:48:05.6681860Z 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-08-14T20:48:05.6682650Z 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-08-14T20:48:05.6683820Z 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-08-14T20:48:05.6700420Z 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-08-14T20:48:05.6701210Z 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-08-14T20:48:05.6702490Z 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-08-14T20:48:05.6703540Z 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-08-14T20:48:05.6704690Z 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-08-14T20:48:05.6706340Z 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-08-14T20:48:05.6707670Z 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-08-14T20:48:05.6743430Z 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-08-14T20:48:05.6744300Z 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-08-14T20:48:05.6745500Z 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-08-14T20:48:05.6746710Z 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-08-14T20:48:05.6747980Z 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-08-14T20:48:05.6749370Z 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-08-14T20:48:05.6750520Z 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-08-14T20:48:05.6751670Z 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-08-14T20:48:05.6752930Z 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-08-14T20:48:05.6754000Z 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-08-14T20:48:05.6755110Z 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-08-14T20:48:05.6756130Z 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-08-14T20:48:05.6757340Z 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-08-14T20:48:05.6758480Z 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-08-14T20:48:05.6759740Z 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-08-14T20:48:05.6760790Z 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-08-14T20:48:05.6761830Z 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-08-14T20:48:05.6763050Z 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-08-14T20:48:05.6764220Z 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-08-14T20:48:05.6765230Z 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-08-14T20:48:05.6766460Z 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-08-14T20:48:05.6767640Z 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-08-14T20:48:05.6768650Z 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-08-14T20:48:05.6769740Z 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-08-14T20:48:05.6770870Z 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-08-14T20:48:05.6772050Z 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-08-14T20:48:05.6773230Z 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-08-14T20:48:05.6774230Z 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-08-14T20:48:05.6775540Z 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-08-14T20:48:05.6776700Z 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-08-14T20:48:05.6777830Z 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-08-14T20:48:05.6779380Z 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-08-14T20:48:05.6780130Z 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-08-14T20:48:05.6781240Z 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-08-14T20:48:05.6782420Z 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-08-14T20:48:05.6783480Z 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-08-14T20:48:05.6784640Z 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-08-14T20:48:05.6785730Z 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-08-14T20:48:05.6786930Z 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-08-14T20:48:05.6788040Z 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-08-14T20:48:05.6789180Z 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-08-14T20:48:05.6790330Z 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-08-14T20:48:05.6791560Z 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-08-14T20:48:05.6792610Z 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-08-14T20:48:05.6793860Z 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-08-14T20:48:05.6795030Z 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-08-14T20:48:05.6796170Z 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-08-14T20:48:05.6797320Z 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-08-14T20:48:05.6798380Z 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-08-14T20:48:05.6799420Z 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-08-14T20:48:05.6800620Z 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-08-14T20:48:05.6801750Z 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-08-14T20:48:05.6803080Z 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-08-14T20:48:05.6803990Z 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-08-14T20:48:05.6805190Z 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-08-14T20:48:05.6806350Z 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-08-14T20:48:05.6807690Z 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-08-14T20:48:05.6808650Z 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-08-14T20:48:05.6809870Z 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-08-14T20:48:05.6811020Z 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-08-14T20:48:05.6812140Z 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-08-14T20:48:05.6813210Z 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-08-14T20:48:05.6814330Z 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-08-14T20:48:05.6815490Z 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-08-14T20:48:05.6816630Z 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-08-14T20:48:05.6817750Z 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-08-14T20:48:05.6818930Z 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-08-14T20:48:05.6819860Z 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-08-14T20:48:05.6821070Z 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-08-14T20:48:05.6822240Z 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-08-14T20:48:05.6823400Z 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-08-14T20:48:05.6824440Z 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-08-14T20:48:05.6825680Z 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-08-14T20:48:05.6826830Z 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-08-14T20:48:05.6828130Z 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-08-14T20:48:05.6829320Z 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-08-14T20:48:05.6830450Z 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-08-14T20:48:05.6831670Z 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-08-14T20:48:05.6832950Z 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-08-14T20:48:05.6834020Z 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-08-14T20:48:05.6835090Z 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-08-14T20:48:05.6836470Z 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-08-14T20:48:05.6837740Z 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-08-14T20:48:05.6838900Z 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-08-14T20:48:05.6843290Z 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-08-14T20:48:05.6844210Z 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-08-14T20:48:05.6851430Z 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-08-14T20:48:05.6852700Z 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-08-14T20:48:05.6859750Z 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-08-14T20:48:05.6860740Z 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-08-14T20:48:05.6861790Z 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-08-14T20:48:05.6865790Z 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-08-14T20:48:05.6873460Z 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-08-14T20:48:05.6880420Z 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-08-14T20:48:05.6881290Z 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-08-14T20:48:05.6887900Z 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-08-14T20:48:05.6888830Z 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-08-14T20:48:05.6890010Z 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-08-14T20:48:05.6897130Z 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-08-14T20:48:05.6898030Z 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-08-14T20:48:05.6905570Z 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-08-14T20:48:05.6906300Z 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-08-14T20:48:05.6913610Z 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-08-14T20:48:05.6914470Z 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-08-14T20:48:05.6915600Z 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-08-14T20:48:05.6922260Z 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-08-14T20:48:05.6923580Z 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-08-14T20:48:05.6930390Z 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-08-14T20:48:05.6931160Z 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-08-14T20:48:05.6932300Z 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-08-14T20:48:05.6937390Z 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-08-14T20:48:05.6940540Z 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-08-14T20:48:05.6946760Z 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-08-14T20:48:05.6947560Z 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-08-14T20:48:05.6955010Z 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-08-14T20:48:05.6955810Z 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-08-14T20:48:05.6962210Z 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-08-14T20:48:05.6963070Z 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-08-14T20:48:05.6964120Z 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-08-14T20:48:05.6970110Z 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-08-14T20:48:05.6971480Z 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-08-14T20:48:05.6978090Z 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-08-14T20:48:05.6979400Z 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-08-14T20:48:05.6980540Z 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-08-14T20:48:05.6987090Z 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-08-14T20:48:05.6988020Z 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-08-14T20:48:05.6994510Z 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-08-14T20:48:05.6995630Z 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-08-14T20:48:05.7002290Z 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-08-14T20:48:05.7003010Z 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-08-14T20:48:05.7004280Z 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-08-14T20:48:05.7009990Z 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-08-14T20:48:05.7010820Z 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-08-14T20:48:05.7017810Z 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-08-14T20:48:05.7019050Z 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-08-14T20:48:05.7025240Z 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-08-14T20:48:05.7026070Z 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-08-14T20:48:05.7027280Z 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-08-14T20:48:05.7032890Z 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-08-14T20:48:05.7033560Z 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-08-14T20:48:05.7040680Z 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-08-14T20:48:05.7042990Z 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-08-14T20:48:05.7046480Z 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-08-14T20:48:05.7053750Z 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-08-14T20:48:05.7055230Z 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-08-14T20:48:05.7058580Z 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-08-14T20:48:05.7063880Z 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-08-14T20:48:05.7064900Z 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-08-14T20:48:05.7067710Z 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-08-14T20:48:05.7073630Z 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-08-14T20:48:05.7075940Z 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-08-14T20:48:05.7078390Z 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-08-14T20:48:05.7084000Z 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-08-14T20:48:05.7087730Z 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-08-14T20:48:05.7091180Z 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-08-14T20:48:05.7096760Z 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-08-14T20:48:05.7099180Z 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-08-14T20:48:05.7104390Z 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-08-14T20:48:05.7105230Z 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-08-14T20:48:05.7107020Z 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-08-14T20:48:05.7112900Z 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-08-14T20:48:05.7113880Z 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-08-14T20:48:05.7114960Z 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-08-14T20:48:05.7120980Z 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-08-14T20:48:05.7121840Z 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-08-14T20:48:05.7124550Z 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-08-14T20:48:05.7129640Z 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-08-14T20:48:05.7130510Z 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-08-14T20:48:05.7137650Z 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-08-14T20:48:05.7138840Z 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-08-14T20:48:05.7141980Z 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-08-14T20:48:05.7146830Z 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-08-14T20:48:05.7150760Z 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-08-14T20:48:05.7156660Z 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-08-14T20:48:05.7158970Z 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-08-14T20:48:05.7163940Z 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-08-14T20:48:05.7164670Z 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-08-14T20:48:05.7167680Z 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-08-14T20:48:05.7172760Z 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-08-14T20:48:05.7173660Z 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-08-14T20:48:05.7180430Z 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-08-14T20:48:05.7181360Z 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-08-14T20:48:05.7188400Z 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-08-14T20:48:05.7189030Z 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-08-14T20:48:05.7190340Z 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-08-14T20:48:05.7195880Z 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-08-14T20:48:05.7197410Z 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-08-14T20:48:05.7204610Z 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-08-14T20:48:05.7205330Z 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-08-14T20:48:05.7212670Z 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-08-14T20:48:05.7213420Z 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-08-14T20:48:05.7214800Z 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-08-14T20:48:05.7220700Z 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-08-14T20:48:05.7227980Z 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-08-14T20:48:05.7229500Z 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-08-14T20:48:05.7230630Z 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-08-14T20:48:05.7237480Z 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-08-14T20:48:05.7238330Z 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-08-14T20:48:05.7245340Z 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-08-14T20:48:05.7246120Z 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-08-14T20:48:05.7253340Z 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-08-14T20:48:05.7254120Z 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-08-14T20:48:05.7255280Z 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-08-14T20:48:05.7257900Z 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-08-14T20:48:05.7262120Z 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-08-14T20:48:05.7266460Z 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-08-14T20:48:05.7270260Z 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-08-14T20:48:05.7276080Z 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-08-14T20:48:05.7277530Z 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-08-14T20:48:05.7283780Z 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-08-14T20:48:05.7284490Z 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-08-14T20:48:05.7287680Z 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-08-14T20:48:05.7293100Z 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-08-14T20:48:05.7299710Z 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-08-14T20:48:05.7301580Z 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-08-14T20:48:05.7307350Z 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-08-14T20:48:05.7308870Z 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-08-14T20:48:05.7310740Z 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-08-14T20:48:05.7316160Z 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-08-14T20:48:05.7316990Z 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-08-14T20:48:05.7324350Z 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-08-14T20:48:05.7324970Z 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-08-14T20:48:05.7331950Z 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-08-14T20:48:05.7332990Z 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-08-14T20:48:05.7334130Z 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-08-14T20:48:05.7339370Z 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-08-14T20:48:05.7341000Z 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-08-14T20:48:05.7346980Z 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-08-14T20:48:05.7348400Z 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-08-14T20:48:05.7355190Z 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-08-14T20:48:05.7355870Z 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-08-14T20:48:05.7363230Z 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-08-14T20:48:05.7364210Z 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-08-14T20:48:05.7371080Z 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-08-14T20:48:05.7372490Z 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-08-14T20:48:05.7379280Z 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-08-14T20:48:05.7380020Z 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-08-14T20:48:05.7381230Z 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-08-14T20:48:05.7386180Z 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-08-14T20:48:05.7387570Z 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-08-14T20:48:05.7394550Z 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-08-14T20:48:05.7395330Z 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-08-14T20:48:05.7402390Z 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-08-14T20:48:05.7403280Z 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-08-14T20:48:05.7404390Z 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-08-14T20:48:05.7409980Z 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-08-14T20:48:05.7412020Z 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-08-14T20:48:05.7418000Z 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-08-14T20:48:05.7419440Z 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-08-14T20:48:05.7421090Z 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-08-14T20:48:05.7426960Z 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-08-14T20:48:05.7427930Z 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-08-14T20:48:05.7429640Z 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-08-14T20:48:05.7436300Z 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-08-14T20:48:05.7438850Z 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-08-14T20:48:05.7443420Z 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-08-14T20:48:05.7444640Z 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-08-14T20:48:05.7448070Z 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-08-14T20:48:05.7453190Z 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-08-14T20:48:05.7456100Z 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-08-14T20:48:05.7460890Z 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-08-14T20:48:05.7461770Z 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-08-14T20:48:05.7465100Z 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-08-14T20:48:05.7469690Z 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-08-14T20:48:05.7470430Z 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-08-14T20:48:05.7478930Z 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-08-14T20:48:05.7482850Z 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-08-14T20:48:05.7486810Z 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-08-14T20:48:05.7487850Z 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-08-14T20:48:05.7492110Z 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-08-14T20:48:05.7499140Z 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-08-14T20:48:05.7500150Z 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-08-14T20:48:05.7503280Z 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-08-14T20:48:05.7508180Z 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-08-14T20:48:05.7512490Z 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-08-14T20:48:05.7514440Z 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-08-14T20:48:05.7520630Z 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-08-14T20:48:05.7521490Z 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-08-14T20:48:05.7524020Z 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-08-14T20:48:05.7530340Z 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-08-14T20:48:05.7531120Z 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-08-14T20:48:05.7537830Z 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-08-14T20:48:05.7539070Z 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-08-14T20:48:05.7545860Z 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-08-14T20:48:05.7546620Z 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-08-14T20:48:05.7547700Z 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-08-14T20:48:05.7553300Z 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-08-14T20:48:05.7554600Z 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-08-14T20:48:05.7558170Z 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-08-14T20:48:05.7562640Z 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-08-14T20:48:05.7565000Z 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-08-14T20:48:05.7570400Z 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-08-14T20:48:05.7571180Z 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-08-14T20:48:05.7573930Z 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-08-14T20:48:05.7579760Z 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-08-14T20:48:05.7582030Z 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-08-14T20:48:05.7587230Z 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-08-14T20:48:05.7588310Z 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-08-14T20:48:05.7590070Z 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-08-14T20:48:05.7596890Z 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-08-14T20:48:05.7598270Z 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-08-14T20:48:05.7605120Z 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-08-14T20:48:05.7606030Z 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-08-14T20:48:05.7607220Z 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-08-14T20:48:05.7613730Z 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-08-14T20:48:05.7621610Z 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-08-14T20:48:05.7629780Z 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-08-14T20:48:05.7630750Z 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-08-14T20:48:05.7631920Z 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-08-14T20:48:05.7637610Z 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-08-14T20:48:05.7638960Z 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-08-14T20:48:05.7645300Z 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-08-14T20:48:05.7646080Z 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-08-14T20:48:05.7647390Z 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-08-14T20:48:05.7653220Z 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-08-14T20:48:05.7654150Z 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-08-14T20:48:05.7661000Z 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-08-14T20:48:05.7662400Z 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-08-14T20:48:05.7669010Z 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-08-14T20:48:05.7670020Z 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-08-14T20:48:05.7671180Z 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-08-14T20:48:05.7674470Z 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-08-14T20:48:05.7678520Z 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-08-14T20:48:05.7685930Z 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-08-14T20:48:05.7687040Z 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-08-14T20:48:05.7692520Z 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-08-14T20:48:05.7695800Z 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-08-14T20:48:05.7697390Z 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-08-14T20:48:05.7703660Z 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-08-14T20:48:05.7711100Z 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-08-14T20:48:05.7712290Z 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-08-14T20:48:05.7718720Z 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-08-14T20:48:05.7719440Z 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-08-14T20:48:05.7720620Z 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-08-14T20:48:05.7727220Z 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-08-14T20:48:05.7728410Z 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-08-14T20:48:05.7734770Z 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-08-14T20:48:05.7736230Z 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-08-14T20:48:05.7737380Z 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-08-14T20:48:05.7744710Z 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-08-14T20:48:05.7745610Z 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-08-14T20:48:05.7752170Z 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-08-14T20:48:05.7752910Z 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-08-14T20:48:05.7760540Z 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-08-14T20:48:05.7761500Z 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-08-14T20:48:05.7762730Z 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-08-14T20:48:05.7768980Z 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-08-14T20:48:05.7769800Z 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-08-14T20:48:05.7777130Z 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-08-14T20:48:05.7778040Z 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-08-14T20:48:05.7982570Z 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-08-14T20:48:05.7983470Z 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-08-14T20:48:05.7984500Z 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-08-14T20:48:05.8015120Z 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-08-14T20:48:05.8015970Z 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-08-14T20:48:05.8017060Z 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-08-14T20:48:05.8018250Z 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-08-14T20:48:05.8019280Z 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-08-14T20:48:05.8020600Z 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-08-14T20:48:05.8021670Z 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-08-14T20:48:05.8022760Z 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-08-14T20:48:05.8023980Z 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-08-14T20:48:05.8024980Z 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-08-14T20:48:05.8026070Z 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-08-14T20:48:05.8027290Z 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-08-14T20:48:05.8028320Z 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-08-14T20:48:05.8029460Z 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-08-14T20:48:05.8030680Z 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-08-14T20:48:05.8031810Z 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-08-14T20:48:05.8032940Z 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-08-14T20:48:05.8034110Z 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-08-14T20:48:05.8035240Z 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-08-14T20:48:05.8036330Z 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-08-14T20:48:05.8037490Z 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-08-14T20:48:05.8038550Z 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-08-14T20:48:05.8039780Z 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-08-14T20:48:05.8040850Z 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-08-14T20:48:05.8041950Z 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-08-14T20:48:05.8043020Z 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-08-14T20:48:05.8044160Z 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-08-14T20:48:05.8045330Z 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-08-14T20:48:05.8046410Z 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-08-14T20:48:05.8047650Z 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-08-14T20:48:05.8048610Z 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-08-14T20:48:05.8049830Z 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-08-14T20:48:05.8050960Z 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-08-14T20:48:05.8052090Z 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-08-14T20:48:05.8053310Z 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-08-14T20:48:05.8054440Z 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-08-14T20:48:05.8055570Z 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-08-14T20:48:05.8056740Z 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-08-14T20:48:05.8057900Z 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-08-14T20:48:05.8058930Z 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-08-14T20:48:05.8060120Z 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-08-14T20:48:05.8061150Z 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-08-14T20:48:05.8062250Z 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-08-14T20:48:05.8063320Z 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-08-14T20:48:05.8064500Z 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-08-14T20:48:05.8065530Z 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-08-14T20:48:05.8066700Z 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-08-14T20:48:05.8067970Z 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-08-14T20:48:05.8068960Z 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-08-14T20:48:05.8070120Z 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-08-14T20:48:05.8071170Z 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-08-14T20:48:05.8072370Z 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-08-14T20:48:05.8073430Z 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-08-14T20:48:05.8074540Z 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-08-14T20:48:05.8075730Z 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-08-14T20:48:05.8076890Z 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-08-14T20:48:05.8078110Z 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-08-14T20:48:05.8079350Z 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-08-14T20:48:05.8080520Z 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-08-14T20:48:05.8081800Z 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-08-14T20:48:05.8083030Z 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-08-14T20:48:05.8084150Z 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-08-14T20:48:05.8085430Z 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-08-14T20:48:05.8086670Z 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-08-14T20:48:05.8087920Z 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-08-14T20:48:05.8088890Z 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-08-14T20:48:05.8089980Z 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-08-14T20:48:05.8091280Z 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-08-14T20:48:05.8092370Z 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-08-14T20:48:05.8093580Z 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-08-14T20:48:05.8094650Z 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-08-14T20:48:05.8095920Z 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-08-14T20:48:05.8097170Z 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-08-14T20:48:05.8098270Z 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-08-14T20:48:05.8099650Z 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-08-14T20:48:05.8100690Z 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-08-14T20:48:05.8101970Z 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-08-14T20:48:05.8103280Z 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-08-14T20:48:05.8104590Z 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-08-14T20:48:05.8105810Z 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-08-14T20:48:05.8106960Z 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-08-14T20:48:05.8108250Z 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-08-14T20:48:05.8112440Z 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-08-14T20:48:05.8113990Z 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-08-14T20:48:05.8327300Z 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-08-14T20:48:05.8328470Z 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-08-14T20:48:05.8329700Z 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-08-14T20:48:05.8330850Z 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-08-14T20:48:05.8332120Z 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-08-14T20:48:05.8333130Z 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-08-14T20:48:05.8334220Z 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-08-14T20:48:05.8335470Z 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-08-14T20:48:05.8336620Z 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-08-14T20:48:05.8338000Z 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-08-14T20:48:05.8338970Z 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-08-14T20:48:05.8340170Z 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-08-14T20:48:05.8341310Z 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-08-14T20:48:05.8342670Z 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-08-14T20:48:05.8344040Z 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-08-14T20:48:05.8345150Z 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-08-14T20:48:05.8346190Z 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-08-14T20:48:05.8347370Z 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-08-14T20:48:05.8348430Z 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-08-14T20:48:05.8349500Z 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-08-14T20:48:05.8350630Z 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-08-14T20:48:05.8351690Z 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-08-14T20:48:05.8352890Z 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-08-14T20:48:05.8354120Z 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-08-14T20:48:05.8355110Z 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-08-14T20:48:05.8356170Z 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-08-14T20:48:05.8357310Z 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-08-14T20:48:05.8358410Z 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-08-14T20:48:05.8359520Z 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-08-14T20:48:05.8360650Z 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-08-14T20:48:05.8361780Z 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-08-14T20:48:05.8362920Z 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-08-14T20:48:05.8363900Z 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-08-14T20:48:05.8364970Z 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-08-14T20:48:05.8366050Z 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-08-14T20:48:05.8367230Z 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-08-14T20:48:05.8368270Z 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-08-14T20:48:05.8369520Z 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-08-14T20:48:05.8370650Z 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-08-14T20:48:05.8371850Z 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-08-14T20:48:05.8373130Z 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-08-14T20:48:05.8374210Z 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-08-14T20:48:05.8375610Z 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-08-14T20:48:05.8376780Z 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-08-14T20:48:05.8377900Z 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-08-14T20:48:05.8379150Z 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-08-14T20:48:05.8380260Z 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-08-14T20:48:05.8381390Z 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-08-14T20:48:05.8382600Z 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-08-14T20:48:05.8383870Z 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-08-14T20:48:05.8385040Z 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-08-14T20:48:05.8386240Z 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-08-14T20:48:05.8387560Z 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-08-14T20:48:05.8388940Z 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-08-14T20:48:05.8531810Z 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-08-14T20:48:05.8533050Z 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-08-14T20:48:05.8534120Z 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-08-14T20:48:05.8535340Z 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-08-14T20:48:05.8536520Z 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-08-14T20:48:05.8537660Z 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-08-14T20:48:05.8538860Z 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-08-14T20:48:05.8539960Z 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-08-14T20:48:05.8541250Z 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-08-14T20:48:05.8542410Z 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-08-14T20:48:05.8543600Z 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-08-14T20:48:05.8544640Z 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-08-14T20:48:05.8545880Z 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-08-14T20:48:05.8547130Z 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-08-14T20:48:05.8548270Z 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-08-14T20:48:05.8549480Z 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-08-14T20:48:05.8550580Z 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-08-14T20:48:05.8551670Z 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-08-14T20:48:05.8552800Z 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-08-14T20:48:05.8554420Z 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-08-14T20:48:05.8555670Z 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-08-14T20:48:05.8557030Z 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-08-14T20:48:05.8558000Z 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-08-14T20:48:05.8559200Z 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-08-14T20:48:05.8560350Z 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-08-14T20:48:05.8561340Z 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-08-14T20:48:05.8562510Z 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-08-14T20:48:05.8563600Z 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-08-14T20:48:05.8564730Z 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-08-14T20:48:05.8565810Z 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-08-14T20:48:05.8566910Z 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-08-14T20:48:05.8568000Z 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-08-14T20:48:05.8569180Z 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-08-14T20:48:05.8570280Z 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-08-14T20:48:05.8571430Z 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-08-14T20:48:05.8572430Z 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-08-14T20:48:05.8573590Z 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-08-14T20:48:05.8574630Z 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-08-14T20:48:05.8575700Z 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-08-14T20:48:05.8576770Z 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-08-14T20:48:05.8578110Z 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-08-14T20:48:05.8611280Z 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-08-14T20:48:05.8612230Z 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-08-14T20:48:05.8613350Z 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-08-14T20:48:05.8614520Z 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-08-14T20:48:05.8615570Z 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-08-14T20:48:05.8616730Z 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-08-14T20:48:05.8618010Z 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-08-14T20:48:05.8619230Z 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-08-14T20:48:05.8620250Z 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-08-14T20:48:05.8621340Z 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-08-14T20:48:05.8622450Z 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-08-14T20:48:05.8623640Z 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-08-14T20:48:05.8624880Z 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-08-14T20:48:05.8625860Z 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-08-14T20:48:05.8627170Z 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-08-14T20:48:05.8628180Z 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-08-14T20:48:05.8629400Z 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-08-14T20:48:05.8630450Z 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-08-14T20:48:05.8631690Z 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-08-14T20:48:05.8632870Z 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-08-14T20:48:05.8633950Z 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-08-14T20:48:05.8635400Z 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-08-14T20:48:05.8636630Z 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-08-14T20:48:05.8637390Z 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-08-14T20:48:05.8638640Z 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-08-14T20:48:05.8639740Z 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-08-14T20:48:05.8640840Z 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-08-14T20:48:05.8641920Z 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-08-14T20:48:05.8643180Z 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-08-14T20:48:05.8644260Z 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-08-14T20:48:05.8645350Z 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-08-14T20:48:05.8646720Z 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-08-14T20:48:05.8647960Z 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-08-14T20:48:05.8649390Z 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-08-14T20:48:05.8650610Z 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-08-14T20:48:05.8651980Z 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-08-14T20:48:05.8653320Z 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-08-14T20:48:05.8654490Z 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-08-14T20:48:05.8655680Z 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-08-14T20:48:05.8656790Z 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-08-14T20:48:05.8658210Z 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-08-14T20:48:05.8659450Z 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-08-14T20:48:05.8660580Z 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-08-14T20:48:05.8661820Z 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-08-14T20:48:05.8662970Z 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-08-14T20:48:05.8664160Z 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-08-14T20:48:05.8665420Z 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-08-14T20:48:05.8666640Z 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-08-14T20:48:05.8667800Z 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-08-14T20:48:05.8880640Z 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-08-14T20:48:05.8881440Z 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-08-14T20:48:05.8882600Z 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-08-14T20:48:05.8884060Z 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-08-14T20:48:05.8884970Z 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-08-14T20:48:05.8886070Z 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-08-14T20:48:05.8887330Z 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-08-14T20:48:05.8888510Z 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-08-14T20:48:05.8889620Z 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-08-14T20:48:05.8890710Z 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-08-14T20:48:05.8892040Z 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-08-14T20:48:05.8893060Z 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-08-14T20:48:05.8894090Z 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-08-14T20:48:05.8895360Z 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-08-14T20:48:05.8896510Z 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-08-14T20:48:05.8897690Z 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-08-14T20:48:05.8898990Z 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-08-14T20:48:05.8900200Z 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-08-14T20:48:05.8901240Z 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-08-14T20:48:05.8902460Z 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-08-14T20:48:05.8903500Z 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-08-14T20:48:05.8904710Z 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-08-14T20:48:05.8905940Z 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-08-14T20:48:05.8907090Z 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-08-14T20:48:05.8908260Z 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-08-14T20:48:05.8909480Z 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-08-14T20:48:05.8910540Z 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-08-14T20:48:05.8911690Z 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-08-14T20:48:05.8912900Z 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-08-14T20:48:05.8914120Z 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-08-14T20:48:05.8915250Z 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-08-14T20:48:05.8916370Z 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-08-14T20:48:05.8917420Z 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-08-14T20:48:05.8918580Z 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-08-14T20:48:05.8919800Z 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-08-14T20:48:05.8921040Z 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-08-14T20:48:05.8922100Z 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-08-14T20:48:05.8923280Z 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-08-14T20:48:05.8924380Z 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-08-14T20:48:05.8925530Z 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-08-14T20:48:05.8926780Z 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-08-14T20:48:05.8927790Z 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-08-14T20:48:05.8929010Z 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-08-14T20:48:05.8930480Z 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-08-14T20:48:05.8931700Z 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-08-14T20:48:05.8932800Z 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-08-14T20:48:05.8934020Z 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-08-14T20:48:05.8935190Z 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-08-14T20:48:05.8936320Z 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-08-14T20:48:05.8937410Z 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-08-14T20:48:05.8938580Z 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-08-14T20:48:05.8939750Z 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-08-14T20:48:05.8940760Z 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-08-14T20:48:05.8941930Z 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-08-14T20:48:05.8943070Z 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-08-14T20:48:05.8944130Z 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-08-14T20:48:05.8945270Z 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-08-14T20:48:05.8946480Z 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-08-14T20:48:05.8947530Z 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-08-14T20:48:05.8948640Z 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-08-14T20:48:05.8949770Z 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-08-14T20:48:05.8950960Z 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-08-14T20:48:05.8952300Z 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-08-14T20:48:05.8953550Z 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-08-14T20:48:05.8954680Z 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-08-14T20:48:05.8955930Z 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-08-14T20:48:05.8957180Z 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-08-14T20:48:05.8958280Z 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-08-14T20:48:05.8959540Z 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-08-14T20:48:05.8960710Z 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-08-14T20:48:05.8961930Z 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-08-14T20:48:05.8963190Z 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-08-14T20:48:05.8964360Z 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-08-14T20:48:05.8965500Z 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-08-14T20:48:05.8967660Z 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-08-14T20:48:05.8968010Z 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-08-14T20:48:05.8969450Z 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-08-14T20:48:05.8970790Z 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-08-14T20:48:05.8972040Z 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-08-14T20:48:05.8973470Z 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-08-14T20:48:05.8974550Z 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-08-14T20:48:05.8975830Z 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-08-14T20:48:05.8977000Z 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-08-14T20:48:05.8983520Z 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-08-14T20:48:05.8984960Z 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-08-14T20:48:05.8991680Z 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-08-14T20:48:05.8992590Z 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-08-14T20:48:05.8993790Z 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-08-14T20:48:05.8999690Z 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-08-14T20:48:05.9000780Z 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-08-14T20:48:05.9007530Z 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-08-14T20:48:05.9008580Z 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-08-14T20:48:05.9018450Z 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-08-14T20:48:05.9019090Z 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-08-14T20:48:05.9019450Z 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-08-14T20:48:05.9022880Z 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-08-14T20:48:05.9023730Z 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-08-14T20:48:05.9026260Z 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-08-14T20:48:05.9030730Z 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-08-14T20:48:05.9031770Z 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-08-14T20:48:05.9036100Z 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-08-14T20:48:05.9039700Z 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-08-14T20:48:05.9040580Z 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-08-14T20:48:05.9045400Z 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-08-14T20:48:05.9048290Z 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-08-14T20:48:05.9053790Z 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-08-14T20:48:05.9054680Z 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-08-14T20:48:05.9057350Z 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-08-14T20:48:05.9063340Z 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-08-14T20:48:05.9065140Z 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-08-14T20:48:05.9071020Z 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-08-14T20:48:05.9072150Z 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-08-14T20:48:05.9073530Z 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-08-14T20:48:05.9080560Z 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-08-14T20:48:05.9081680Z 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-08-14T20:48:05.9087480Z 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-08-14T20:48:05.9088430Z 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-08-14T20:48:05.9089690Z 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-08-14T20:48:05.9097660Z 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-08-14T20:48:05.9098480Z 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-08-14T20:48:05.9104900Z 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-08-14T20:48:05.9106180Z 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-08-14T20:48:05.9112790Z 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-08-14T20:48:05.9113570Z 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-08-14T20:48:05.9325130Z 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-08-14T20:48:05.9326130Z 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-08-14T20:48:05.9341610Z 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-08-14T20:48:05.9342580Z 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-08-14T20:48:05.9343890Z 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-08-14T20:48:05.9345000Z 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-08-14T20:48:05.9346260Z 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-08-14T20:48:05.9347380Z 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-08-14T20:48:05.9353150Z 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-08-14T20:48:05.9353960Z 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-08-14T20:48:05.9355230Z 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-08-14T20:48:05.9356310Z 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-08-14T20:48:05.9357510Z 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-08-14T20:48:05.9376900Z 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-08-14T20:48:05.9377660Z 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-08-14T20:48:05.9378770Z 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-08-14T20:48:05.9379950Z 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-08-14T20:48:05.9381200Z 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-08-14T20:48:05.9382290Z 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-08-14T20:48:05.9397730Z 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-08-14T20:48:05.9398450Z 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-08-14T20:48:05.9399670Z 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-08-14T20:48:05.9400880Z 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-08-14T20:48:05.9402180Z 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-08-14T20:48:05.9418920Z 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-08-14T20:48:05.9419710Z 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-08-14T20:48:05.9420860Z 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-08-14T20:48:05.9422010Z 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-08-14T20:48:05.9423250Z 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-08-14T20:48:05.9424400Z 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-08-14T20:48:05.9425440Z 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-08-14T20:48:05.9426610Z 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-08-14T20:48:05.9427930Z 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-08-14T20:48:05.9429090Z 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-08-14T20:48:05.9430170Z 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-08-14T20:48:05.9431240Z 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-08-14T20:48:05.9432370Z 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-08-14T20:48:05.9433610Z 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-08-14T20:48:05.9441920Z 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-08-14T20:48:05.9442720Z 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-08-14T20:48:05.9443980Z 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-08-14T20:48:05.9445080Z 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-08-14T20:48:05.9488810Z 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-08-14T20:48:05.9490040Z 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-08-14T20:48:05.9491330Z 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-08-14T20:48:05.9492820Z 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-08-14T20:48:05.9494030Z 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-08-14T20:48:05.9495270Z 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-08-14T20:48:05.9496440Z 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-08-14T20:48:05.9510350Z 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-08-14T20:48:05.9511290Z 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-08-14T20:48:05.9512450Z 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-08-14T20:48:05.9513520Z 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-08-14T20:48:05.9552650Z 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-08-14T20:48:05.9553630Z 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-08-14T20:48:05.9554850Z 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-08-14T20:48:05.9555950Z 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-08-14T20:48:05.9557060Z 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-08-14T20:48:05.9558310Z 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-08-14T20:48:05.9559440Z 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-08-14T20:48:05.9560670Z 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-08-14T20:48:05.9561910Z 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-08-14T20:48:05.9562920Z 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-08-14T20:48:05.9564000Z 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-08-14T20:48:05.9565240Z 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-08-14T20:48:05.9566380Z 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-08-14T20:48:05.9567430Z 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-08-14T20:48:05.9568630Z 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-08-14T20:48:05.9569750Z 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-08-14T20:48:05.9570930Z 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-08-14T20:48:05.9572240Z 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-08-14T20:48:05.9573320Z 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-08-14T20:48:05.9574530Z 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-08-14T20:48:05.9575720Z 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-08-14T20:48:05.9576970Z 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-08-14T20:48:05.9578210Z 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-08-14T20:48:05.9579390Z 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-08-14T20:48:05.9580400Z 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-08-14T20:48:05.9581550Z 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-08-14T20:48:05.9582880Z 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-08-14T20:48:05.9584030Z 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-08-14T20:48:05.9585180Z 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-08-14T20:48:05.9586310Z 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-08-14T20:48:05.9587700Z 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-08-14T20:48:05.9588730Z 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-08-14T20:48:05.9589870Z 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-08-14T20:48:05.9591010Z 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-08-14T20:48:05.9592090Z 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-08-14T20:48:05.9593230Z 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-08-14T20:48:05.9594380Z 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-08-14T20:48:05.9595430Z 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-08-14T20:48:05.9596700Z 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-08-14T20:48:05.9597820Z 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-08-14T20:48:05.9598860Z 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-08-14T20:48:05.9599950Z 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-08-14T20:48:05.9601010Z 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-08-14T20:48:05.9602120Z 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-08-14T20:48:05.9603260Z 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-08-14T20:48:05.9604260Z 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-08-14T20:48:05.9605350Z 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-08-14T20:48:05.9606530Z 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-08-14T20:48:05.9607810Z 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-08-14T20:48:05.9609020Z 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-08-14T20:48:05.9610230Z 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-08-14T20:48:05.9638810Z 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-08-14T20:48:05.9639610Z 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-08-14T20:48:05.9640690Z 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-08-14T20:48:05.9641690Z 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-08-14T20:48:05.9642780Z 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-08-14T20:48:05.9755110Z 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-08-14T20:48:05.9755930Z 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-08-14T20:48:05.9768900Z 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-08-14T20:48:05.9769700Z 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-08-14T20:48:05.9770720Z 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-08-14T20:48:05.9771870Z 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-08-14T20:48:05.9774780Z 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-08-14T20:48:05.9775770Z 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-08-14T20:48:05.9776820Z 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-08-14T20:48:05.9788520Z 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-08-14T20:48:05.9789290Z 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-08-14T20:48:05.9812680Z 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-08-14T20:48:05.9813460Z 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-08-14T20:48:05.9814900Z 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-08-14T20:48:05.9815940Z 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-08-14T20:48:05.9817030Z 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-08-14T20:48:05.9818360Z 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-08-14T20:48:05.9819410Z 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-08-14T20:48:05.9820560Z 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-08-14T20:48:05.9821670Z 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-08-14T20:48:05.9822790Z 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-08-14T20:48:05.9823870Z 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-08-14T20:48:05.9825020Z 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-08-14T20:48:05.9826100Z 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-08-14T20:48:05.9827220Z 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-08-14T20:48:05.9828350Z 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-08-14T20:48:05.9829540Z 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-08-14T20:48:05.9830580Z 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-08-14T20:48:05.9831730Z 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-08-14T20:48:05.9832760Z 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-08-14T20:48:05.9834050Z 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-08-14T20:48:05.9835120Z 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-08-14T20:48:05.9836100Z 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-08-14T20:48:05.9837280Z 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-08-14T20:48:05.9838280Z 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-08-14T20:48:05.9839450Z 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-08-14T20:48:05.9840530Z 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-08-14T20:48:05.9841600Z 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-08-14T20:48:05.9842740Z 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-08-14T20:48:05.9843750Z 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-08-14T20:48:05.9844950Z 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-08-14T20:48:05.9846080Z 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-08-14T20:48:05.9847140Z 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-08-14T20:48:05.9895410Z 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-08-14T20:48:05.9896190Z 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-08-14T20:48:05.9897270Z 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-08-14T20:48:05.9898340Z 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-08-14T20:48:05.9899500Z 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-08-14T20:48:05.9900500Z 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-08-14T20:48:05.9901740Z 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-08-14T20:48:05.9902710Z 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-08-14T20:48:05.9903860Z 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-08-14T20:48:05.9904930Z 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-08-14T20:48:05.9906080Z 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-08-14T20:48:05.9907170Z 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-08-14T20:48:05.9908330Z 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-08-14T20:48:05.9909460Z 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-08-14T20:48:05.9910520Z 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-08-14T20:48:05.9911570Z 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-08-14T20:48:05.9912800Z 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-08-14T20:48:05.9913900Z 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-08-14T20:48:05.9914970Z 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-08-14T20:48:05.9915990Z 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-08-14T20:48:05.9917090Z 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-08-14T20:48:05.9918260Z 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-08-14T20:48:05.9919340Z 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-08-14T20:48:05.9940620Z 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-08-14T20:48:05.9941720Z 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-08-14T20:48:05.9942900Z 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-08-14T20:48:05.9943990Z 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-08-14T20:48:05.9945180Z 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-08-14T20:48:05.9946250Z 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-08-14T20:48:06.0008700Z 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-08-14T20:48:06.0009680Z 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-08-14T20:48:06.0010790Z 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-08-14T20:48:06.0036240Z 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-08-14T20:48:06.0037020Z 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-08-14T20:48:06.0038170Z 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-08-14T20:48:06.0039210Z 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-08-14T20:48:06.0040350Z 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-08-14T20:48:06.0041600Z 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-08-14T20:48:06.0042720Z 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-08-14T20:48:06.0043680Z 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-08-14T20:48:06.0044810Z 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-08-14T20:48:06.0046000Z 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-08-14T20:48:06.0047210Z 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-08-14T20:48:06.0048400Z 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-08-14T20:48:06.0049660Z 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-08-14T20:48:06.0094850Z 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-08-14T20:48:06.0095750Z 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-08-14T20:48:06.0096840Z 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-08-14T20:48:06.0111360Z 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-08-14T20:48:06.0112280Z 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-08-14T20:48:06.0113680Z 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-08-14T20:48:06.0114770Z 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-08-14T20:48:06.0116120Z 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-08-14T20:48:06.0117580Z 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-08-14T20:48:06.0118810Z 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-08-14T20:48:06.0120230Z 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-08-14T20:48:06.0121560Z 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-08-14T20:48:06.0123030Z 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-08-14T20:48:06.0155800Z 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-08-14T20:48:06.0156770Z 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-08-14T20:48:06.0158150Z 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-08-14T20:48:06.0159120Z 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-08-14T20:48:06.0160350Z 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-08-14T20:48:06.0161460Z 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-08-14T20:48:06.0162730Z 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-08-14T20:48:06.0163830Z 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-08-14T20:48:06.0165060Z 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-08-14T20:48:06.0166250Z 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-08-14T20:48:06.0167580Z 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-08-14T20:48:06.0168990Z 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-08-14T20:48:06.0170240Z 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-08-14T20:48:06.0171500Z 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-08-14T20:48:06.0172720Z 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-08-14T20:48:06.0173920Z 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-08-14T20:48:06.0175260Z 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-08-14T20:48:06.0176340Z 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-08-14T20:48:06.0177720Z 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-08-14T20:48:06.0178960Z 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-08-14T20:48:06.0180300Z 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-08-14T20:48:06.0181190Z 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-08-14T20:48:06.0182220Z 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-08-14T20:48:06.0183270Z 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-08-14T20:48:06.0185440Z 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-08-14T20:48:06.0187970Z 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-08-14T20:48:06.0188870Z 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-08-14T20:48:06.0195950Z 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-08-14T20:48:06.0197060Z 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-08-14T20:48:06.0198150Z 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-08-14T20:48:06.0199180Z 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-08-14T20:48:06.0200480Z 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-08-14T20:48:06.0201550Z 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-08-14T20:48:06.0202700Z 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-08-14T20:48:06.0203950Z 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-08-14T20:48:06.0205060Z 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-08-14T20:48:06.0206150Z 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-08-14T20:48:06.0207370Z 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-08-14T20:48:06.0208530Z 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-08-14T20:48:06.0210280Z 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-08-14T20:48:06.0211230Z 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-08-14T20:48:06.0212100Z 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-08-14T20:48:06.0213130Z 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-08-14T20:48:06.0214120Z 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-08-14T20:48:06.0215500Z 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-08-14T20:48:06.0222520Z 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-08-14T20:48:06.0329770Z 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-08-14T20:48:06.0330920Z 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-08-14T20:48:06.0341940Z 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-08-14T20:48:06.0342970Z 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-08-14T20:48:06.0344060Z 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-08-14T20:48:06.0345290Z 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-08-14T20:48:06.0346730Z 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-08-14T20:48:06.0347680Z 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-08-14T20:48:06.0349050Z 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-08-14T20:48:06.0350040Z 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-08-14T20:48:06.0351230Z 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-08-14T20:48:06.0352530Z 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-08-14T20:48:06.0353700Z 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-08-14T20:48:06.0355040Z 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-08-14T20:48:06.0356070Z 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-08-14T20:48:06.0357250Z 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-08-14T20:48:06.0358550Z 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-08-14T20:48:06.0359620Z 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-08-14T20:48:06.0361030Z 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-08-14T20:48:06.0362150Z 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-08-14T20:48:06.0363330Z 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-08-14T20:48:06.0364440Z 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-08-14T20:48:06.0365840Z 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-08-14T20:48:06.0366990Z 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-08-14T20:48:06.0368150Z 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-08-14T20:48:06.0369610Z 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-08-14T20:48:06.0370850Z 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-08-14T20:48:06.0371920Z 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-08-14T20:48:06.0373010Z 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-08-14T20:48:06.0374300Z 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-08-14T20:48:06.0375320Z 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-08-14T20:48:06.0376440Z 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-08-14T20:48:06.0377480Z 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-08-14T20:48:06.0378790Z 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-08-14T20:48:06.0380160Z 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-08-14T20:48:06.0437170Z 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-08-14T20:48:06.0438470Z 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-08-14T20:48:06.0439490Z 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-08-14T20:48:06.0440780Z 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-08-14T20:48:06.0442030Z 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-08-14T20:48:06.0443130Z 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-08-14T20:48:06.0444310Z 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-08-14T20:48:06.0445560Z 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-08-14T20:48:06.0447030Z 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-08-14T20:48:06.0447920Z 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-08-14T20:48:06.0449050Z 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-08-14T20:48:06.0450800Z 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-08-14T20:48:06.0452460Z 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-08-14T20:48:06.0453610Z 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-08-14T20:48:06.0454990Z 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-08-14T20:48:06.0456120Z 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-08-14T20:48:06.0457560Z 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-08-14T20:48:06.0458770Z 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-08-14T20:48:06.0460150Z 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-08-14T20:48:06.0461080Z 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-08-14T20:48:06.0462480Z 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-08-14T20:48:06.0463690Z 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-08-14T20:48:06.0465050Z 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-08-14T20:48:06.0466320Z 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-08-14T20:48:06.0467490Z 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-08-14T20:48:06.0468820Z 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-08-14T20:48:06.0469990Z 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-08-14T20:48:06.0471060Z 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-08-14T20:48:06.0472940Z 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-08-14T20:48:06.0474500Z 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-08-14T20:48:06.0475830Z 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-08-14T20:48:06.0477070Z 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-08-14T20:48:06.0479460Z 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-08-14T20:48:06.0480950Z 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-08-14T20:48:06.0482660Z 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-08-14T20:48:06.0483440Z 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-08-14T20:48:06.0484200Z 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-08-14T20:48:06.0484920Z 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-08-14T20:48:06.0485850Z 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-08-14T20:48:06.0486790Z 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-08-14T20:48:06.0487620Z 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-08-14T20:48:06.0488980Z 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-08-14T20:48:06.0489890Z 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-08-14T20:48:06.0491000Z 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-08-14T20:48:06.0492200Z 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-08-14T20:48:06.0493210Z 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-08-14T20:48:06.0494370Z 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-08-14T20:48:06.0496060Z 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-08-14T20:48:06.0497690Z 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-08-14T20:48:06.0499060Z 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-08-14T20:48:06.0500400Z 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-08-14T20:48:06.0501600Z 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-08-14T20:48:06.0502750Z 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-08-14T20:48:06.0504210Z 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-08-14T20:48:06.0505230Z 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-08-14T20:48:06.0506380Z 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-08-14T20:48:06.0507660Z 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-08-14T20:48:06.0508920Z 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-08-14T20:48:06.0510970Z 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-08-14T20:48:06.0511720Z 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-08-14T20:48:06.0512620Z 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-08-14T20:48:06.0513600Z 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-08-14T20:48:06.0514610Z 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-08-14T20:48:06.0515650Z 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-08-14T20:48:06.0517000Z 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-08-14T20:48:06.0518000Z 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-08-14T20:48:06.0519130Z 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-08-14T20:48:06.0520420Z 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-08-14T20:48:06.0521600Z 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-08-14T20:48:06.0522900Z 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-08-14T20:48:06.0524040Z 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-08-14T20:48:06.0525340Z 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-08-14T20:48:06.0526520Z 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-08-14T20:48:06.0527550Z 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-08-14T20:48:06.0528880Z 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-08-14T20:48:06.0530110Z 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-08-14T20:48:06.0531190Z 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-08-14T20:48:06.0532290Z 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-08-14T20:48:06.0533440Z 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-08-14T20:48:06.0534800Z 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-08-14T20:48:06.0535790Z 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-08-14T20:48:06.0537020Z 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-08-14T20:48:06.0541660Z 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-08-14T20:48:06.0542750Z 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-08-14T20:48:06.0543920Z 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-08-14T20:48:06.0549960Z 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-08-14T20:48:06.0550860Z 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-08-14T20:48:06.0557570Z 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-08-14T20:48:06.0558690Z 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-08-14T20:48:06.0566270Z 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-08-14T20:48:06.0567430Z 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-08-14T20:48:06.0568520Z 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-08-14T20:48:06.0573530Z 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-08-14T20:48:06.0575470Z 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-08-14T20:48:06.0581080Z 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-08-14T20:48:06.0582160Z 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-08-14T20:48:06.0583930Z 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-08-14T20:48:06.0590190Z 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-08-14T20:48:06.0591230Z 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-08-14T20:48:06.0595400Z 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-08-14T20:48:06.0600440Z 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-08-14T20:48:06.0602200Z 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-08-14T20:48:06.0610420Z 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-08-14T20:48:06.0611380Z 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-08-14T20:48:06.0616780Z 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-08-14T20:48:06.0624720Z 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-08-14T20:48:06.0625760Z 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-08-14T20:48:06.0632400Z 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-08-14T20:48:06.0633190Z 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-08-14T20:48:06.0634320Z 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-08-14T20:48:06.0640020Z 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-08-14T20:48:06.0641050Z 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-08-14T20:48:06.0647530Z 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-08-14T20:48:06.0649190Z 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-08-14T20:48:06.0654050Z 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-08-14T20:48:06.0654900Z 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-08-14T20:48:06.0657890Z 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-08-14T20:48:06.0662910Z 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-08-14T20:48:06.0663850Z 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-08-14T20:48:06.0670810Z 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-08-14T20:48:06.0672190Z 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-08-14T20:48:06.0679480Z 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-08-14T20:48:06.0680390Z 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-08-14T20:48:06.0681410Z 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-08-14T20:48:06.0687660Z 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-08-14T20:48:06.0688450Z 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-08-14T20:48:06.0695700Z 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-08-14T20:48:06.0696650Z 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-08-14T20:48:06.0697870Z 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-08-14T20:48:06.0703810Z 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-08-14T20:48:06.0704990Z 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-08-14T20:48:06.0711730Z 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-08-14T20:48:06.0712630Z 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-08-14T20:48:06.0713780Z 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-08-14T20:48:06.0718880Z 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-08-14T20:48:06.0720390Z 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-08-14T20:48:06.0726430Z 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-08-14T20:48:06.0728500Z 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-08-14T20:48:06.0734780Z 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-08-14T20:48:06.0735730Z 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-08-14T20:48:06.0736880Z 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-08-14T20:48:06.0741990Z 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-08-14T20:48:06.0743320Z 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-08-14T20:48:06.0750220Z 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-08-14T20:48:06.0751060Z 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-08-14T20:48:06.0758650Z 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-08-14T20:48:06.0759610Z 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-08-14T20:48:06.0766260Z 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-08-14T20:48:06.0767120Z 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-08-14T20:48:06.0768190Z 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-08-14T20:48:06.0775400Z 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-08-14T20:48:06.0776290Z 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-08-14T20:48:06.0783620Z 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-08-14T20:48:06.0784370Z 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-08-14T20:48:06.0791310Z 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-08-14T20:48:06.0792320Z 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-08-14T20:48:06.0799170Z 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-08-14T20:48:06.0800060Z 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-08-14T20:48:06.0801230Z 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-08-14T20:48:06.0806830Z 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-08-14T20:48:06.0807710Z 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-08-14T20:48:06.0812060Z 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-08-14T20:48:06.0816150Z 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-08-14T20:48:06.0819970Z 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-08-14T20:48:06.0824840Z 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-08-14T20:48:06.0826140Z 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-08-14T20:48:06.0833950Z 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-08-14T20:48:06.0839890Z 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-08-14T20:48:06.0841840Z 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-08-14T20:48:06.0846810Z 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-08-14T20:48:06.0848220Z 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-08-14T20:48:06.0850280Z 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-08-14T20:48:06.0855810Z 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-08-14T20:48:06.0856720Z 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-08-14T20:48:06.0863490Z 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-08-14T20:48:06.0864800Z 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-08-14T20:48:06.0871060Z 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-08-14T20:48:06.0872400Z 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-08-14T20:48:06.0873660Z 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-08-14T20:48:06.0879440Z 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-08-14T20:48:06.0880280Z 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-08-14T20:48:06.0887080Z 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-08-14T20:48:06.0888320Z 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-08-14T20:48:06.0894690Z 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-08-14T20:48:06.0895590Z 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-08-14T20:48:06.0896760Z 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-08-14T20:48:06.0903220Z 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-08-14T20:48:06.0904230Z 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-08-14T20:48:06.0910900Z 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-08-14T20:48:06.0911680Z 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-08-14T20:48:06.0918810Z 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-08-14T20:48:06.0919740Z 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-08-14T20:48:06.0920740Z 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-08-14T20:48:06.0926380Z 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-08-14T20:48:06.0927160Z 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-08-14T20:48:06.0934260Z 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-08-14T20:48:06.0935650Z 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-08-14T20:48:06.0941990Z 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-08-14T20:48:06.0942770Z 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-08-14T20:48:06.0943840Z 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-08-14T20:48:06.0949920Z 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-08-14T20:48:06.0950810Z 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-08-14T20:48:06.0957560Z 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-08-14T20:48:06.0959710Z 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-08-14T20:48:06.0965470Z 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-08-14T20:48:06.0966270Z 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-08-14T20:48:06.0967420Z 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-08-14T20:48:06.0972830Z 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-08-14T20:48:06.0973620Z 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-08-14T20:48:06.0981150Z 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-08-14T20:48:06.0982130Z 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-08-14T20:48:06.0988980Z 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-08-14T20:48:06.0989780Z 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-08-14T20:48:06.0990850Z 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-08-14T20:48:06.0996420Z 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-08-14T20:48:06.0997780Z 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-08-14T20:48:06.1004160Z 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-08-14T20:48:06.1005140Z 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-08-14T20:48:06.1006300Z 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-08-14T20:48:06.1013090Z 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-08-14T20:48:06.1013980Z 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-08-14T20:48:06.1020880Z 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-08-14T20:48:06.1022320Z 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-08-14T20:48:06.1026610Z 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-08-14T20:48:06.1031260Z 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-08-14T20:48:06.1035010Z 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-08-14T20:48:06.1043090Z 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-08-14T20:48:06.1043800Z 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-08-14T20:48:06.1050580Z 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-08-14T20:48:06.1052620Z 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-08-14T20:48:06.1058920Z 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-08-14T20:48:06.1059960Z 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-08-14T20:48:06.1066240Z 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-08-14T20:48:06.1067100Z 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-08-14T20:48:06.1067970Z 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-08-14T20:48:06.1074720Z 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-08-14T20:48:06.1076510Z 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-08-14T20:48:06.1078230Z 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-08-14T20:48:06.1083590Z 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-08-14T20:48:06.1084540Z 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-08-14T20:48:06.1086250Z 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-08-14T20:48:06.1091350Z 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-08-14T20:48:06.1093480Z 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-08-14T20:48:06.1101950Z 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-08-14T20:48:06.1102730Z 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-08-14T20:48:06.1110160Z 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-08-14T20:48:06.1111080Z 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-08-14T20:48:06.1112340Z 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-08-14T20:48:06.1118310Z 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-08-14T20:48:06.1119280Z 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-08-14T20:48:06.1125990Z 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-08-14T20:48:06.1126910Z 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-08-14T20:48:06.1128090Z 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-08-14T20:48:06.1133850Z 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-08-14T20:48:06.1134580Z 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-08-14T20:48:06.1141390Z 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-08-14T20:48:06.1142900Z 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-08-14T20:48:06.1149550Z 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-08-14T20:48:06.1150220Z 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-08-14T20:48:06.1151600Z 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-08-14T20:48:06.1156830Z 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-08-14T20:48:06.1157730Z 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-08-14T20:48:06.1164840Z 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-08-14T20:48:06.1166030Z 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-08-14T20:48:06.1172970Z 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-08-14T20:48:06.1173830Z 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-08-14T20:48:06.1175100Z 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-08-14T20:48:06.1180660Z 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-08-14T20:48:06.1181510Z 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-08-14T20:48:06.1188150Z 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-08-14T20:48:06.1189450Z 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-08-14T20:48:06.1190520Z 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-08-14T20:48:06.1197560Z 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-08-14T20:48:06.1198430Z 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-08-14T20:48:06.1205630Z 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-08-14T20:48:06.1206550Z 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-08-14T20:48:06.1213570Z 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-08-14T20:48:06.1214420Z 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-08-14T20:48:06.1215560Z 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-08-14T20:48:06.1221150Z 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-08-14T20:48:06.1222240Z 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-08-14T20:48:06.1229170Z 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-08-14T20:48:06.1230060Z 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-08-14T20:48:06.1231060Z 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-08-14T20:48:06.1234580Z 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-08-14T20:48:06.1242980Z 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-08-14T20:48:06.1251020Z 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-08-14T20:48:06.1251940Z 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-08-14T20:48:06.1258080Z 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-08-14T20:48:06.1259320Z 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-08-14T20:48:06.1266530Z 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-08-14T20:48:06.1267360Z 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-08-14T20:48:06.1268580Z 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-08-14T20:48:06.1275120Z 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-08-14T20:48:06.1275900Z 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-08-14T20:48:06.1277000Z 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-08-14T20:48:06.1284520Z 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-08-14T20:48:06.1285560Z 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-08-14T20:48:06.1293510Z 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-08-14T20:48:06.1294380Z 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-08-14T20:48:06.1301910Z 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-08-14T20:48:06.1302760Z 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-08-14T20:48:06.1303880Z 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-08-14T20:48:06.1310100Z 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-08-14T20:48:06.1311140Z 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-08-14T20:48:06.1312260Z 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-08-14T20:48:06.1318490Z 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-08-14T20:48:06.1319390Z 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-08-14T20:48:06.1326160Z 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-08-14T20:48:06.1326960Z 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-08-14T20:48:06.1328330Z 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-08-14T20:48:06.1334510Z 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-08-14T20:48:06.1335590Z 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-08-14T20:48:06.1342740Z 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-08-14T20:48:06.1343620Z 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-08-14T20:48:06.1344740Z 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-08-14T20:48:06.1350520Z 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-08-14T20:48:06.1351250Z 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-08-14T20:48:06.1358450Z 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-08-14T20:48:06.1359450Z 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-08-14T20:48:06.1360640Z 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-08-14T20:48:06.1366530Z 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-08-14T20:48:06.1367570Z 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-08-14T20:48:06.1374240Z 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-08-14T20:48:06.1376070Z 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-08-14T20:48:06.1377340Z 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-08-14T20:48:06.1384450Z 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-08-14T20:48:06.1385160Z 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-08-14T20:48:06.1392220Z 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-08-14T20:48:06.1392990Z 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-08-14T20:48:06.1394260Z 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-08-14T20:48:06.1399890Z 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-08-14T20:48:06.1401180Z 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-08-14T20:48:06.1407680Z 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-08-14T20:48:06.1409140Z 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-08-14T20:48:06.1410200Z 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-08-14T20:48:06.1417090Z 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-08-14T20:48:06.1417930Z 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-08-14T20:48:06.1425210Z 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-08-14T20:48:06.1426110Z 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-08-14T20:48:06.1433230Z 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-08-14T20:48:06.1433820Z 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-08-14T20:48:06.1434980Z 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-08-14T20:48:06.1440480Z 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-08-14T20:48:06.1442470Z 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-08-14T20:48:06.1444960Z 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-08-14T20:48:06.1448420Z 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-08-14T20:48:06.1458180Z 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-08-14T20:48:06.1463040Z 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-08-14T20:48:06.1467520Z 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-08-14T20:48:06.1471900Z 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-08-14T20:48:06.1472710Z 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-08-14T20:48:06.1473870Z 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-08-14T20:48:06.1475610Z 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-08-14T20:48:06.1479890Z 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-08-14T20:48:06.1480740Z 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-08-14T20:48:06.1486310Z 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-08-14T20:48:06.1488120Z 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-08-14T20:48:06.1494480Z 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-08-14T20:48:06.1495280Z 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-08-14T20:48:06.1497180Z 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-08-14T20:48:06.1503550Z 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-08-14T20:48:06.1504650Z 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-08-14T20:48:06.1511550Z 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-08-14T20:48:06.1512430Z 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-08-14T20:48:06.1519040Z 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-08-14T20:48:06.1520010Z 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-08-14T20:48:06.1521250Z 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-08-14T20:48:06.1526820Z 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-08-14T20:48:06.1527790Z 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-08-14T20:48:06.1534050Z 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-08-14T20:48:06.1535800Z 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-08-14T20:48:06.1541560Z 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-08-14T20:48:06.1542690Z 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-08-14T20:48:06.1543980Z 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-08-14T20:48:06.1550630Z 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-08-14T20:48:06.1551680Z 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-08-14T20:48:06.1557590Z 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-08-14T20:48:06.1558930Z 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-08-14T20:48:06.1565430Z 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-08-14T20:48:06.1566290Z 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-08-14T20:48:06.1567560Z 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-08-14T20:48:06.1572750Z 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-08-14T20:48:06.1573810Z 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-08-14T20:48:06.1579910Z 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-08-14T20:48:06.1581600Z 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-08-14T20:48:06.1587740Z 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-08-14T20:48:06.1589010Z 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-08-14T20:48:06.1590390Z 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-08-14T20:48:06.1597390Z 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-08-14T20:48:06.1598260Z 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-08-14T20:48:06.1605250Z 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-08-14T20:48:06.1606130Z 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-08-14T20:48:06.1613380Z 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-08-14T20:48:06.1614160Z 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-08-14T20:48:06.1615320Z 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-08-14T20:48:06.1620680Z 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-08-14T20:48:06.1628030Z 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-08-14T20:48:06.1628900Z 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-08-14T20:48:06.1631560Z 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-08-14T20:48:06.1636710Z 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-08-14T20:48:06.1637770Z 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-08-14T20:48:06.1641660Z 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-08-14T20:48:06.1646990Z 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-08-14T20:48:06.1648660Z 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-08-14T20:48:06.1649770Z 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-08-14T20:48:06.1654980Z 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-08-14T20:48:06.1655880Z 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-08-14T20:48:06.1660800Z 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-08-14T20:48:06.1670190Z 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-08-14T20:48:06.1677450Z 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-08-14T20:48:06.1678470Z 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-08-14T20:48:06.1685160Z 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-08-14T20:48:06.1686010Z 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-08-14T20:48:06.1687210Z 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-08-14T20:48:06.1692990Z 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-08-14T20:48:06.1693880Z 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-08-14T20:48:06.1700880Z 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-08-14T20:48:06.1701890Z 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-08-14T20:48:06.1709530Z 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-08-14T20:48:06.1710300Z 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-08-14T20:48:06.1711480Z 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-08-14T20:48:06.1717340Z 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-08-14T20:48:06.1718170Z 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-08-14T20:48:06.1725210Z 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-08-14T20:48:06.1726230Z 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-08-14T20:48:06.1727370Z 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-08-14T20:48:06.1732120Z 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-08-14T20:48:06.1734500Z 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-08-14T20:48:06.1739740Z 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-08-14T20:48:06.1740680Z 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-08-14T20:48:06.1746570Z 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-08-14T20:48:06.1748270Z 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-08-14T20:48:06.1753670Z 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-08-14T20:48:06.1754730Z 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-08-14T20:48:06.1756970Z 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-08-14T20:48:06.1763430Z 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-08-14T20:48:06.1764250Z 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-08-14T20:48:06.1770890Z 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-08-14T20:48:06.1772070Z 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-08-14T20:48:06.1779130Z 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-08-14T20:48:06.1780040Z 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-08-14T20:48:06.1781120Z 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-08-14T20:48:06.1786310Z 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-08-14T20:48:06.1787420Z 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-08-14T20:48:06.1794050Z 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-08-14T20:48:06.1795110Z 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-08-14T20:48:06.1801820Z 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-08-14T20:48:06.1802540Z 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-08-14T20:48:06.1803980Z 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-08-14T20:48:06.1809520Z 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-08-14T20:48:06.1810210Z 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-08-14T20:48:06.1816800Z 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-08-14T20:48:06.1818000Z 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-08-14T20:48:06.1824770Z 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-08-14T20:48:06.1825680Z 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-08-14T20:48:06.1826840Z 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-08-14T20:48:06.1833650Z 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-08-14T20:48:06.1834480Z 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-08-14T20:48:06.1841280Z 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-08-14T20:48:06.1842150Z 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-08-14T20:48:06.1848290Z 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-08-14T20:48:06.1849580Z 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-08-14T20:48:06.1850780Z 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-08-14T20:48:06.1856150Z 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-08-14T20:48:06.1857160Z 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-08-14T20:48:06.1866570Z 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-08-14T20:48:06.1867400Z 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-08-14T20:48:06.1868470Z 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-08-14T20:48:06.1870180Z 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-08-14T20:48:06.1871450Z 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-08-14T20:48:06.1880310Z 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-08-14T20:48:06.1885410Z 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-08-14T20:48:06.1889800Z 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-08-14T20:48:06.1893240Z 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-08-14T20:48:06.1894060Z 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-08-14T20:48:06.1899250Z 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-08-14T20:48:06.1900960Z 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-08-14T20:48:06.1907420Z 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-08-14T20:48:06.1908200Z 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-08-14T20:48:06.1914830Z 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-08-14T20:48:06.1916220Z 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-08-14T20:48:06.1917250Z 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-08-14T20:48:06.1924540Z 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-08-14T20:48:06.1925350Z 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-08-14T20:48:06.1932040Z 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-08-14T20:48:06.1932860Z 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-08-14T20:48:06.1933940Z 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-08-14T20:48:06.1939390Z 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-08-14T20:48:06.1941260Z 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-08-14T20:48:06.1947340Z 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-08-14T20:48:06.1948320Z 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-08-14T20:48:06.1950650Z 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-08-14T20:48:06.1956600Z 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-08-14T20:48:06.1957570Z 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-08-14T20:48:06.1964550Z 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-08-14T20:48:06.1965180Z 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-08-14T20:48:06.1972400Z 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-08-14T20:48:06.1973330Z 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-08-14T20:48:06.1974350Z 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-08-14T20:48:06.1979770Z 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-08-14T20:48:06.1981260Z 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-08-14T20:48:06.1987970Z 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-08-14T20:48:06.1988770Z 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-08-14T20:48:06.1990130Z 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-08-14T20:48:06.1997150Z 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-08-14T20:48:06.1998260Z 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-08-14T20:48:06.2004750Z 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-08-14T20:48:06.2005950Z 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-08-14T20:48:06.2012900Z 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-08-14T20:48:06.2013800Z 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-08-14T20:48:06.2014880Z 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-08-14T20:48:06.2021090Z 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-08-14T20:48:06.2022080Z 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-08-14T20:48:06.2029240Z 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-08-14T20:48:06.2029790Z 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-08-14T20:48:06.2030870Z 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-08-14T20:48:06.2036370Z 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-08-14T20:48:06.2044370Z 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-08-14T20:48:06.2045850Z 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-08-14T20:48:06.2046860Z 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-08-14T20:48:06.2054420Z 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-08-14T20:48:06.2055260Z 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-08-14T20:48:06.2061850Z 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-08-14T20:48:06.2062680Z 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-08-14T20:48:06.2070720Z 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-08-14T20:48:06.2071440Z 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-08-14T20:48:06.2072710Z 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-08-14T20:48:06.2078910Z 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-08-14T20:48:06.2079590Z 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-08-14T20:48:06.2084090Z 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-08-14T20:48:06.2092590Z 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-08-14T20:48:06.2094570Z 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-08-14T20:48:06.2100720Z 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-08-14T20:48:06.2101440Z 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-08-14T20:48:06.2103410Z 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-08-14T20:48:06.2110660Z 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-08-14T20:48:06.2111810Z 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-08-14T20:48:06.2118240Z 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-08-14T20:48:06.2119430Z 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-08-14T20:48:06.2120750Z 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-08-14T20:48:06.2128330Z 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-08-14T20:48:06.2129260Z 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-08-14T20:48:06.2136410Z 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-08-14T20:48:06.2137510Z 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-08-14T20:48:06.2144100Z 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-08-14T20:48:06.2144870Z 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-08-14T20:48:06.2145950Z 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-08-14T20:48:06.2152940Z 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-08-14T20:48:06.2153840Z 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-08-14T20:48:06.2161330Z 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-08-14T20:48:06.2162400Z 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-08-14T20:48:06.2163500Z 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-08-14T20:48:06.2169570Z 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-08-14T20:48:06.2170520Z 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-08-14T20:48:06.2171600Z 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-08-14T20:48:06.2177020Z 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-08-14T20:48:06.2178270Z 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-08-14T20:48:06.2185920Z 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-08-14T20:48:06.2186840Z 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-08-14T20:48:06.2187880Z 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-08-14T20:48:06.2193830Z 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-08-14T20:48:06.2195160Z 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-08-14T20:48:06.2196180Z 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-08-14T20:48:06.2203690Z 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-08-14T20:48:06.2204570Z 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-08-14T20:48:06.2211540Z 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-08-14T20:48:06.2212180Z 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-08-14T20:48:06.2220160Z 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-08-14T20:48:06.2221030Z 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-08-14T20:48:06.2222170Z 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-08-14T20:48:06.2227730Z 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-08-14T20:48:06.2228690Z 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-08-14T20:48:06.2235660Z 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-08-14T20:48:06.2236470Z 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-08-14T20:48:06.2237540Z 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-08-14T20:48:06.2243980Z 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-08-14T20:48:06.2244750Z 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-08-14T20:48:06.2251840Z 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-08-14T20:48:06.2252900Z 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-08-14T20:48:06.2260440Z 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-08-14T20:48:06.2261490Z 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-08-14T20:48:06.2262650Z 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-08-14T20:48:06.2266620Z 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-08-14T20:48:06.2267850Z 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-08-14T20:48:06.2269090Z 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-08-14T20:48:06.2271210Z 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-08-14T20:48:06.2276300Z 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-08-14T20:48:06.2277370Z 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-08-14T20:48:06.2281440Z 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-08-14T20:48:06.2288130Z 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-08-14T20:48:06.2292400Z 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-08-14T20:48:06.2298590Z 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-08-14T20:48:06.2306720Z 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-08-14T20:48:06.2307560Z 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-08-14T20:48:06.2313650Z 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-08-14T20:48:06.2315490Z 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-08-14T20:48:06.2321190Z 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-08-14T20:48:06.2322190Z 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-08-14T20:48:06.2323880Z 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-08-14T20:48:06.2330420Z 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-08-14T20:48:06.2331310Z 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-08-14T20:48:06.2338550Z 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-08-14T20:48:06.2339570Z 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-08-14T20:48:06.2346400Z 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-08-14T20:48:06.2347590Z 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-08-14T20:48:06.2348570Z 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-08-14T20:48:06.2353380Z 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-08-14T20:48:06.2355170Z 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-08-14T20:48:06.2360800Z 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-08-14T20:48:06.2361970Z 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-08-14T20:48:06.2363990Z 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-08-14T20:48:06.2370480Z 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-08-14T20:48:06.2371320Z 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-08-14T20:48:06.2378030Z 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-08-14T20:48:06.2378900Z 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-08-14T20:48:06.2386030Z 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-08-14T20:48:06.2387050Z 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-08-14T20:48:06.2388160Z 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-08-14T20:48:06.2394510Z 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-08-14T20:48:06.2395270Z 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-08-14T20:48:06.2402940Z 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-08-14T20:48:06.2403720Z 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-08-14T20:48:06.2404880Z 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-08-14T20:48:06.2410320Z 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-08-14T20:48:06.2411560Z 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-08-14T20:48:06.2418480Z 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-08-14T20:48:06.2419310Z 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-08-14T20:48:06.2420410Z 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-08-14T20:48:06.2426470Z 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-08-14T20:48:06.2427170Z 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-08-14T20:48:06.2434320Z 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-08-14T20:48:06.2435440Z 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-08-14T20:48:06.2443080Z 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-08-14T20:48:06.2444110Z 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-08-14T20:48:06.2445220Z 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-08-14T20:48:06.2450650Z 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-08-14T20:48:06.2451600Z 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-08-14T20:48:06.2459130Z 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-08-14T20:48:06.2459880Z 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-08-14T20:48:06.2461090Z 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-08-14T20:48:06.2467780Z 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-08-14T20:48:06.2468580Z 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-08-14T20:48:06.2476070Z 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-08-14T20:48:06.2477260Z 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-08-14T20:48:06.2483810Z 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-08-14T20:48:06.2484750Z 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-08-14T20:48:06.2485960Z 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-08-14T20:48:06.2491980Z 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-08-14T20:48:06.2492960Z 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-08-14T20:48:06.2497380Z 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-08-14T20:48:06.2500780Z 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-08-14T20:48:06.2506990Z 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-08-14T20:48:06.2512930Z 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-08-14T20:48:06.2513860Z 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-08-14T20:48:06.2521540Z 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-08-14T20:48:06.2522470Z 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-08-14T20:48:06.2529630Z 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-08-14T20:48:06.2530470Z 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-08-14T20:48:06.2531600Z 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-08-14T20:48:06.2536840Z 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-08-14T20:48:06.2538080Z 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-08-14T20:48:06.2544660Z 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-08-14T20:48:06.2545460Z 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-08-14T20:48:06.2546650Z 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-08-14T20:48:06.2553950Z 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-08-14T20:48:06.2554880Z 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-08-14T20:48:06.2561980Z 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-08-14T20:48:06.2562900Z 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-08-14T20:48:06.2570450Z 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-08-14T20:48:06.2571190Z 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-08-14T20:48:06.2572460Z 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-08-14T20:48:06.2578580Z 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-08-14T20:48:06.2579420Z 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-08-14T20:48:06.2586320Z 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-08-14T20:48:06.2587120Z 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-08-14T20:48:06.2588410Z 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-08-14T20:48:06.2593840Z 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-08-14T20:48:06.2595380Z 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-08-14T20:48:06.2601400Z 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-08-14T20:48:06.2602300Z 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-08-14T20:48:06.2603600Z 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-08-14T20:48:06.2610170Z 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-08-14T20:48:06.2611080Z 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-08-14T20:48:06.2618620Z 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-08-14T20:48:06.2619380Z 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-08-14T20:48:06.2626730Z 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-08-14T20:48:06.2627980Z 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-08-14T20:48:06.2629130Z 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-08-14T20:48:06.2634460Z 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-08-14T20:48:06.2635600Z 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-08-14T20:48:06.2642090Z 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-08-14T20:48:06.2643050Z 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-08-14T20:48:06.2644010Z 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-08-14T20:48:06.2650650Z 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-08-14T20:48:06.2651380Z 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-08-14T20:48:06.2659670Z 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-08-14T20:48:06.2660410Z 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-08-14T20:48:06.2661510Z 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-08-14T20:48:06.2662810Z 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-08-14T20:48:06.2669430Z 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-08-14T20:48:06.2672260Z 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-08-14T20:48:06.2676330Z 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-08-14T20:48:06.2677060Z 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-08-14T20:48:06.2681500Z 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-08-14T20:48:06.2685080Z 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-08-14T20:48:06.2690300Z 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-08-14T20:48:06.2692200Z 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-08-14T20:48:06.2693330Z 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-08-14T20:48:06.2699880Z 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-08-14T20:48:06.2700640Z 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-08-14T20:48:06.2705610Z 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-08-14T20:48:06.2710340Z 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-08-14T20:48:06.2717680Z 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-08-14T20:48:06.2723730Z 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-08-14T20:48:06.2724720Z 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-08-14T20:48:06.2730890Z 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-08-14T20:48:06.2731810Z 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-08-14T20:48:06.2733240Z 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-08-14T20:48:06.2739890Z 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-08-14T20:48:06.2740950Z 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-08-14T20:48:06.2747180Z 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-08-14T20:48:06.2747980Z 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-08-14T20:48:06.2749520Z 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-08-14T20:48:06.2757050Z 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-08-14T20:48:06.2757960Z 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-08-14T20:48:06.2765100Z 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-08-14T20:48:06.2766050Z 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-08-14T20:48:06.2773350Z 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-08-14T20:48:06.2774050Z 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-08-14T20:48:06.2775200Z 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-08-14T20:48:06.2781220Z 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-08-14T20:48:06.2782580Z 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-08-14T20:48:06.2788020Z 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-08-14T20:48:06.2789370Z 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-08-14T20:48:06.2790510Z 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-08-14T20:48:06.2796540Z 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-08-14T20:48:06.2797380Z 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-08-14T20:48:06.2804330Z 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-08-14T20:48:06.2805140Z 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-08-14T20:48:06.2812440Z 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-08-14T20:48:06.2813170Z 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-08-14T20:48:06.2814370Z 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-08-14T20:48:06.2820130Z 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-08-14T20:48:06.2825270Z 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-08-14T20:48:06.2826780Z 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-08-14T20:48:06.2828630Z 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-08-14T20:48:06.2829970Z 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-08-14T20:48:06.2837560Z 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-08-14T20:48:06.2838390Z 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-08-14T20:48:06.2845350Z 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-08-14T20:48:06.2846290Z 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-08-14T20:48:06.2853620Z 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-08-14T20:48:06.2854440Z 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-08-14T20:48:06.2855560Z 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-08-14T20:48:06.2861460Z 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-08-14T20:48:06.2862600Z 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-08-14T20:48:06.2869680Z 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-08-14T20:48:06.2870610Z 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-08-14T20:48:06.2871620Z 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-08-14T20:48:06.2877020Z 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-08-14T20:48:06.2877820Z 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-08-14T20:48:06.2884980Z 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-08-14T20:48:06.2885760Z 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-08-14T20:48:06.2892990Z 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-08-14T20:48:06.2893670Z 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-08-14T20:48:06.2894900Z 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-08-14T20:48:06.2900440Z 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-08-14T20:48:06.2902200Z 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-08-14T20:48:06.2908310Z 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-08-14T20:48:06.2909140Z 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-08-14T20:48:06.2910680Z 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-08-14T20:48:06.2911950Z 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-08-14T20:48:06.2918770Z 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-08-14T20:48:06.2927160Z 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-08-14T20:48:06.2935020Z 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-08-14T20:48:06.2935840Z 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-08-14T20:48:06.2944120Z 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-08-14T20:48:06.2944920Z 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-08-14T20:48:06.2946130Z 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-08-14T20:48:06.2952370Z 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-08-14T20:48:06.2953490Z 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-08-14T20:48:06.2961090Z 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-08-14T20:48:06.2962040Z 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-08-14T20:48:06.2963160Z 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-08-14T20:48:06.2969090Z 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-08-14T20:48:06.2969900Z 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-08-14T20:48:06.2976890Z 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-08-14T20:48:06.2977930Z 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-08-14T20:48:06.2979030Z 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-08-14T20:48:06.2984870Z 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-08-14T20:48:06.2986160Z 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-08-14T20:48:06.2993380Z 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-08-14T20:48:06.2994370Z 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-08-14T20:48:06.2995420Z 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-08-14T20:48:06.3001350Z 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-08-14T20:48:06.3002180Z 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-08-14T20:48:06.3009990Z 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-08-14T20:48:06.3010870Z 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-08-14T20:48:06.3012110Z 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-08-14T20:48:06.3017670Z 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-08-14T20:48:06.3018930Z 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-08-14T20:48:06.3026080Z 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-08-14T20:48:06.3027200Z 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-08-14T20:48:06.3028340Z 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-08-14T20:48:06.3034320Z 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-08-14T20:48:06.3035380Z 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-08-14T20:48:06.3042100Z 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-08-14T20:48:06.3043520Z 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-08-14T20:48:06.3050170Z 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-08-14T20:48:06.3050930Z 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-08-14T20:48:06.3052020Z 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-08-14T20:48:06.3053320Z 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-08-14T20:48:06.3058620Z 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-08-14T20:48:06.3059340Z 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-08-14T20:48:06.3060430Z 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-08-14T20:48:06.3066670Z 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-08-14T20:48:06.3075270Z 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-08-14T20:48:06.3076010Z 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-08-14T20:48:06.3083760Z 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-08-14T20:48:06.3084800Z 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-08-14T20:48:06.3085730Z 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-08-14T20:48:06.3091480Z 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-08-14T20:48:06.3092510Z 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-08-14T20:48:06.3099950Z 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-08-14T20:48:06.3100710Z 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-08-14T20:48:06.3101780Z 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-08-14T20:48:06.3107580Z 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-08-14T20:48:06.3108280Z 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-08-14T20:48:06.3115830Z 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-08-14T20:48:06.3116570Z 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-08-14T20:48:06.3117570Z 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-08-14T20:48:06.3121960Z 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-08-14T20:48:06.3128590Z 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-08-14T20:48:06.3136440Z 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-08-14T20:48:06.3137230Z 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-08-14T20:48:06.3144230Z 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-08-14T20:48:06.3146120Z 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-08-14T20:48:06.3152760Z 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-08-14T20:48:06.3153410Z 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-08-14T20:48:06.3154580Z 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-08-14T20:48:06.3160750Z 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-08-14T20:48:06.3161560Z 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-08-14T20:48:06.3163460Z 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-08-14T20:48:06.3170790Z 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-08-14T20:48:06.3171880Z 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-08-14T20:48:06.3178970Z 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-08-14T20:48:06.3179840Z 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-08-14T20:48:06.3180920Z 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-08-14T20:48:06.3185890Z 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-08-14T20:48:06.3187130Z 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-08-14T20:48:06.3194290Z 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-08-14T20:48:06.3195120Z 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-08-14T20:48:06.3201310Z 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-08-14T20:48:06.3203110Z 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-08-14T20:48:06.3204230Z 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-08-14T20:48:06.3209060Z 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-08-14T20:48:06.3210700Z 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-08-14T20:48:06.3217510Z 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-08-14T20:48:06.3218210Z 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-08-14T20:48:06.3225320Z 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-08-14T20:48:06.3226540Z 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-08-14T20:48:06.3227950Z 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-08-14T20:48:06.3233050Z 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-08-14T20:48:06.3234970Z 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-08-14T20:48:06.3240450Z 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-08-14T20:48:06.3241660Z 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-08-14T20:48:06.3245010Z 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-08-14T20:48:06.3248910Z 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-08-14T20:48:06.3249850Z 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-08-14T20:48:06.3256780Z 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-08-14T20:48:06.3257790Z 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-08-14T20:48:06.3264680Z 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-08-14T20:48:06.3265370Z 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-08-14T20:48:06.3266970Z 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-08-14T20:48:06.3273970Z 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-08-14T20:48:06.3274730Z 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-08-14T20:48:06.3281470Z 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-08-14T20:48:06.3282570Z 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-08-14T20:48:06.3289070Z 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-08-14T20:48:06.3290230Z 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-08-14T20:48:06.3291550Z 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-08-14T20:48:06.3296970Z 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-08-14T20:48:06.3297820Z 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-08-14T20:48:06.3304780Z 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-08-14T20:48:06.3305480Z 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-08-14T20:48:06.3313330Z 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-08-14T20:48:06.3314240Z 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-08-14T20:48:06.3315360Z 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-08-14T20:48:06.3320610Z 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-08-14T20:48:06.3321830Z 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-08-14T20:48:06.3326120Z 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-08-14T20:48:06.3329850Z 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-08-14T20:48:06.3330740Z 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-08-14T20:48:06.3347030Z 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-08-14T20:48:06.3349270Z 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-08-14T20:48:06.3350080Z 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-08-14T20:48:06.3353900Z 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-08-14T20:48:06.3355000Z 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-08-14T20:48:06.3356110Z 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-08-14T20:48:06.3363350Z 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-08-14T20:48:06.3364670Z 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-08-14T20:48:06.3370160Z 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-08-14T20:48:06.3372330Z 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-08-14T20:48:06.3377830Z 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-08-14T20:48:06.3378740Z 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-08-14T20:48:06.3380390Z 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-08-14T20:48:06.3387050Z 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-08-14T20:48:06.3387990Z 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-08-14T20:48:06.3394350Z 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-08-14T20:48:06.3395290Z 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-08-14T20:48:06.3403060Z 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-08-14T20:48:06.3403900Z 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-08-14T20:48:06.3405030Z 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-08-14T20:48:06.3410820Z 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-08-14T20:48:06.3411610Z 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-08-14T20:48:06.3419260Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/functorch 2025-08-14T20:48:06.3419790Z 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-08-14T20:48:06.3421070Z 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-08-14T20:48:06.3422200Z 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-08-14T20:48:06.3426560Z 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-08-14T20:48:06.3428540Z 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-08-14T20:48:06.3435310Z 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-08-14T20:48:06.3436160Z 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-08-14T20:48:06.3437310Z 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-08-14T20:48:06.3441410Z 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-08-14T20:48:06.3442430Z 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-08-14T20:48:06.3443580Z 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-08-14T20:48:06.3450110Z 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-08-14T20:48:06.3450890Z 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-08-14T20:48:06.3457590Z 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-08-14T20:48:06.3458620Z 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-08-14T20:48:06.3465460Z 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-08-14T20:48:06.3466260Z 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-08-14T20:48:06.3467680Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cudnn 2025-08-14T20:48:06.3468390Z 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-08-14T20:48:06.3473450Z 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-08-14T20:48:06.3474320Z 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-08-14T20:48:06.3481180Z 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-08-14T20:48:06.3489640Z 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-08-14T20:48:06.3490550Z 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-08-14T20:48:06.3491900Z 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-08-14T20:48:06.3497790Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10 2025-08-14T20:48:06.3498650Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-08-14T20:48:06.3499390Z 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-08-14T20:48:06.3501370Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core/impl 2025-08-14T20:48:06.3501790Z 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-08-14T20:48:06.3502840Z 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-08-14T20:48:06.3506640Z 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-08-14T20:48:06.3507550Z 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-08-14T20:48:06.3514250Z 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-08-14T20:48:06.3516040Z 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-08-14T20:48:06.3522090Z 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-08-14T20:48:06.3523070Z 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-08-14T20:48:06.3524240Z 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-08-14T20:48:06.3529940Z 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-08-14T20:48:06.3530890Z 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-08-14T20:48:06.3535540Z 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-08-14T20:48:06.3541980Z 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-08-14T20:48:06.3546980Z 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-08-14T20:48:06.3551330Z 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-08-14T20:48:06.3556260Z 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-08-14T20:48:06.3559340Z 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-08-14T20:48:06.3564090Z 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-08-14T20:48:06.3564910Z 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-08-14T20:48:06.3568740Z 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-08-14T20:48:06.3573640Z 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-08-14T20:48:06.3575540Z 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-08-14T20:48:06.3576700Z 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-08-14T20:48:06.3582920Z 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-08-14T20:48:06.3584020Z 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-08-14T20:48:06.3590070Z 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-08-14T20:48:06.3591010Z 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-08-14T20:48:06.3597420Z 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-08-14T20:48:06.3598480Z 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-08-14T20:48:06.3599680Z 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-08-14T20:48:06.3607510Z 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-08-14T20:48:06.3608290Z 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-08-14T20:48:06.3615470Z 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-08-14T20:48:06.3616410Z 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-08-14T20:48:06.3625940Z 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-08-14T20:48:06.3626790Z 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-08-14T20:48:06.3628050Z 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-08-14T20:48:06.3629270Z 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-08-14T20:48:06.3630550Z 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-08-14T20:48:06.3631870Z 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-08-14T20:48:06.3633020Z 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-08-14T20:48:06.3634210Z 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-08-14T20:48:06.3635380Z 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-08-14T20:48:06.3636650Z 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-08-14T20:48:06.3637880Z 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-08-14T20:48:06.3639030Z 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-08-14T20:48:06.3640220Z 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-08-14T20:48:06.3641440Z 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-08-14T20:48:06.3642730Z 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-08-14T20:48:06.3822960Z 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-08-14T20:48:06.3841850Z 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-08-14T20:48:06.3842810Z 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-08-14T20:48:06.3845020Z 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-08-14T20:48:06.3845880Z 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-08-14T20:48:06.3847310Z 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-08-14T20:48:06.3848570Z 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-08-14T20:48:06.3849750Z 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-08-14T20:48:06.3851060Z 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-08-14T20:48:06.3852040Z 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-08-14T20:48:06.3853290Z 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-08-14T20:48:06.3854380Z 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-08-14T20:48:06.3855550Z 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-08-14T20:48:06.3856980Z 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-08-14T20:48:06.3858120Z 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-08-14T20:48:06.3859250Z 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-08-14T20:48:06.3860440Z 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-08-14T20:48:06.3861620Z 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-08-14T20:48:06.3863320Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/test 2025-08-14T20:48:06.3864100Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/test/util 2025-08-14T20:48:06.3864890Z 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-08-14T20:48:06.3866200Z 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-08-14T20:48:06.3867570Z 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-08-14T20:48:06.3870030Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-08-14T20:48:06.3870390Z 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-08-14T20:48:06.3871570Z 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-08-14T20:48:06.3873130Z 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-08-14T20:48:06.3874250Z 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-08-14T20:48:06.3875350Z 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-08-14T20:48:06.3876630Z 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-08-14T20:48:06.3879480Z 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-08-14T20:48:06.3879830Z 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-08-14T20:48:06.3880170Z 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-08-14T20:48:06.3881160Z 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-08-14T20:48:06.3882270Z 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-08-14T20:48:06.3884060Z 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-08-14T20:48:06.3885200Z 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-08-14T20:48:06.3886410Z 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-08-14T20:48:06.3887710Z 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-08-14T20:48:06.3888820Z 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-08-14T20:48:06.3889910Z 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-08-14T20:48:06.3890970Z 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-08-14T20:48:06.3892170Z 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-08-14T20:48:06.3893500Z 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-08-14T20:48:06.3894630Z 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-08-14T20:48:06.3895720Z 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-08-14T20:48:06.3897120Z 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-08-14T20:48:06.3898260Z 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-08-14T20:48:06.3899400Z 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-08-14T20:48:06.3900550Z 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-08-14T20:48:06.3901800Z 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-08-14T20:48:06.3902890Z 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-08-14T20:48:06.3903980Z 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-08-14T20:48:06.3905120Z 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-08-14T20:48:06.3906260Z 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-08-14T20:48:06.3907830Z 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-08-14T20:48:06.3909260Z 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-08-14T20:48:06.3910450Z 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-08-14T20:48:06.3911650Z 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-08-14T20:48:06.3912810Z 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-08-14T20:48:06.3914050Z 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-08-14T20:48:06.3915320Z 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-08-14T20:48:06.3916430Z 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-08-14T20:48:06.3917520Z 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-08-14T20:48:06.3918660Z 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-08-14T20:48:06.3919840Z 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-08-14T20:48:06.3921040Z 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-08-14T20:48:06.3922210Z 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-08-14T20:48:06.3923340Z 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-08-14T20:48:06.3924490Z 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-08-14T20:48:06.3925680Z 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-08-14T20:48:06.3926950Z 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-08-14T20:48:06.3928040Z 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-08-14T20:48:06.3929190Z 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-08-14T20:48:06.3930370Z 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-08-14T20:48:06.3931430Z 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-08-14T20:48:06.3932540Z 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-08-14T20:48:06.3933750Z 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-08-14T20:48:06.3934790Z 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-08-14T20:48:06.3935920Z 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-08-14T20:48:06.3937030Z 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-08-14T20:48:06.3938140Z 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-08-14T20:48:06.3939270Z 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-08-14T20:48:06.3940370Z 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-08-14T20:48:06.3941450Z 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-08-14T20:48:06.3942620Z 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-08-14T20:48:06.3943810Z 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-08-14T20:48:06.3944970Z 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-08-14T20:48:06.3946100Z 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-08-14T20:48:06.3974710Z 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-08-14T20:48:06.3975600Z 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-08-14T20:48:06.3976650Z 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-08-14T20:48:06.3977990Z 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-08-14T20:48:06.3978960Z 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-08-14T20:48:06.4009900Z 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-08-14T20:48:06.4010870Z 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-08-14T20:48:06.4012000Z 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-08-14T20:48:06.4013130Z 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-08-14T20:48:06.4014300Z 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-08-14T20:48:06.4016170Z 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-08-14T20:48:06.4017390Z 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-08-14T20:48:06.4018500Z 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-08-14T20:48:06.4019640Z 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-08-14T20:48:06.4020780Z 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-08-14T20:48:06.4021870Z 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-08-14T20:48:06.4022940Z 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-08-14T20:48:06.4024050Z 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-08-14T20:48:06.4025210Z 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-08-14T20:48:06.4026250Z 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-08-14T20:48:06.4027380Z 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-08-14T20:48:06.4028410Z 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-08-14T20:48:06.4029460Z 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-08-14T20:48:06.4030580Z 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-08-14T20:48:06.4031740Z 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-08-14T20:48:06.4032780Z 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-08-14T20:48:06.4033880Z 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-08-14T20:48:06.4035070Z 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-08-14T20:48:06.4036200Z 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-08-14T20:48:06.4037260Z 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-08-14T20:48:06.4038520Z 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-08-14T20:48:06.4039670Z 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-08-14T20:48:06.4040710Z 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-08-14T20:48:06.4041900Z 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-08-14T20:48:06.4043010Z 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-08-14T20:48:06.4044080Z 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-08-14T20:48:06.4045150Z 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-08-14T20:48:06.4046290Z 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-08-14T20:48:06.4047680Z 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-08-14T20:48:06.4048740Z 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-08-14T20:48:06.4050170Z 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-08-14T20:48:06.4051240Z 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-08-14T20:48:06.4052360Z 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-08-14T20:48:06.4053430Z 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-08-14T20:48:06.4054530Z 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-08-14T20:48:06.4055600Z 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-08-14T20:48:06.4056840Z 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-08-14T20:48:06.4058060Z 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-08-14T20:48:06.4059040Z 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-08-14T20:48:06.4063440Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/metal 2025-08-14T20:48:06.4063770Z 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-08-14T20:48:06.4064110Z 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-08-14T20:48:06.4064460Z 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-08-14T20:48:06.4064950Z 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-08-14T20:48:06.4066000Z 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-08-14T20:48:06.4067230Z 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-08-14T20:48:06.4068380Z 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-08-14T20:48:06.4069470Z 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-08-14T20:48:06.4070840Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/cuda 2025-08-14T20:48:06.4071740Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/cuda/impl 2025-08-14T20:48:06.4072490Z 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-08-14T20:48:06.4073590Z 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-08-14T20:48:06.4074890Z 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-08-14T20:48:06.4075750Z 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-08-14T20:48:06.4076880Z 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-08-14T20:48:06.4077960Z 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-08-14T20:48:06.4079030Z 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-08-14T20:48:06.4080200Z 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-08-14T20:48:06.4081320Z 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-08-14T20:48:06.4082500Z 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-08-14T20:48:06.4083570Z 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-08-14T20:48:06.4084710Z 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-08-14T20:48:06.4085720Z 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-08-14T20:48:06.4086870Z 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-08-14T20:48:06.4087990Z 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-08-14T20:48:06.4089310Z 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-08-14T20:48:06.4090630Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/xpu 2025-08-14T20:48:06.4091490Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/xpu/impl 2025-08-14T20:48:06.4092300Z 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-08-14T20:48:06.4093650Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/xpu/test 2025-08-14T20:48:06.4094560Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/xpu/test/impl 2025-08-14T20:48:06.4095310Z 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-08-14T20:48:06.4096470Z 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-08-14T20:48:06.4097620Z 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-08-14T20:48:06.4098860Z 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-08-14T20:48:06.4100010Z 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-08-14T20:48:06.4101150Z 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-08-14T20:48:06.4102270Z 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-08-14T20:48:06.4103590Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/macros 2025-08-14T20:48:06.4104350Z 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-08-14T20:48:06.4105530Z 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-08-14T20:48:06.4106650Z 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-08-14T20:48:06.4107980Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/mobile 2025-08-14T20:48:06.4108750Z 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-08-14T20:48:06.4109910Z 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-08-14T20:48:06.4111000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/psimd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-08-14T20:48:06.4112530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/experiments-config.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-08-14T20:48:06.4113760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/fxdiv.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-08-14T20:48:06.4115060Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/fp16 2025-08-14T20:48:06.4115760Z 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-08-14T20:48:06.4117160Z 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-08-14T20:48:06.4118260Z 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-08-14T20:48:06.4121690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/torch_version.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-14T20:48:06.4126310Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends 2025-08-14T20:48:06.4126970Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/opt_einsum 2025-08-14T20:48:06.4127750Z 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-08-14T20:48:06.4129110Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/mha 2025-08-14T20:48:06.4296840Z 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-08-14T20:48:06.4297820Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/nnpack 2025-08-14T20:48:06.4298500Z 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-08-14T20:48:06.4299800Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/mps 2025-08-14T20:48:06.4300440Z 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-08-14T20:48:06.4301720Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/cpu 2025-08-14T20:48:06.4302350Z 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-08-14T20:48:06.4303660Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/_coreml 2025-08-14T20:48:06.4304370Z 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-08-14T20:48:06.4305520Z 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-08-14T20:48:06.4306530Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/cuda 2025-08-14T20:48:06.4320580Z 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-08-14T20:48:06.4321790Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/quantized 2025-08-14T20:48:06.4322490Z 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-08-14T20:48:06.4323840Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/miopen 2025-08-14T20:48:06.4324460Z 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-08-14T20:48:06.4325500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends 2025-08-14T20:48:06.4326770Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/mkl 2025-08-14T20:48:06.4327390Z 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-08-14T20:48:06.4328660Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/xnnpack 2025-08-14T20:48:06.4329330Z 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-08-14T20:48:06.4330570Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/kleidiai 2025-08-14T20:48:06.4331260Z 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-08-14T20:48:06.4332530Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/cusparselt 2025-08-14T20:48:06.4333200Z 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-08-14T20:48:06.4334450Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/mkldnn 2025-08-14T20:48:06.4335140Z 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-08-14T20:48:06.4336390Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/xeon 2025-08-14T20:48:06.4337060Z 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-08-14T20:48:06.4338070Z 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-08-14T20:48:06.4340070Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/_nnapi 2025-08-14T20:48:06.4340390Z 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-08-14T20:48:06.4341270Z 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-08-14T20:48:06.4342920Z 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-08-14T20:48:06.4344150Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/openmp 2025-08-14T20:48:06.4344810Z 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-08-14T20:48:06.4346120Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/cudnn 2025-08-14T20:48:06.4346810Z 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-08-14T20:48:06.4347930Z 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-08-14T20:48:06.4349300Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_decomp 2025-08-14T20:48:06.4350010Z 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-08-14T20:48:06.4351170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_decomp/decompositions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_decomp 2025-08-14T20:48:06.4353700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_decomp/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_decomp 2025-08-14T20:48:06.4354490Z 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-08-14T20:48:06.4355680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_VF.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-14T20:48:06.4357040Z creating build/bdist.macosx-14.0-arm64/wheel/torch/xpu 2025-08-14T20:48:06.4357680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/xpu/streams.py -> build/bdist.macosx-14.0-arm64/wheel/torch/xpu 2025-08-14T20:48:06.4358860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/xpu/memory.py -> build/bdist.macosx-14.0-arm64/wheel/torch/xpu 2025-08-14T20:48:06.4360010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/xpu/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/xpu 2025-08-14T20:48:06.4361460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/xpu/_gpu_trace.py -> build/bdist.macosx-14.0-arm64/wheel/torch/xpu 2025-08-14T20:48:06.4362530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/xpu/random.py -> build/bdist.macosx-14.0-arm64/wheel/torch/xpu 2025-08-14T20:48:06.4363710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/xpu/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/xpu 2025-08-14T20:48:06.4364910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_streambase.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-14T20:48:06.4366290Z creating build/bdist.macosx-14.0-arm64/wheel/torch/masked 2025-08-14T20:48:06.4367020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/masked/_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/masked 2025-08-14T20:48:06.4368880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/masked/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/masked 2025-08-14T20:48:06.4370240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/masked/_docs.py -> build/bdist.macosx-14.0-arm64/wheel/torch/masked 2025-08-14T20:48:06.4372460Z creating build/bdist.macosx-14.0-arm64/wheel/torch/masked/maskedtensor 2025-08-14T20:48:06.4373030Z 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-08-14T20:48:06.4374470Z 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-08-14T20:48:06.4375620Z 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-08-14T20:48:06.4376910Z 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-08-14T20:48:06.4378010Z 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-08-14T20:48:06.4379160Z 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-08-14T20:48:06.4402940Z 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-08-14T20:48:06.4403760Z 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-08-14T20:48:06.4404730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_tensor_docs.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-14T20:48:06.4409550Z creating build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-08-14T20:48:06.4409910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/lr_scheduler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-08-14T20:48:06.4411650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/rmsprop.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-08-14T20:48:06.4438420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/_adafactor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-08-14T20:48:06.4439410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/sparse_adam.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-08-14T20:48:06.4440480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/rprop.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-08-14T20:48:06.4441820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/sgd.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-08-14T20:48:06.4443250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-08-14T20:48:06.4445770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/adamax.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-08-14T20:48:06.4446910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/adagrad.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-08-14T20:48:06.4448690Z creating build/bdist.macosx-14.0-arm64/wheel/torch/optim/_multi_tensor 2025-08-14T20:48:06.4455920Z 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-08-14T20:48:06.4456850Z 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-08-14T20:48:06.4457920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/adamw.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-08-14T20:48:06.4458990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/swa_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-08-14T20:48:06.4460260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/lbfgs.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-08-14T20:48:06.4462780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/radam.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-08-14T20:48:06.4463780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/adam.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-08-14T20:48:06.4465210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/optimizer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-08-14T20:48:06.4466570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/nadam.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-08-14T20:48:06.4467920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/asgd.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-08-14T20:48:06.4474200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/_functional.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-08-14T20:48:06.4474510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/adadelta.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-08-14T20:48:06.4474790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_weights_only_unpickler.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-14T20:48:06.4475030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-14T20:48:06.4475150Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-14T20:48:06.4475720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/dtype_propagation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-14T20:48:06.4476970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/cudagraph_trees.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-14T20:48:06.4479070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/select_algorithm.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-14T20:48:06.4480470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/ops_handler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-14T20:48:06.4481820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/metrics.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-14T20:48:06.4482910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codecache.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-14T20:48:06.4485190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/mock_cache.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-14T20:48:06.4486090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/optimize_indexing.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-14T20:48:06.4487240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/freezing_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-14T20:48:06.4488440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/hooks.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-14T20:48:06.4489760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/cpp_builder.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-14T20:48:06.4491180Z 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-08-14T20:48:06.4492270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/config.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-14T20:48:06.4494420Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/analysis 2025-08-14T20:48:06.4494820Z 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-08-14T20:48:06.4495930Z 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-08-14T20:48:06.4496900Z 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-08-14T20:48:06.4498120Z 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-08-14T20:48:06.4499390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/comms.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-14T20:48:06.4501220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/memory.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-14T20:48:06.4502080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/mkldnn_lowerings.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-14T20:48:06.4503470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/async_compile.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-14T20:48:06.4504890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/pattern_matcher.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-14T20:48:06.4506350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/quantized_lowerings.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-14T20:48:06.4507430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/triton_bundler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-14T20:48:06.4508450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/aoti_eager.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-14T20:48:06.4509600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/graph.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-14T20:48:06.4511270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/lowering.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-14T20:48:06.4514220Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/runtime 2025-08-14T20:48:06.4514770Z 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-08-14T20:48:06.4515710Z 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-08-14T20:48:06.4517390Z 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-08-14T20:48:06.4518500Z 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-08-14T20:48:06.4519640Z 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-08-14T20:48:06.4520770Z 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-08-14T20:48:06.4521840Z 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-08-14T20:48:06.4522740Z 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-08-14T20:48:06.4523930Z 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-08-14T20:48:06.4525170Z 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-08-14T20:48:06.4526440Z 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-08-14T20:48:06.4527600Z 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-08-14T20:48:06.4528620Z 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-08-14T20:48:06.4529730Z 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-08-14T20:48:06.4530810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/jagged_lowerings.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-14T20:48:06.4531910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/test_operators.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-14T20:48:06.4532940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-14T20:48:06.4534030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_fx.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-14T20:48:06.4535790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/cudagraph_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-14T20:48:06.4537010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/sizevars.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-14T20:48:06.4538440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/ir.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-14T20:48:06.4541730Z 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-08-14T20:48:06.4542560Z 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-08-14T20:48:06.4543690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/index_propagation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-14T20:48:06.4544850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/constant_folding.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-14T20:48:06.4546470Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-08-14T20:48:06.4547180Z 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-08-14T20:48:06.4548490Z 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-08-14T20:48:06.4549760Z 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-08-14T20:48:06.4551600Z 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-08-14T20:48:06.4552700Z 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-08-14T20:48:06.4553790Z 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-08-14T20:48:06.4556350Z 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-08-14T20:48:06.4557100Z 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-08-14T20:48:06.4558390Z 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-08-14T20:48:06.4559550Z 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-08-14T20:48:06.4561430Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda 2025-08-14T20:48:06.4562180Z 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-08-14T20:48:06.4563470Z 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-08-14T20:48:06.4564670Z 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-08-14T20:48:06.4565770Z 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-08-14T20:48:06.4567370Z 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-08-14T20:48:06.4604960Z 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-08-14T20:48:06.4605780Z 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-08-14T20:48:06.4670070Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda/cutlass_lib_extensions 2025-08-14T20:48:06.4670880Z 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-08-14T20:48:06.4672180Z 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-08-14T20:48:06.4673290Z 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-08-14T20:48:06.4674710Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports 2025-08-14T20:48:06.4675650Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/cuda 2025-08-14T20:48:06.4676660Z 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-08-14T20:48:06.4678000Z 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-08-14T20:48:06.4679270Z 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-08-14T20:48:06.4680490Z 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-08-14T20:48:06.4681410Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/pydot 2025-08-14T20:48:06.4682350Z 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-08-14T20:48:06.4683340Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/scipy 2025-08-14T20:48:06.4684310Z 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-08-14T20:48:06.4685590Z 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-08-14T20:48:06.4686640Z 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-08-14T20:48:06.4687560Z 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-08-14T20:48:06.4688670Z 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-08-14T20:48:06.4689970Z 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-08-14T20:48:06.4691220Z 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-08-14T20:48:06.4692830Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/xpu 2025-08-14T20:48:06.4693490Z 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-08-14T20:48:06.4694460Z 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-08-14T20:48:06.4695650Z 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-08-14T20:48:06.4697060Z 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-08-14T20:48:06.4698630Z 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-08-14T20:48:06.4699510Z 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-08-14T20:48:06.4700740Z 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-08-14T20:48:06.4702130Z 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-08-14T20:48:06.4703790Z 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-08-14T20:48:06.4706410Z 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-08-14T20:48:06.4707810Z 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-08-14T20:48:06.4709160Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/aoti_runtime 2025-08-14T20:48:06.4710070Z 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-08-14T20:48:06.4711230Z 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-08-14T20:48:06.4712850Z 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-08-14T20:48:06.4713940Z 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-08-14T20:48:06.4715180Z 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-08-14T20:48:06.4716830Z 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-08-14T20:48:06.4718120Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/mtia 2025-08-14T20:48:06.4718810Z 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-08-14T20:48:06.4719850Z 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-08-14T20:48:06.4721040Z 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-08-14T20:48:06.4722590Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/rocm 2025-08-14T20:48:06.4723400Z 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-08-14T20:48:06.4724530Z 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-08-14T20:48:06.4725710Z 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-08-14T20:48:06.4726840Z 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-08-14T20:48:06.4727910Z 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-08-14T20:48:06.4728810Z 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-08-14T20:48:06.4729990Z 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-08-14T20:48:06.4731100Z 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-08-14T20:48:06.4732390Z 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-08-14T20:48:06.4733640Z 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-08-14T20:48:06.4735000Z 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-08-14T20:48:06.4736290Z 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-08-14T20:48:06.4737500Z 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-08-14T20:48:06.4738910Z 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-08-14T20:48:06.4740050Z 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-08-14T20:48:06.4741480Z 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-08-14T20:48:06.4742680Z 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-08-14T20:48:06.4743790Z 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-08-14T20:48:06.4745160Z 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-08-14T20:48:06.4746380Z 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-08-14T20:48:06.4747450Z 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-08-14T20:48:06.4748750Z 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-08-14T20:48:06.4749900Z 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-08-14T20:48:06.4751240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/inductor_prims.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-14T20:48:06.4752500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/virtualized.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-14T20:48:06.4753520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/test_case.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-14T20:48:06.4754680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/script.ld -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-14T20:48:06.4755820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autotune_process.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-14T20:48:06.4757160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/standalone_compile.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-14T20:48:06.4758290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/await_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-14T20:48:06.4759640Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/compile_worker 2025-08-14T20:48:06.4760410Z 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-08-14T20:48:06.4761570Z 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-08-14T20:48:06.4762480Z 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-08-14T20:48:06.4763640Z 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-08-14T20:48:06.4764810Z 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-08-14T20:48:06.4765820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/exc.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-14T20:48:06.4766940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-14T20:48:06.4768810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/debug.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-14T20:48:06.4770270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel_inputs.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-14T20:48:06.4771440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/__autotune_main__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-14T20:48:06.4772500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fuzzer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-14T20:48:06.4773980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/comm_lowering.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-14T20:48:06.4775140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/decomposition.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-14T20:48:06.4776720Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/autoheuristic 2025-08-14T20:48:06.4777580Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/autoheuristic/artifacts 2025-08-14T20:48:06.4778410Z 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-08-14T20:48:06.4779760Z 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-08-14T20:48:06.4780880Z 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-08-14T20:48:06.4782210Z 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-08-14T20:48:06.4783170Z 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-08-14T20:48:06.4784400Z 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-08-14T20:48:06.4785480Z 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-08-14T20:48:06.4786590Z 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-08-14T20:48:06.4787780Z 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-08-14T20:48:06.4788890Z 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-08-14T20:48:06.4789800Z 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-08-14T20:48:06.4791290Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-08-14T20:48:06.4791990Z 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-08-14T20:48:06.4793590Z 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-08-14T20:48:06.4794700Z 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-08-14T20:48:06.4795790Z 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-08-14T20:48:06.4797010Z 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-08-14T20:48:06.4798190Z 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-08-14T20:48:06.4799310Z 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-08-14T20:48:06.4800500Z 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-08-14T20:48:06.4802440Z 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-08-14T20:48:06.4804180Z 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-08-14T20:48:06.4805420Z 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-08-14T20:48:06.4806480Z 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-08-14T20:48:06.4807390Z 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-08-14T20:48:06.4808980Z 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-08-14T20:48:06.4810230Z 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-08-14T20:48:06.4811540Z 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-08-14T20:48:06.4812900Z 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-08-14T20:48:06.4814550Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-08-14T20:48:06.4815340Z 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-08-14T20:48:06.4816470Z 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-08-14T20:48:06.4817570Z 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-08-14T20:48:06.4818700Z 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-08-14T20:48:06.4820090Z 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-08-14T20:48:06.4821300Z 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-08-14T20:48:06.4822320Z 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-08-14T20:48:06.4823610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/addmm_gelu_pattern_2.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-08-14T20:48:06.4824800Z 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-08-14T20:48:06.4825910Z 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-08-14T20:48:06.4827100Z 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-08-14T20:48:06.4828170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/addmm_relu_pattern_2.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-08-14T20:48:06.4829310Z 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-08-14T20:48:06.4830560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/addmm_relu_pattern.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-08-14T20:48:06.4831810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/addmm_gelu_pattern.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-08-14T20:48:06.4832810Z 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-08-14T20:48:06.4833780Z 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-08-14T20:48:06.4834980Z 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-08-14T20:48:06.4836090Z 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-08-14T20:48:06.4837250Z 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-08-14T20:48:06.4838350Z 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-08-14T20:48:06.4839870Z 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-08-14T20:48:06.4840960Z 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-08-14T20:48:06.4842180Z 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-08-14T20:48:06.4843280Z 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-08-14T20:48:06.4844290Z 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-08-14T20:48:06.4845420Z 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-08-14T20:48:06.4846940Z 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-08-14T20:48:06.4848020Z 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-08-14T20:48:06.4849130Z 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-08-14T20:48:06.4850270Z 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-08-14T20:48:06.4851540Z 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-08-14T20:48:06.4852640Z 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-08-14T20:48:06.4854040Z 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-08-14T20:48:06.4855410Z 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-08-14T20:48:06.4856670Z 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-08-14T20:48:06.4858600Z 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-08-14T20:48:06.4859580Z 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-08-14T20:48:06.4860680Z 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-08-14T20:48:06.4861730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-14T20:48:06.4862850Z 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-08-14T20:48:06.4863900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/scheduler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-14T20:48:06.4866110Z 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-08-14T20:48:06.4867300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/mkldnn_ir.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-14T20:48:06.4868740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/wrapper_benchmark.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-14T20:48:06.4869580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/choices.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-14T20:48:06.4870990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/remote_cache.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-14T20:48:06.4872160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/comm_analysis.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-14T20:48:06.4873280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compiler_bisector.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-14T20:48:06.4874630Z 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-08-14T20:48:06.4875630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/bounds.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-14T20:48:06.4876800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/template_registry.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-14T20:48:06.4877870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/output_code.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-14T20:48:06.4879190Z 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-08-14T20:48:06.4880360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/freezing.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-14T20:48:06.4881460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/dependencies.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-14T20:48:06.4882690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/tiling_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-14T20:48:06.4884330Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/kernel 2025-08-14T20:48:06.4884980Z 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-08-14T20:48:06.4886180Z 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-08-14T20:48:06.4887410Z 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-08-14T20:48:06.4888420Z 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-08-14T20:48:06.4889830Z 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-08-14T20:48:06.4891010Z 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-08-14T20:48:06.4892260Z 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-08-14T20:48:06.4893540Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/kernel/flex 2025-08-14T20:48:06.4894240Z 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-08-14T20:48:06.4900360Z 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-08-14T20:48:06.4901150Z 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-08-14T20:48:06.4901890Z 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-08-14T20:48:06.4902460Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/kernel/flex/templates 2025-08-14T20:48:06.4903120Z 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-08-14T20:48:06.4904040Z 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-08-14T20:48:06.4904950Z 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-08-14T20:48:06.4905860Z 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-08-14T20:48:06.4906770Z 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-08-14T20:48:06.4907600Z 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-08-14T20:48:06.4908160Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/package 2025-08-14T20:48:06.4908700Z 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-08-14T20:48:06.4909430Z 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-08-14T20:48:06.4910200Z 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-08-14T20:48:06.4910900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/loop_body.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-14T20:48:06.4912310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/subgraph_lowering.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-14T20:48:06.4913450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/template_heuristics.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-14T20:48:06.4915460Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-14T20:48:06.4916060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_pytree.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-14T20:48:06.4917790Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark 2025-08-14T20:48:06.4918490Z 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-08-14T20:48:06.4919960Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/op_fuzzers 2025-08-14T20:48:06.4920660Z 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-08-14T20:48:06.4921880Z 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-08-14T20:48:06.4923040Z 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-08-14T20:48:06.4924210Z 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-08-14T20:48:06.4925030Z 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-08-14T20:48:06.4926240Z 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-08-14T20:48:06.4927560Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/utils 2025-08-14T20:48:06.4928220Z 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-08-14T20:48:06.4929570Z 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-08-14T20:48:06.4930440Z 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-08-14T20:48:06.4931640Z 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-08-14T20:48:06.4932750Z 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-08-14T20:48:06.4933880Z 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-08-14T20:48:06.4935150Z 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-08-14T20:48:06.4936650Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/utils/valgrind_wrapper 2025-08-14T20:48:06.4937400Z 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-08-14T20:48:06.4938770Z 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-08-14T20:48:06.4942600Z 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-08-14T20:48:06.4943670Z 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-08-14T20:48:06.4944650Z 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-08-14T20:48:06.4945660Z 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-08-14T20:48:06.4946530Z 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-08-14T20:48:06.4947530Z 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-08-14T20:48:06.4948630Z 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-08-14T20:48:06.4949920Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/examples 2025-08-14T20:48:06.4950700Z 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-08-14T20:48:06.4951760Z 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-08-14T20:48:06.4952700Z 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-08-14T20:48:06.4953800Z 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-08-14T20:48:06.4954920Z 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-08-14T20:48:06.4956050Z 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-08-14T20:48:06.4957090Z 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-08-14T20:48:06.4958270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_foreach_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-14T20:48:06.4959350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/hooks.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-14T20:48:06.4960530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_traceback.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-14T20:48:06.4961680Z 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-08-14T20:48:06.4962780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_mode_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-14T20:48:06.4963880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/checkpoint.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-14T20:48:06.4965370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/show_pickle.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-14T20:48:06.4966500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/deterministic.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-14T20:48:06.4967630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/file_baton.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-14T20:48:06.4968770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/backend_registration.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-14T20:48:06.4970060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/module_tracker.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-14T20:48:06.4971000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/model_zoo.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-14T20:48:06.4972100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_zip.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-14T20:48:06.4973300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/collect_env.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-14T20:48:06.4974580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/throughput_benchmark.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-14T20:48:06.4975610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/dlpack.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-14T20:48:06.4977030Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/_sympy 2025-08-14T20:48:06.4977680Z 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-08-14T20:48:06.4979230Z 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-08-14T20:48:06.4980100Z 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-08-14T20:48:06.4981140Z 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-08-14T20:48:06.4982430Z 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-08-14T20:48:06.4983520Z 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-08-14T20:48:06.4984690Z 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-08-14T20:48:06.4986020Z 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-08-14T20:48:06.4987250Z 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-08-14T20:48:06.4988430Z 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-08-14T20:48:06.4989790Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/serialization 2025-08-14T20:48:06.4990610Z 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-08-14T20:48:06.4991750Z 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-08-14T20:48:06.4992970Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/backcompat 2025-08-14T20:48:06.4993660Z 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-08-14T20:48:06.4994740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_cxx_pytree.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-14T20:48:06.4996110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-14T20:48:06.4997260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_functools.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-14T20:48:06.4998280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_import_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-14T20:48:06.4999490Z 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-08-14T20:48:06.5000800Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/hipify 2025-08-14T20:48:06.5001470Z 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-08-14T20:48:06.5002710Z 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-08-14T20:48:06.5006130Z 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-08-14T20:48:06.5006800Z 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-08-14T20:48:06.5007900Z 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-08-14T20:48:06.5009270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_dtype_abbrs.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-14T20:48:06.5010450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_config_typing.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-14T20:48:06.5011520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/bundled_inputs.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-14T20:48:06.5013090Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/bottleneck 2025-08-14T20:48:06.5013730Z 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-08-14T20:48:06.5014660Z 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-08-14T20:48:06.5015710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_helion.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-14T20:48:06.5016800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/mkldnn.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-14T20:48:06.5018170Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/viz 2025-08-14T20:48:06.5018800Z 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-08-14T20:48:06.5019730Z 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-08-14T20:48:06.5021000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/cpp_backtrace.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-14T20:48:06.5022240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_contextlib.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-14T20:48:06.5023540Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/jit 2025-08-14T20:48:06.5024170Z 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-08-14T20:48:06.5025090Z 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-08-14T20:48:06.5030600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_python_dispatch.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-14T20:48:06.5031920Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/tensorboard 2025-08-14T20:48:06.5032590Z 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-08-14T20:48:06.5038150Z 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-08-14T20:48:06.5046400Z 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-08-14T20:48:06.5047140Z 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-08-14T20:48:06.5048240Z 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-08-14T20:48:06.5053800Z 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-08-14T20:48:06.5054890Z 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-08-14T20:48:06.5062130Z 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-08-14T20:48:06.5063180Z 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-08-14T20:48:06.5064240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_exposed_in.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-14T20:48:06.5070230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_filelock.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-14T20:48:06.5071060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_thunk.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-14T20:48:06.5078450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_config_module.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-14T20:48:06.5079460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_device.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-14T20:48:06.5084500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/flop_counter.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-14T20:48:06.5086590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_typing_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-14T20:48:06.5087810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_stats.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-14T20:48:06.5089300Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/model_dump 2025-08-14T20:48:06.5089980Z 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-08-14T20:48:06.5097080Z 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-08-14T20:48:06.5097860Z 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-08-14T20:48:06.5105040Z 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-08-14T20:48:06.5105780Z 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-08-14T20:48:06.5107050Z 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-08-14T20:48:06.5108140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/cpp_extension.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-14T20:48:06.5110050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_backport_slots.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-14T20:48:06.5111150Z 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-08-14T20:48:06.5112240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_triton.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-14T20:48:06.5113430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_content_store.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-14T20:48:06.5114770Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/data 2025-08-14T20:48:06.5115800Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/_utils 2025-08-14T20:48:06.5116410Z 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-08-14T20:48:06.5117830Z 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-08-14T20:48:06.5118650Z 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-08-14T20:48:06.5119830Z 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-08-14T20:48:06.5120900Z 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-08-14T20:48:06.5122160Z 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-08-14T20:48:06.5123090Z 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-08-14T20:48:06.5124280Z 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-08-14T20:48:06.5125410Z 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-08-14T20:48:06.5126480Z 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-08-14T20:48:06.5127750Z 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-08-14T20:48:06.5128960Z 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-08-14T20:48:06.5130110Z 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-08-14T20:48:06.5131980Z 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-08-14T20:48:06.5132950Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes 2025-08-14T20:48:06.5133640Z 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-08-14T20:48:06.5135000Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/dataframe 2025-08-14T20:48:06.5135780Z 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-08-14T20:48:06.5137050Z 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-08-14T20:48:06.5138160Z 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-08-14T20:48:06.5139310Z 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-08-14T20:48:06.5140510Z 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-08-14T20:48:06.5141720Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/iter 2025-08-14T20:48:06.5142510Z 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-08-14T20:48:06.5143610Z 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-08-14T20:48:06.5144710Z 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-08-14T20:48:06.5145920Z 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-08-14T20:48:06.5147060Z 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-08-14T20:48:06.5148290Z 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-08-14T20:48:06.5149390Z 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-08-14T20:48:06.5150830Z 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-08-14T20:48:06.5151700Z 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-08-14T20:48:06.5152760Z 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-08-14T20:48:06.5153820Z 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-08-14T20:48:06.5154930Z 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-08-14T20:48:06.5156110Z 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-08-14T20:48:06.5157200Z 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-08-14T20:48:06.5158330Z 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-08-14T20:48:06.5159600Z 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-08-14T20:48:06.5160930Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/utils 2025-08-14T20:48:06.5161640Z 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-08-14T20:48:06.5162720Z 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-08-14T20:48:06.5163640Z 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-08-14T20:48:06.5164760Z 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-08-14T20:48:06.5165880Z 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-08-14T20:48:06.5167390Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/map 2025-08-14T20:48:06.5168100Z 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-08-14T20:48:06.5169230Z 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-08-14T20:48:06.5170370Z 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-08-14T20:48:06.5171470Z 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-08-14T20:48:06.5172710Z 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-08-14T20:48:06.5173830Z 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-08-14T20:48:06.5174970Z 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-08-14T20:48:06.5176300Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/_strobelight 2025-08-14T20:48:06.5177040Z 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-08-14T20:48:06.5178220Z 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-08-14T20:48:06.5178970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_ordered_set.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-14T20:48:06.5180120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/weak.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-14T20:48:06.5181240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/mobile_optimizer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-14T20:48:06.5182310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/overrides.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-14T20:48:06.5184010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_namedtensor_internals.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-14T20:48:06.5185100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/return_types.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-14T20:48:06.5186340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/types.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-14T20:48:06.5187470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_linalg_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-14T20:48:06.5188530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/__config__.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-14T20:48:06.5189720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_tensor.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-14T20:48:06.5191920Z creating build/bdist.macosx-14.0-arm64/wheel/torch/contrib 2025-08-14T20:48:06.5192370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/contrib/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/contrib 2025-08-14T20:48:06.5193060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/contrib/_tensorboard_vis.py -> build/bdist.macosx-14.0-arm64/wheel/torch/contrib 2025-08-14T20:48:06.5194110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/random.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-14T20:48:06.5195230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/hub.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-14T20:48:06.5197030Z creating build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-08-14T20:48:06.5197570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/observer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-08-14T20:48:06.5198750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fuse_modules.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-08-14T20:48:06.5199850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/quantization_mappings.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-08-14T20:48:06.5200940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/quantize.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-08-14T20:48:06.5202260Z creating build/bdist.macosx-14.0-arm64/wheel/torch/quantization/fx 2025-08-14T20:48:06.5202980Z 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-08-14T20:48:06.5204130Z 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-08-14T20:48:06.5205200Z 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-08-14T20:48:06.5206410Z 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-08-14T20:48:06.5207500Z 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-08-14T20:48:06.5212950Z 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-08-14T20:48:06.5221050Z 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-08-14T20:48:06.5221950Z 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-08-14T20:48:06.5225130Z 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-08-14T20:48:06.5231380Z 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-08-14T20:48:06.5232250Z 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-08-14T20:48:06.5233410Z 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-08-14T20:48:06.5241190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/_numeric_suite.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-08-14T20:48:06.5241970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fake_quantize.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-08-14T20:48:06.5243050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/qconfig.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-08-14T20:48:06.5250320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-08-14T20:48:06.5251580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/_quantized_conversions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-08-14T20:48:06.5255680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/stubs.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-08-14T20:48:06.5256390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-08-14T20:48:06.5258710Z 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-08-14T20:48:06.5259500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/quantize_jit.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-08-14T20:48:06.5260670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/quant_type.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-08-14T20:48:06.5265210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/quantize_fx.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-08-14T20:48:06.5268240Z 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-08-14T20:48:06.5273520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_tensor_str.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-14T20:48:06.5274650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_sources.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-14T20:48:06.5277760Z creating build/bdist.macosx-14.0-arm64/wheel/torch/special 2025-08-14T20:48:06.5278260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/special/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/special 2025-08-14T20:48:06.5283470Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-08-14T20:48:06.5283900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_profiler.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-08-14T20:48:06.5286540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_onnx.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-08-14T20:48:06.5290700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_distributed_c10d.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-08-14T20:48:06.5291720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_autograd.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-08-14T20:48:06.5295500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_monitor.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-08-14T20:48:06.5298480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_itt.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-08-14T20:48:06.5303950Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_C/_export 2025-08-14T20:48:06.5304420Z 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-08-14T20:48:06.5305520Z 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-08-14T20:48:06.5308700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_lazy.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-08-14T20:48:06.5313060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/__init__.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-08-14T20:48:06.5317500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_nvtx.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-08-14T20:48:06.5323560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_cpu.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-08-14T20:48:06.5325590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_nn.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-08-14T20:48:06.5331500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_cusparselt.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-08-14T20:48:06.5332390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_instruction_counter.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-08-14T20:48:06.5333910Z 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-08-14T20:48:06.5340780Z 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-08-14T20:48:06.5341540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_functorch.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-08-14T20:48:06.5349110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_VariableFunctions.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-08-14T20:48:06.5364520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_distributed_rpc.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-08-14T20:48:06.5365540Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_C/_dynamo 2025-08-14T20:48:06.5366230Z 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-08-14T20:48:06.5370690Z 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-08-14T20:48:06.5373470Z 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-08-14T20:48:06.5374370Z 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-08-14T20:48:06.5380250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_verbose.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-08-14T20:48:06.5387290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_aoti.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-08-14T20:48:06.5388640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_functions.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-08-14T20:48:06.5389830Z 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-08-14T20:48:06.5397150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_cudnn.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-08-14T20:48:06.5397980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_distributed_autograd.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-08-14T20:48:06.5407410Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing 2025-08-14T20:48:06.5408250Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-08-14T20:48:06.5409110Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/generated 2025-08-14T20:48:06.5409840Z 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-08-14T20:48:06.5410800Z 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-08-14T20:48:06.5416170Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/opinfo 2025-08-14T20:48:06.5416840Z 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-08-14T20:48:06.5417780Z 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-08-14T20:48:06.5424020Z 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-08-14T20:48:06.5424750Z 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-08-14T20:48:06.5426260Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/opinfo/definitions 2025-08-14T20:48:06.5427080Z 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-08-14T20:48:06.5428240Z 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-08-14T20:48:06.5429310Z 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-08-14T20:48:06.5430750Z 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-08-14T20:48:06.5432410Z 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-08-14T20:48:06.5438360Z 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-08-14T20:48:06.5439000Z 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-08-14T20:48:06.5439440Z 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-08-14T20:48:06.5439850Z 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-08-14T20:48:06.5440190Z 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-08-14T20:48:06.5440360Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/test_module 2025-08-14T20:48:06.5440830Z 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-08-14T20:48:06.5441850Z 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-08-14T20:48:06.5442930Z 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-08-14T20:48:06.5444070Z 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-08-14T20:48:06.5445140Z 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-08-14T20:48:06.5446320Z 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-08-14T20:48:06.5447640Z 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-08-14T20:48:06.5448800Z 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-08-14T20:48:06.5449970Z 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-08-14T20:48:06.5452310Z 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-08-14T20:48:06.5453340Z 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-08-14T20:48:06.5454400Z 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-08-14T20:48:06.5455720Z 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-08-14T20:48:06.5457180Z 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-08-14T20:48:06.5458380Z 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-08-14T20:48:06.5459960Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed 2025-08-14T20:48:06.5460540Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/_tensor 2025-08-14T20:48:06.5461330Z 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-08-14T20:48:06.5462390Z 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-08-14T20:48:06.5463610Z 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-08-14T20:48:06.5465090Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/nn 2025-08-14T20:48:06.5465710Z 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-08-14T20:48:06.5466830Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/nn/api 2025-08-14T20:48:06.5467560Z 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-08-14T20:48:06.5468550Z 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-08-14T20:48:06.5469830Z 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-08-14T20:48:06.5470970Z 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-08-14T20:48:06.5471990Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/_shard 2025-08-14T20:48:06.5472750Z 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-08-14T20:48:06.5474170Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/_shard/sharded_tensor 2025-08-14T20:48:06.5474950Z 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-08-14T20:48:06.5476250Z 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-08-14T20:48:06.5477350Z 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-08-14T20:48:06.5478360Z 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-08-14T20:48:06.5479650Z 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-08-14T20:48:06.5480740Z 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-08-14T20:48:06.5482040Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/rpc 2025-08-14T20:48:06.5482890Z 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-08-14T20:48:06.5484100Z 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-08-14T20:48:06.5485210Z 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-08-14T20:48:06.5486130Z 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-08-14T20:48:06.5487970Z 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-08-14T20:48:06.5489160Z 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-08-14T20:48:06.5490500Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/rpc/jit 2025-08-14T20:48:06.5491220Z 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-08-14T20:48:06.5492160Z 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-08-14T20:48:06.5493310Z 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-08-14T20:48:06.5494670Z 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-08-14T20:48:06.5496020Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/rpc/examples 2025-08-14T20:48:06.5496750Z 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-08-14T20:48:06.5497780Z 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-08-14T20:48:06.5498960Z 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-08-14T20:48:06.5500050Z 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-08-14T20:48:06.5502570Z 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-08-14T20:48:06.5503520Z 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-08-14T20:48:06.5508250Z 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-08-14T20:48:06.5517600Z 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-08-14T20:48:06.5519510Z 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-08-14T20:48:06.5524290Z 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-08-14T20:48:06.5525690Z 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-08-14T20:48:06.5532560Z 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-08-14T20:48:06.5533940Z 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-08-14T20:48:06.5539490Z 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-08-14T20:48:06.5540280Z 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-08-14T20:48:06.5541750Z 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-08-14T20:48:06.5543000Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/optests 2025-08-14T20:48:06.5543820Z 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-08-14T20:48:06.5545390Z 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-08-14T20:48:06.5546450Z 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-08-14T20:48:06.5547940Z 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-08-14T20:48:06.5550450Z 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-08-14T20:48:06.5553640Z 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-08-14T20:48:06.5555110Z 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-08-14T20:48:06.5571540Z 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-08-14T20:48:06.5572800Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/codegen 2025-08-14T20:48:06.5573900Z 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-08-14T20:48:06.5580030Z 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-08-14T20:48:06.5581080Z 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-08-14T20:48:06.5589400Z 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-08-14T20:48:06.5590330Z 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-08-14T20:48:06.5598530Z 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-08-14T20:48:06.5600790Z 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-08-14T20:48:06.5601580Z 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-08-14T20:48:06.5606280Z 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-08-14T20:48:06.5607520Z 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-08-14T20:48:06.5608700Z 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-08-14T20:48:06.5615240Z 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-08-14T20:48:06.5617570Z 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-08-14T20:48:06.5618690Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/data 2025-08-14T20:48:06.5619500Z 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-08-14T20:48:06.5623810Z 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-08-14T20:48:06.5625080Z 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-08-14T20:48:06.5631080Z 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-08-14T20:48:06.5633860Z 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-08-14T20:48:06.5634870Z 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-08-14T20:48:06.5635950Z 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-08-14T20:48:06.5637200Z 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-08-14T20:48:06.5638320Z 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-08-14T20:48:06.5639420Z 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-08-14T20:48:06.5640550Z 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-08-14T20:48:06.5641820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_creation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing 2025-08-14T20:48:06.5642980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing 2025-08-14T20:48:06.5644050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_comparison.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing 2025-08-14T20:48:06.5645490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing 2025-08-14T20:48:06.5646630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_vmap_internals.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-14T20:48:06.5651260Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_library 2025-08-14T20:48:06.5651640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_library/triton.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_library 2025-08-14T20:48:06.5654820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_library/fake_profile.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_library 2025-08-14T20:48:06.5655590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_library/infer_schema.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_library 2025-08-14T20:48:06.5656710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_library/simple_registry.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_library 2025-08-14T20:48:06.5658570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_library/custom_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_library 2025-08-14T20:48:06.5660220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_library/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_library 2025-08-14T20:48:06.5661500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_library/fake_impl.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_library 2025-08-14T20:48:06.5662650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_library/autograd.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_library 2025-08-14T20:48:06.5663730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_library/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_library 2025-08-14T20:48:06.5668380Z 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-08-14T20:48:06.5669120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/functional.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-14T20:48:06.5678790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lowrank.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-14T20:48:06.5684210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_appdirs.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-14T20:48:06.5685500Z creating build/bdist.macosx-14.0-arm64/wheel/torch/accelerator 2025-08-14T20:48:06.5686170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/accelerator/memory.py -> build/bdist.macosx-14.0-arm64/wheel/torch/accelerator 2025-08-14T20:48:06.5687350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/accelerator/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/accelerator 2025-08-14T20:48:06.5688780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/accelerator/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/accelerator 2025-08-14T20:48:06.5690300Z creating build/bdist.macosx-14.0-arm64/wheel/torch/amp 2025-08-14T20:48:06.5691010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/amp/autocast_mode.py -> build/bdist.macosx-14.0-arm64/wheel/torch/amp 2025-08-14T20:48:06.5692430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/amp/grad_scaler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/amp 2025-08-14T20:48:06.5693720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/amp/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/amp 2025-08-14T20:48:06.5695610Z creating build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-08-14T20:48:06.5695950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_ir_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-08-14T20:48:06.5697020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_monkeytype_config.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-08-14T20:48:06.5698060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_decompositions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-08-14T20:48:06.5699180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_recursive.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-08-14T20:48:06.5700480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_logging.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-08-14T20:48:06.5701590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_serialization.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-08-14T20:48:06.5702690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/quantized.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-08-14T20:48:06.5704080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_script.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-08-14T20:48:06.5705300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_script.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-08-14T20:48:06.5706480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_shape_functions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-08-14T20:48:06.5707980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_decomposition_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-08-14T20:48:06.5710930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_freeze.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-08-14T20:48:06.5715170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_pickle.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-08-14T20:48:06.5719140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_check.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-08-14T20:48:06.5723750Z 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-08-14T20:48:06.5724600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/frontend.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-08-14T20:48:06.5729040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/supported_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-08-14T20:48:06.5733670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-08-14T20:48:06.5736820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_fuser.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-08-14T20:48:06.5738120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_builtins.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-08-14T20:48:06.5741940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_dataclass_impls.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-08-14T20:48:06.5745010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_trace.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-08-14T20:48:06.5747310Z creating build/bdist.macosx-14.0-arm64/wheel/torch/jit/_passes 2025-08-14T20:48:06.5748050Z 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-08-14T20:48:06.5749210Z 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-08-14T20:48:06.5750030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/generate_bytecode.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-08-14T20:48:06.5762730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_state.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-08-14T20:48:06.5763790Z creating build/bdist.macosx-14.0-arm64/wheel/torch/jit/mobile 2025-08-14T20:48:06.5764420Z 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-08-14T20:48:06.5766130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_async.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-08-14T20:48:06.5767220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/annotations.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-08-14T20:48:06.5768640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_await.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-08-14T20:48:06.5770600Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-14T20:48:06.5771020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/package.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-14T20:48:06.5772220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/cache_size.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-14T20:48:06.5773250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/callback.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-14T20:48:06.5774400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/comptime.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-14T20:48:06.5775550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/logging.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-14T20:48:06.5776710Z 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-08-14T20:48:06.5777770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/hooks.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-14T20:48:06.5778920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/precompile_context.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-14T20:48:06.5780170Z 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-08-14T20:48:06.5781270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/config.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-14T20:48:06.5782500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/guards.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-14T20:48:06.5784870Z 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-08-14T20:48:06.5785770Z 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-08-14T20:48:06.5786900Z 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-08-14T20:48:06.5788070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/device_interface.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-14T20:48:06.5790210Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/backends 2025-08-14T20:48:06.5790540Z 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-08-14T20:48:06.5791460Z 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-08-14T20:48:06.5792410Z 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-08-14T20:48:06.5793500Z 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-08-14T20:48:06.5794780Z 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-08-14T20:48:06.5795860Z 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-08-14T20:48:06.5796970Z 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-08-14T20:48:06.5798080Z 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-08-14T20:48:06.5799230Z 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-08-14T20:48:06.5800400Z 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-08-14T20:48:06.5801470Z 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-08-14T20:48:06.5802590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/graph_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-14T20:48:06.5803670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-14T20:48:06.5804910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/mutation_guard.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-14T20:48:06.5805940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/types.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-14T20:48:06.5807080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/metrics_context.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-14T20:48:06.5808210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/bytecode_analysis.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-14T20:48:06.5809330Z 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-08-14T20:48:06.5810340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/external_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-14T20:48:06.5811370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/test_case.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-14T20:48:06.5812450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/distributed.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-14T20:48:06.5813550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/resume_execution.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-14T20:48:06.5814740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/output_graph.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-14T20:48:06.5816860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/compiled_autograd.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-14T20:48:06.5817820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/exc.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-14T20:48:06.5819030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-14T20:48:06.5821510Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-08-14T20:48:06.5821950Z 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-08-14T20:48:06.5823490Z 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-08-14T20:48:06.5824750Z 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-08-14T20:48:06.5828970Z 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-08-14T20:48:06.5830470Z 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-08-14T20:48:06.5837800Z 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-08-14T20:48:06.5838860Z 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-08-14T20:48:06.5845140Z 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-08-14T20:48:06.5846320Z 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-08-14T20:48:06.5851880Z 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-08-14T20:48:06.5854230Z 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-08-14T20:48:06.5855350Z 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-08-14T20:48:06.5857740Z 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-08-14T20:48:06.5858380Z 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-08-14T20:48:06.5859620Z 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-08-14T20:48:06.5860850Z 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-08-14T20:48:06.5862620Z 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-08-14T20:48:06.5863660Z 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-08-14T20:48:06.5864800Z 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-08-14T20:48:06.5866540Z 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-08-14T20:48:06.5867810Z 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-08-14T20:48:06.5869180Z 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-08-14T20:48:06.5870440Z 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-08-14T20:48:06.5872990Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/repro 2025-08-14T20:48:06.5873460Z 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-08-14T20:48:06.5874900Z 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-08-14T20:48:06.5875710Z 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-08-14T20:48:06.5877190Z 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-08-14T20:48:06.5878470Z 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-08-14T20:48:06.5879550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/replay_record.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-14T20:48:06.5880740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/side_effects.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-14T20:48:06.5882800Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/polyfills 2025-08-14T20:48:06.5883310Z 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-08-14T20:48:06.5888130Z 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-08-14T20:48:06.5889280Z 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-08-14T20:48:06.5895730Z 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-08-14T20:48:06.5897450Z 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-08-14T20:48:06.5903470Z 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-08-14T20:48:06.5904300Z 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-08-14T20:48:06.5911910Z 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-08-14T20:48:06.5912670Z 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-08-14T20:48:06.5919700Z 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-08-14T20:48:06.5920340Z 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-08-14T20:48:06.5921500Z 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-08-14T20:48:06.5926910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/trace_rules.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-14T20:48:06.5929150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/bytecode_transformation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-14T20:48:06.5934560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/convert_frame.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-14T20:48:06.5935700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/funcname_cache.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-14T20:48:06.5937780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/testing.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-14T20:48:06.5944480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/pgo.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-14T20:48:06.5945480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/profiler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-14T20:48:06.5946590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/symbolic_convert.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-14T20:48:06.5952940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/codegen.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-14T20:48:06.5953840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/source.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-14T20:48:06.5955230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/eval_frame.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-14T20:48:06.5956780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/code_context.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-14T20:48:06.5957980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/graph_deduplication.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-14T20:48:06.5960620Z 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-08-14T20:48:06.5963870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/debug_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-14T20:48:06.5965860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/decorators.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-14T20:48:06.5967180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_environment.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-14T20:48:06.5969110Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_lazy 2025-08-14T20:48:06.5969430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy/metrics.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_lazy 2025-08-14T20:48:06.5975520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy/config.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_lazy 2025-08-14T20:48:06.5976330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_lazy 2025-08-14T20:48:06.5979630Z 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-08-14T20:48:06.5983760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy/debug.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_lazy 2025-08-14T20:48:06.5984710Z 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-08-14T20:48:06.5985720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy/ir_cache.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_lazy 2025-08-14T20:48:06.5986820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy/ts_backend.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_lazy 2025-08-14T20:48:06.5988040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy/computation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_lazy 2025-08-14T20:48:06.5989170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy/closure.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_lazy 2025-08-14T20:48:06.5990470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy/device_context.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_lazy 2025-08-14T20:48:06.5991500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/storage.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-14T20:48:06.5993020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C.cpython-312-darwin.so -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-14T20:48:06.5995120Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao 2025-08-14T20:48:06.5995760Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn 2025-08-14T20:48:06.5996670Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/qat 2025-08-14T20:48:06.5997530Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/qat/dynamic 2025-08-14T20:48:06.5998230Z 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-08-14T20:48:06.5999690Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/qat/dynamic/modules 2025-08-14T20:48:06.6000450Z 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-08-14T20:48:06.6001500Z 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-08-14T20:48:06.6002580Z 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-08-14T20:48:06.6004000Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/qat/modules 2025-08-14T20:48:06.6004780Z 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-08-14T20:48:06.6005780Z 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-08-14T20:48:06.6009920Z 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-08-14T20:48:06.6010780Z 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-08-14T20:48:06.6015750Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized 2025-08-14T20:48:06.6016390Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/dynamic 2025-08-14T20:48:06.6017070Z 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-08-14T20:48:06.6018360Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/dynamic/modules 2025-08-14T20:48:06.6019130Z 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-08-14T20:48:06.6023390Z 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-08-14T20:48:06.6024810Z 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-08-14T20:48:06.6031500Z 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-08-14T20:48:06.6032650Z 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-08-14T20:48:06.6033750Z 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-08-14T20:48:06.6039550Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/modules 2025-08-14T20:48:06.6040000Z 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-08-14T20:48:06.6041190Z 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-08-14T20:48:06.6046930Z 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-08-14T20:48:06.6049240Z 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-08-14T20:48:06.6054720Z 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-08-14T20:48:06.6055840Z 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-08-14T20:48:06.6057100Z 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-08-14T20:48:06.6062660Z 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-08-14T20:48:06.6064020Z 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-08-14T20:48:06.6070080Z 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-08-14T20:48:06.6070910Z 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-08-14T20:48:06.6073430Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/reference 2025-08-14T20:48:06.6073820Z 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-08-14T20:48:06.6075300Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/reference/modules 2025-08-14T20:48:06.6076070Z 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-08-14T20:48:06.6077300Z 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-08-14T20:48:06.6078470Z 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-08-14T20:48:06.6079670Z 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-08-14T20:48:06.6080770Z 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-08-14T20:48:06.6081840Z 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-08-14T20:48:06.6083070Z 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-08-14T20:48:06.6084590Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantizable 2025-08-14T20:48:06.6085240Z 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-08-14T20:48:06.6086750Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantizable/modules 2025-08-14T20:48:06.6087450Z 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-08-14T20:48:06.6088820Z 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-08-14T20:48:06.6090140Z 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-08-14T20:48:06.6091930Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic 2025-08-14T20:48:06.6092420Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/qat 2025-08-14T20:48:06.6093180Z 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-08-14T20:48:06.6094740Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/qat/modules 2025-08-14T20:48:06.6095390Z 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-08-14T20:48:06.6096820Z 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-08-14T20:48:06.6097990Z 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-08-14T20:48:06.6099040Z 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-08-14T20:48:06.6100340Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/quantized 2025-08-14T20:48:06.6101170Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/quantized/dynamic 2025-08-14T20:48:06.6101950Z 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-08-14T20:48:06.6103240Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/quantized/dynamic/modules 2025-08-14T20:48:06.6104030Z 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-08-14T20:48:06.6105240Z 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-08-14T20:48:06.6106310Z 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-08-14T20:48:06.6107650Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/quantized/modules 2025-08-14T20:48:06.6108450Z 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-08-14T20:48:06.6109550Z 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-08-14T20:48:06.6110650Z 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-08-14T20:48:06.6111810Z 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-08-14T20:48:06.6112960Z 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-08-14T20:48:06.6114020Z 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-08-14T20:48:06.6115360Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/modules 2025-08-14T20:48:06.6116090Z 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-08-14T20:48:06.6117250Z 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-08-14T20:48:06.6118520Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/sparse 2025-08-14T20:48:06.6119380Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/sparse/quantized 2025-08-14T20:48:06.6120250Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/sparse/quantized/dynamic 2025-08-14T20:48:06.6121010Z 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-08-14T20:48:06.6122310Z 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-08-14T20:48:06.6123440Z 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-08-14T20:48:06.6124510Z 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-08-14T20:48:06.6125610Z 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-08-14T20:48:06.6126680Z 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-08-14T20:48:06.6127980Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/ns 2025-08-14T20:48:06.6128830Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/ns/fx 2025-08-14T20:48:06.6129490Z 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-08-14T20:48:06.6130940Z 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-08-14T20:48:06.6132270Z 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-08-14T20:48:06.6133220Z 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-08-14T20:48:06.6134090Z 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-08-14T20:48:06.6135450Z 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-08-14T20:48:06.6136650Z 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-08-14T20:48:06.6137830Z 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-08-14T20:48:06.6139310Z 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-08-14T20:48:06.6140570Z 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-08-14T20:48:06.6141630Z 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-08-14T20:48:06.6142910Z 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-08-14T20:48:06.6143870Z 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-08-14T20:48:06.6145170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao 2025-08-14T20:48:06.6146630Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization 2025-08-14T20:48:06.6147410Z 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-08-14T20:48:06.6148820Z 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-08-14T20:48:06.6149980Z 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-08-14T20:48:06.6151270Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/backend_config 2025-08-14T20:48:06.6152060Z 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-08-14T20:48:06.6153370Z 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-08-14T20:48:06.6154420Z 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-08-14T20:48:06.6155550Z 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-08-14T20:48:06.6160160Z 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-08-14T20:48:06.6162210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config/observation_type.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/backend_config 2025-08-14T20:48:06.6163160Z 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-08-14T20:48:06.6164430Z 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-08-14T20:48:06.6165600Z 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-08-14T20:48:06.6166830Z 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-08-14T20:48:06.6168060Z 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-08-14T20:48:06.6169280Z 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-08-14T20:48:06.6170420Z 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-08-14T20:48:06.6171560Z 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-08-14T20:48:06.6172720Z 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-08-14T20:48:06.6174130Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/pt2e 2025-08-14T20:48:06.6174880Z 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-08-14T20:48:06.6176030Z 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-08-14T20:48:06.6177150Z 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-08-14T20:48:06.6178590Z 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-08-14T20:48:06.6179870Z 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-08-14T20:48:06.6181180Z 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-08-14T20:48:06.6182280Z 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-08-14T20:48:06.6183470Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/pt2e/representation 2025-08-14T20:48:06.6184200Z 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-08-14T20:48:06.6186780Z 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-08-14T20:48:06.6187640Z 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-08-14T20:48:06.6194540Z 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-08-14T20:48:06.6195700Z 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-08-14T20:48:06.6202630Z 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-08-14T20:48:06.6203510Z 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-08-14T20:48:06.6205440Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx 2025-08-14T20:48:06.6206000Z 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-08-14T20:48:06.6210430Z 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-08-14T20:48:06.6211180Z 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-08-14T20:48:06.6219170Z 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-08-14T20:48:06.6220410Z 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-08-14T20:48:06.6221570Z 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-08-14T20:48:06.6227260Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx/_model_report 2025-08-14T20:48:06.6227790Z 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-08-14T20:48:06.6234610Z 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-08-14T20:48:06.6235740Z 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-08-14T20:48:06.6237510Z 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-08-14T20:48:06.6238440Z 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-08-14T20:48:06.6244040Z 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-08-14T20:48:06.6245050Z 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-08-14T20:48:06.6251310Z 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-08-14T20:48:06.6252280Z 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-08-14T20:48:06.6259930Z 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-08-14T20:48:06.6260770Z 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-08-14T20:48:06.6261920Z 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-08-14T20:48:06.6268600Z 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-08-14T20:48:06.6269350Z 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-08-14T20:48:06.6277800Z 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-08-14T20:48:06.6278480Z 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-08-14T20:48:06.6280300Z 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-08-14T20:48:06.6281550Z 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-08-14T20:48:06.6282820Z 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-08-14T20:48:06.6284060Z 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-08-14T20:48:06.6285600Z 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-08-14T20:48:06.6286580Z 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-08-14T20:48:06.6287680Z 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-08-14T20:48:06.6288760Z 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-08-14T20:48:06.6289840Z 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-08-14T20:48:06.6291090Z 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-08-14T20:48:06.6292260Z 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-08-14T20:48:06.6293350Z 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-08-14T20:48:06.6294790Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/quantizer 2025-08-14T20:48:06.6295860Z 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-08-14T20:48:06.6296640Z 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-08-14T20:48:06.6298100Z 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-08-14T20:48:06.6299160Z 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-08-14T20:48:06.6300260Z 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-08-14T20:48:06.6301480Z 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-08-14T20:48:06.6302500Z 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-08-14T20:48:06.6303500Z 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-08-14T20:48:06.6304650Z 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-08-14T20:48:06.6305990Z 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-08-14T20:48:06.6306980Z 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-08-14T20:48:06.6308480Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning 2025-08-14T20:48:06.6309330Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/sparsifier 2025-08-14T20:48:06.6310120Z 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-08-14T20:48:06.6311220Z 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-08-14T20:48:06.6312070Z 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-08-14T20:48:06.6313230Z 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-08-14T20:48:06.6314260Z 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-08-14T20:48:06.6315710Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental 2025-08-14T20:48:06.6316620Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/data_sparsifier 2025-08-14T20:48:06.6317510Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/data_sparsifier/lightning 2025-08-14T20:48:06.6318450Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks 2025-08-14T20:48:06.6319310Z 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-08-14T20:48:06.6320560Z 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-08-14T20:48:06.6321460Z 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-08-14T20:48:06.6322550Z 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-08-14T20:48:06.6323440Z 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-08-14T20:48:06.6324620Z 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-08-14T20:48:06.6325800Z 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-08-14T20:48:06.6326950Z 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-08-14T20:48:06.6328170Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/pruner 2025-08-14T20:48:06.6328930Z 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-08-14T20:48:06.6330080Z 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-08-14T20:48:06.6331140Z 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-08-14T20:48:06.6332290Z 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-08-14T20:48:06.6333420Z 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-08-14T20:48:06.6334750Z 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-08-14T20:48:06.6335850Z 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-08-14T20:48:06.6336930Z 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-08-14T20:48:06.6338000Z 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-08-14T20:48:06.6339110Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/activation_sparsifier 2025-08-14T20:48:06.6339980Z 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-08-14T20:48:06.6341220Z 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-08-14T20:48:06.6342180Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/data_scheduler 2025-08-14T20:48:06.6342910Z 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-08-14T20:48:06.6344110Z 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-08-14T20:48:06.6345270Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/scheduler 2025-08-14T20:48:06.6345990Z 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-08-14T20:48:06.6347140Z 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-08-14T20:48:06.6348180Z 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-08-14T20:48:06.6349070Z 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-08-14T20:48:06.6350160Z 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-08-14T20:48:06.6351330Z 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-08-14T20:48:06.6352810Z creating build/bdist.macosx-14.0-arm64/wheel/torch/mtia 2025-08-14T20:48:06.6353500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/mtia/memory.py -> build/bdist.macosx-14.0-arm64/wheel/torch/mtia 2025-08-14T20:48:06.6354760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/mtia/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/mtia 2025-08-14T20:48:06.6355940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/mtia/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/mtia 2025-08-14T20:48:06.6357840Z creating build/bdist.macosx-14.0-arm64/wheel/torch/lib 2025-08-14T20:48:06.6358140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libtorch_python.dylib -> build/bdist.macosx-14.0-arm64/wheel/torch/lib 2025-08-14T20:48:06.6809830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libtorch.dylib -> build/bdist.macosx-14.0-arm64/wheel/torch/lib 2025-08-14T20:48:06.6812060Z 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-08-14T20:48:06.6812550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libomp.dylib -> build/bdist.macosx-14.0-arm64/wheel/torch/lib 2025-08-14T20:48:06.6818160Z creating build/bdist.macosx-14.0-arm64/wheel/torch/lib/libshm_windows 2025-08-14T20:48:06.6818640Z 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-08-14T20:48:06.6820040Z creating build/bdist.macosx-14.0-arm64/wheel/torch/lib/libshm 2025-08-14T20:48:06.6820710Z 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-08-14T20:48:06.6821800Z 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-08-14T20:48:06.6823030Z 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-08-14T20:48:06.6824320Z 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-08-14T20:48:06.6825720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libtorch_cpu.dylib -> build/bdist.macosx-14.0-arm64/wheel/torch/lib 2025-08-14T20:48:07.8694840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libc10.dylib -> build/bdist.macosx-14.0-arm64/wheel/torch/lib 2025-08-14T20:48:07.8702570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libshm.dylib -> build/bdist.macosx-14.0-arm64/wheel/torch/lib 2025-08-14T20:48:07.8704290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_VF.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-14T20:48:07.8712270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_compile.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-14T20:48:07.8713510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/py.typed -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-14T20:48:07.8714370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lobpcg.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-14T20:48:07.8716930Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_refs 2025-08-14T20:48:07.8717650Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_refs/linalg 2025-08-14T20:48:07.8718370Z 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-08-14T20:48:07.8720050Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_refs/nn 2025-08-14T20:48:07.8720740Z 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-08-14T20:48:07.8722440Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_refs/nn/functional 2025-08-14T20:48:07.8723120Z 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-08-14T20:48:07.8724710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/_conversions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_refs 2025-08-14T20:48:07.8726020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_refs 2025-08-14T20:48:07.8773600Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_refs/special 2025-08-14T20:48:07.8774170Z 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-08-14T20:48:07.8775340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/fft.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_refs 2025-08-14T20:48:07.8776900Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fft 2025-08-14T20:48:07.8777710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fft/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fft 2025-08-14T20:48:07.8957730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/__future__.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-14T20:48:07.8959340Z creating build/bdist.macosx-14.0-arm64/wheel/torch/profiler 2025-08-14T20:48:07.8960060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/profiler/_memory_profiler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/profiler 2025-08-14T20:48:07.8966520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/profiler/itt.py -> build/bdist.macosx-14.0-arm64/wheel/torch/profiler 2025-08-14T20:48:07.8967710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/profiler/_pattern_matcher.py -> build/bdist.macosx-14.0-arm64/wheel/torch/profiler 2025-08-14T20:48:07.8969090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/profiler/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/profiler 2025-08-14T20:48:07.8970250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/profiler/profiler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/profiler 2025-08-14T20:48:07.8971650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/profiler/python_tracer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/profiler 2025-08-14T20:48:07.8973030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/profiler/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/profiler 2025-08-14T20:48:07.8974650Z creating build/bdist.macosx-14.0-arm64/wheel/torch/sparse 2025-08-14T20:48:07.8975290Z 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-08-14T20:48:07.8976610Z 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-08-14T20:48:07.8977720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/sparse/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/sparse 2025-08-14T20:48:07.8979480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/sparse/semi_structured.py -> build/bdist.macosx-14.0-arm64/wheel/torch/sparse 2025-08-14T20:48:07.8985030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/sparse/_triton_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/sparse 2025-08-14T20:48:07.8987480Z 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-08-14T20:48:07.8993190Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_awaits 2025-08-14T20:48:07.8993630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_awaits/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_awaits 2025-08-14T20:48:07.8994800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_guards.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-14T20:48:07.8996200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_python_dispatcher.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-14T20:48:07.8997690Z creating build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-08-14T20:48:07.8998500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/_safeguard.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-08-14T20:48:07.9000110Z creating build/bdist.macosx-14.0-arm64/wheel/torch/export/experimental 2025-08-14T20:48:07.9000770Z 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-08-14T20:48:07.9002050Z 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-08-14T20:48:07.9003280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/exported_program.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-08-14T20:48:07.9004820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/unflatten.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-08-14T20:48:07.9006280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/custom_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-08-14T20:48:07.9007440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/custom_obj.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-08-14T20:48:07.9008860Z creating build/bdist.macosx-14.0-arm64/wheel/torch/export/passes 2025-08-14T20:48:07.9009580Z 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-08-14T20:48:07.9010970Z 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-08-14T20:48:07.9012200Z 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-08-14T20:48:07.9013350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-08-14T20:48:07.9014640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/_unlift.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-08-14T20:48:07.9015980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/_trace.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-08-14T20:48:07.9025270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/graph_signature.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-08-14T20:48:07.9026550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/_wrapper_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-08-14T20:48:07.9027880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/decomp_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-08-14T20:48:07.9029360Z creating build/bdist.macosx-14.0-arm64/wheel/torch/export/pt2_archive 2025-08-14T20:48:07.9030040Z 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-08-14T20:48:07.9031540Z 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-08-14T20:48:07.9032810Z 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-08-14T20:48:07.9033900Z 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-08-14T20:48:07.9035080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/_swap.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-08-14T20:48:07.9036760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/_draft_export.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-08-14T20:48:07.9038060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/dynamic_shapes.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-08-14T20:48:07.9039530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/_tree_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-08-14T20:48:07.9040830Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nested 2025-08-14T20:48:07.9041700Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nested/_internal 2025-08-14T20:48:07.9042460Z 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-08-14T20:48:07.9044180Z 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-08-14T20:48:07.9044930Z 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-08-14T20:48:07.9046700Z 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-08-14T20:48:07.9048140Z 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-08-14T20:48:07.9049290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nested/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nested 2025-08-14T20:48:07.9050940Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_C_flatbuffer 2025-08-14T20:48:07.9051650Z 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-08-14T20:48:07.9052790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_classes.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-14T20:48:07.9054260Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_strobelight 2025-08-14T20:48:07.9054990Z 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-08-14T20:48:07.9056090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_strobelight/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_strobelight 2025-08-14T20:48:07.9057050Z 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-08-14T20:48:07.9058440Z creating build/bdist.macosx-14.0-arm64/wheel/torch/numa 2025-08-14T20:48:07.9059100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/numa/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/numa 2025-08-14T20:48:07.9060300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/numa/binding.py -> build/bdist.macosx-14.0-arm64/wheel/torch/numa 2025-08-14T20:48:07.9061480Z creating build/bdist.macosx-14.0-arm64/wheel/torch/compiler 2025-08-14T20:48:07.9062180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/compiler/_cache.py -> build/bdist.macosx-14.0-arm64/wheel/torch/compiler 2025-08-14T20:48:07.9063280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/compiler/config.py -> build/bdist.macosx-14.0-arm64/wheel/torch/compiler 2025-08-14T20:48:07.9064410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/compiler/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/compiler 2025-08-14T20:48:07.9065940Z creating build/bdist.macosx-14.0-arm64/wheel/torch/signal 2025-08-14T20:48:07.9066560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/signal/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/signal 2025-08-14T20:48:07.9068010Z creating build/bdist.macosx-14.0-arm64/wheel/torch/signal/windows 2025-08-14T20:48:07.9068660Z 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-08-14T20:48:07.9069840Z 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-08-14T20:48:07.9071110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/serialization.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-14T20:48:07.9073540Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-14T20:48:07.9074060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/inverse_gamma.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-14T20:48:07.9075110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/laplace.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-14T20:48:07.9076340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/relaxed_bernoulli.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-14T20:48:07.9081920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/categorical.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-14T20:48:07.9082770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/transforms.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-14T20:48:07.9084160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/dirichlet.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-14T20:48:07.9085240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/log_normal.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-14T20:48:07.9086450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/transformed_distribution.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-14T20:48:07.9087600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/geometric.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-14T20:48:07.9088830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/generalized_pareto.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-14T20:48:07.9089960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/weibull.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-14T20:48:07.9091100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/studentT.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-14T20:48:07.9092260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/multivariate_normal.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-14T20:48:07.9093460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/normal.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-14T20:48:07.9094540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/poisson.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-14T20:48:07.9095760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/beta.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-14T20:48:07.9096980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/kumaraswamy.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-14T20:48:07.9098140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/half_normal.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-14T20:48:07.9099500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/relaxed_categorical.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-14T20:48:07.9100920Z 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-08-14T20:48:07.9101860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/half_cauchy.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-14T20:48:07.9103010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-14T20:48:07.9104320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/lkj_cholesky.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-14T20:48:07.9105450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/independent.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-14T20:48:07.9106530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/multinomial.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-14T20:48:07.9107700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/exponential.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-14T20:48:07.9108930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/pareto.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-14T20:48:07.9110090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/negative_binomial.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-14T20:48:07.9111280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/cauchy.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-14T20:48:07.9112710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/von_mises.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-14T20:48:07.9113500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/distribution.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-14T20:48:07.9114700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/gumbel.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-14T20:48:07.9115950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/constraint_registry.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-14T20:48:07.9117200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-14T20:48:07.9118470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/kl.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-14T20:48:07.9119820Z 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-08-14T20:48:07.9121110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/continuous_bernoulli.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-14T20:48:07.9122380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/fishersnedecor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-14T20:48:07.9123510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/constraints.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-14T20:48:07.9125030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/uniform.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-14T20:48:07.9126080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/bernoulli.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-14T20:48:07.9127240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/exp_family.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-14T20:48:07.9128500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/logistic_normal.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-14T20:48:07.9129710Z 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-08-14T20:48:07.9130810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/wishart.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-14T20:48:07.9131990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/gamma.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-14T20:48:07.9133180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/chi2.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-14T20:48:07.9134470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/binomial.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-14T20:48:07.9135940Z creating build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-08-14T20:48:07.9136640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/package_exporter.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-08-14T20:48:07.9138370Z 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-08-14T20:48:07.9139420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/_mock.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-08-14T20:48:07.9140710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/importer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-08-14T20:48:07.9141900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/_stdlib.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-08-14T20:48:07.9143240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/_mangling.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-08-14T20:48:07.9144360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-08-14T20:48:07.9145460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/package_importer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-08-14T20:48:07.9147040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/_package_unpickler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-08-14T20:48:07.9148300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/glob_group.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-08-14T20:48:07.9149240Z 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-08-14T20:48:07.9150460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/_package_pickler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-08-14T20:48:07.9151810Z creating build/bdist.macosx-14.0-arm64/wheel/torch/package/analyze 2025-08-14T20:48:07.9152640Z 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-08-14T20:48:07.9153820Z 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-08-14T20:48:07.9154900Z 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-08-14T20:48:07.9156100Z 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-08-14T20:48:07.9157210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/_importlib.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-08-14T20:48:07.9158330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/_directory_reader.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-08-14T20:48:07.9159460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/_digraph.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-08-14T20:48:07.9160550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-14T20:48:07.9162140Z creating build/bdist.macosx-14.0-arm64/wheel/torch/share 2025-08-14T20:48:07.9163030Z creating build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake 2025-08-14T20:48:07.9163940Z creating build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2 2025-08-14T20:48:07.9164940Z 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-08-14T20:48:07.9165900Z 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-08-14T20:48:07.9167230Z creating build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/Modules_CUDA_fix 2025-08-14T20:48:07.9167990Z 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-08-14T20:48:07.9169250Z 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-08-14T20:48:07.9170490Z creating build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream 2025-08-14T20:48:07.9171360Z creating build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA 2025-08-14T20:48:07.9172260Z 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-08-14T20:48:07.9173440Z 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-08-14T20:48:07.9174690Z 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-08-14T20:48:07.9175940Z 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-08-14T20:48:07.9177120Z 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-08-14T20:48:07.9178360Z 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-08-14T20:48:07.9179990Z 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-08-14T20:48:07.9181220Z creating build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/public 2025-08-14T20:48:07.9181970Z 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-08-14T20:48:07.9183080Z 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-08-14T20:48:07.9184220Z 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-08-14T20:48:07.9185380Z 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-08-14T20:48:07.9186720Z 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-08-14T20:48:07.9187780Z 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-08-14T20:48:07.9189000Z 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-08-14T20:48:07.9190190Z 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-08-14T20:48:07.9191410Z 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-08-14T20:48:07.9192610Z 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-08-14T20:48:07.9193750Z 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-08-14T20:48:07.9195310Z 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-08-14T20:48:07.9196940Z 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-08-14T20:48:07.9198110Z 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-08-14T20:48:07.9199690Z creating build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Torch 2025-08-14T20:48:07.9200440Z 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-08-14T20:48:07.9201690Z 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-08-14T20:48:07.9203100Z creating build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/ATen 2025-08-14T20:48:07.9203800Z 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-08-14T20:48:07.9205220Z creating build/bdist.macosx-14.0-arm64/wheel/torch/func 2025-08-14T20:48:07.9205840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/func/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/func 2025-08-14T20:48:07.9208600Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-08-14T20:48:07.9209080Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/native_function_generation.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-08-14T20:48:07.9210560Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/selective_build 2025-08-14T20:48:07.9211290Z 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-08-14T20:48:07.9212500Z 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-08-14T20:48:07.9213680Z 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-08-14T20:48:07.9214580Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/gen_vmap_plumbing.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-08-14T20:48:07.9215740Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/gen.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-08-14T20:48:07.9218020Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged 2025-08-14T20:48:07.9218670Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd 2025-08-14T20:48:07.9219440Z 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-08-14T20:48:07.9221020Z 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-08-14T20:48:07.9222160Z 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-08-14T20:48:07.9223350Z 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-08-14T20:48:07.9224820Z 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-08-14T20:48:07.9226170Z 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-08-14T20:48:07.9227370Z 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-08-14T20:48:07.9228310Z 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-08-14T20:48:07.9229960Z 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-08-14T20:48:07.9231150Z 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-08-14T20:48:07.9232550Z 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-08-14T20:48:07.9233830Z 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-08-14T20:48:07.9234950Z 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-08-14T20:48:07.9236440Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-08-14T20:48:07.9237180Z 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-08-14T20:48:07.9238720Z 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-08-14T20:48:07.9239880Z 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-08-14T20:48:07.9240940Z 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-08-14T20:48:07.9242160Z 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-08-14T20:48:07.9250000Z 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-08-14T20:48:07.9251280Z 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-08-14T20:48:07.9252240Z 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-08-14T20:48:07.9253470Z 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-08-14T20:48:07.9254450Z 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-08-14T20:48:07.9255400Z 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-08-14T20:48:07.9256390Z 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-08-14T20:48:07.9257340Z 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-08-14T20:48:07.9258260Z 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-08-14T20:48:07.9259510Z 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-08-14T20:48:07.9260610Z 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-08-14T20:48:07.9261890Z 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-08-14T20:48:07.9266310Z 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-08-14T20:48:07.9267240Z 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-08-14T20:48:07.9268440Z 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-08-14T20:48:07.9269440Z 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-08-14T20:48:07.9270630Z 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-08-14T20:48:07.9271570Z 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-08-14T20:48:07.9272420Z 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-08-14T20:48:07.9273230Z 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-08-14T20:48:07.9274050Z 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-08-14T20:48:07.9274850Z 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-08-14T20:48:07.9275410Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen 2025-08-14T20:48:07.9275760Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/native 2025-08-14T20:48:07.9276370Z 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-08-14T20:48:07.9279710Z 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-08-14T20:48:07.9280820Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-08-14T20:48:07.9281660Z 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-08-14T20:48:07.9283040Z 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-08-14T20:48:07.9284330Z 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-08-14T20:48:07.9285590Z 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-08-14T20:48:07.9286910Z 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-08-14T20:48:07.9288040Z 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-08-14T20:48:07.9289440Z 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-08-14T20:48:07.9290580Z 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-08-14T20:48:07.9291740Z 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-08-14T20:48:07.9292980Z 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-08-14T20:48:07.9294260Z 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-08-14T20:48:07.9295310Z 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-08-14T20:48:07.9296750Z 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-08-14T20:48:07.9298050Z 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-08-14T20:48:07.9299180Z 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-08-14T20:48:07.9300360Z 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-08-14T20:48:07.9301600Z 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-08-14T20:48:07.9302940Z 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-08-14T20:48:07.9304070Z 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-08-14T20:48:07.9305300Z 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-08-14T20:48:07.9306600Z 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-08-14T20:48:07.9307820Z 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-08-14T20:48:07.9309330Z 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-08-14T20:48:07.9310320Z 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-08-14T20:48:07.9311680Z 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-08-14T20:48:07.9312820Z 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-08-14T20:48:07.9314130Z 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-08-14T20:48:07.9315210Z 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-08-14T20:48:07.9316400Z 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-08-14T20:48:07.9317680Z 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-08-14T20:48:07.9318840Z 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-08-14T20:48:07.9319930Z 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-08-14T20:48:07.9321310Z 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-08-14T20:48:07.9322230Z 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-08-14T20:48:07.9323390Z 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-08-14T20:48:07.9324480Z 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-08-14T20:48:07.9325640Z 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-08-14T20:48:07.9326910Z 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-08-14T20:48:07.9328020Z 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-08-14T20:48:07.9329530Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/static_runtime 2025-08-14T20:48:07.9330390Z 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-08-14T20:48:07.9331490Z 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-08-14T20:48:07.9332370Z 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-08-14T20:48:07.9333740Z 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-08-14T20:48:07.9334810Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/local.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-08-14T20:48:07.9336150Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/gen_functionalization_type.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-08-14T20:48:07.9338080Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/code_template.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-08-14T20:48:07.9339720Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/operator_versions 2025-08-14T20:48:07.9340480Z 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-08-14T20:48:07.9341530Z 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-08-14T20:48:07.9342680Z 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-08-14T20:48:07.9343720Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-08-14T20:48:07.9344910Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/yaml_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-08-14T20:48:07.9346140Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/gen_aoti_c_shim.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-08-14T20:48:07.9347420Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/model.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-08-14T20:48:07.9349150Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/gen_schema_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-08-14T20:48:07.9350210Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/context.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-08-14T20:48:07.9351350Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-08-14T20:48:07.9352970Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/dest 2025-08-14T20:48:07.9353630Z 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-08-14T20:48:07.9354830Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest/ufunc.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/dest 2025-08-14T20:48:07.9356170Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/dest 2025-08-14T20:48:07.9357350Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest/native_functions.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/dest 2025-08-14T20:48:07.9358560Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest/lazy_ir.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/dest 2025-08-14T20:48:07.9359920Z 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-08-14T20:48:07.9361530Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-08-14T20:48:07.9362170Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/dispatcher.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-08-14T20:48:07.9363380Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/translate.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-08-14T20:48:07.9364980Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/api/types 2025-08-14T20:48:07.9365700Z 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-08-14T20:48:07.9366900Z 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-08-14T20:48:07.9368040Z 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-08-14T20:48:07.9369230Z 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-08-14T20:48:07.9370340Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/ufunc.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-08-14T20:48:07.9371430Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-08-14T20:48:07.9372270Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/native.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-08-14T20:48:07.9373420Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/cpp.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-08-14T20:48:07.9374540Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/unboxing.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-08-14T20:48:07.9375780Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/functionalization.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-08-14T20:48:07.9376840Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/autograd.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-08-14T20:48:07.9378180Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/structured.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-08-14T20:48:07.9379360Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/python.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-08-14T20:48:07.9380770Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/lazy.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-08-14T20:48:07.9382000Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/meta.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-08-14T20:48:07.9383150Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/gen_backend_stubs.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-08-14T20:48:07.9384880Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/aoti 2025-08-14T20:48:07.9385380Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/aoti/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/aoti 2025-08-14T20:48:07.9386280Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/aoti/fallback_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/aoti 2025-08-14T20:48:07.9387380Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/gen_lazy_tensor.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-08-14T20:48:07.9389120Z creating build/bdist.macosx-14.0-arm64/wheel/functorch 2025-08-14T20:48:07.9389980Z creating build/bdist.macosx-14.0-arm64/wheel/functorch/experimental 2025-08-14T20:48:07.9390690Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/experimental/control_flow.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/experimental 2025-08-14T20:48:07.9392510Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/experimental/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/experimental 2025-08-14T20:48:07.9393250Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/experimental/ops.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/experimental 2025-08-14T20:48:07.9394630Z creating build/bdist.macosx-14.0-arm64/wheel/functorch/_src 2025-08-14T20:48:07.9395490Z creating build/bdist.macosx-14.0-arm64/wheel/functorch/_src/make_functional 2025-08-14T20:48:07.9396170Z 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-08-14T20:48:07.9397320Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/_src/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/_src 2025-08-14T20:48:07.9398420Z creating build/bdist.macosx-14.0-arm64/wheel/functorch/_src/eager_transforms 2025-08-14T20:48:07.9399080Z 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-08-14T20:48:07.9400580Z creating build/bdist.macosx-14.0-arm64/wheel/functorch/_src/aot_autograd 2025-08-14T20:48:07.9401200Z 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-08-14T20:48:07.9402400Z creating build/bdist.macosx-14.0-arm64/wheel/functorch/_src/vmap 2025-08-14T20:48:07.9403100Z 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-08-14T20:48:07.9404460Z creating build/bdist.macosx-14.0-arm64/wheel/functorch/dim 2025-08-14T20:48:07.9405160Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/dim/magic_trace.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/dim 2025-08-14T20:48:07.9406310Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/dim/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/dim 2025-08-14T20:48:07.9407590Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/dim/op_properties.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/dim 2025-08-14T20:48:07.9408770Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/dim/wrap_type.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/dim 2025-08-14T20:48:07.9409970Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/dim/tree_map.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/dim 2025-08-14T20:48:07.9411270Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/functorch 2025-08-14T20:48:07.9412610Z creating build/bdist.macosx-14.0-arm64/wheel/functorch/compile 2025-08-14T20:48:07.9413270Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/compile/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/compile 2025-08-14T20:48:07.9414510Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/_C.cpython-312-darwin.so -> build/bdist.macosx-14.0-arm64/wheel/functorch 2025-08-14T20:48:07.9417030Z creating build/bdist.macosx-14.0-arm64/wheel/functorch/einops 2025-08-14T20:48:07.9417530Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/einops/_parsing.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/einops 2025-08-14T20:48:07.9418750Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/einops/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/einops 2025-08-14T20:48:07.9419970Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/einops/rearrange.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/einops 2025-08-14T20:48:07.9422600Z running install_egg_info 2025-08-14T20:48:07.9452630Z running egg_info 2025-08-14T20:48:07.9452900Z creating torch.egg-info 2025-08-14T20:48:07.9485380Z writing torch.egg-info/PKG-INFO 2025-08-14T20:48:07.9493140Z writing dependency_links to torch.egg-info/dependency_links.txt 2025-08-14T20:48:07.9494320Z writing entry points to torch.egg-info/entry_points.txt 2025-08-14T20:48:07.9497920Z writing requirements to torch.egg-info/requires.txt 2025-08-14T20:48:07.9499200Z writing top-level names to torch.egg-info/top_level.txt 2025-08-14T20:48:07.9500340Z writing manifest file 'torch.egg-info/SOURCES.txt' 2025-08-14T20:48:08.3966320Z reading manifest file 'torch.egg-info/SOURCES.txt' 2025-08-14T20:48:08.3966770Z reading manifest template 'MANIFEST.in' 2025-08-14T20:48:08.4027510Z warning: no files found matching 'BUILD' 2025-08-14T20:48:08.4028240Z warning: no files found matching '*.BUILD' 2025-08-14T20:48:08.4029490Z warning: no files found matching 'BUCK' 2025-08-14T20:48:08.4040970Z warning: no files found matching '[Mm]akefile.*' 2025-08-14T20:48:08.4043200Z warning: no files found matching '*.[Dd]ockerfile' 2025-08-14T20:48:08.4043950Z warning: no files found matching '[Dd]ockerfile.*' 2025-08-14T20:48:12.1557640Z warning: no previously-included files matching '*.o' found anywhere in distribution 2025-08-14T20:48:12.2136460Z warning: no previously-included files matching '*.obj' found anywhere in distribution 2025-08-14T20:48:12.6338970Z no previously-included directories found matching '*/.git' 2025-08-14T20:48:12.7340640Z warning: no previously-included files matching '*~' found anywhere in distribution 2025-08-14T20:48:12.7911700Z warning: no previously-included files matching '*.swp' found anywhere in distribution 2025-08-14T20:48:12.7912040Z adding license file 'LICENSE' 2025-08-14T20:48:12.7912210Z adding license file 'NOTICE' 2025-08-14T20:48:14.6625800Z writing manifest file 'torch.egg-info/SOURCES.txt' 2025-08-14T20:48:14.6959000Z Copying torch.egg-info to build/bdist.macosx-14.0-arm64/wheel/torch-2.9.0a0+git1fc683c-py3.12.egg-info 2025-08-14T20:48:14.7142080Z running install_scripts 2025-08-14T20:48:14.7230010Z creating build/bdist.macosx-14.0-arm64/wheel/torch-2.9.0a0+git1fc683c.dist-info/WHEEL 2025-08-14T20:48:14.7233340Z creating 'dist/torch-2.9.0a0+git1fc683c-cp312-cp312-macosx_11_0_arm64.whl' and adding 'build/bdist.macosx-14.0-arm64/wheel' to it 2025-08-14T20:48:14.7292970Z adding 'functorch/_C.cpython-312-darwin.so' 2025-08-14T20:48:14.7295550Z adding 'functorch/__init__.py' 2025-08-14T20:48:14.7296760Z adding 'functorch/_src/__init__.py' 2025-08-14T20:48:14.7298270Z adding 'functorch/_src/aot_autograd/__init__.py' 2025-08-14T20:48:14.7299470Z adding 'functorch/_src/eager_transforms/__init__.py' 2025-08-14T20:48:14.7300580Z adding 'functorch/_src/make_functional/__init__.py' 2025-08-14T20:48:14.7301700Z adding 'functorch/_src/vmap/__init__.py' 2025-08-14T20:48:14.7302940Z adding 'functorch/compile/__init__.py' 2025-08-14T20:48:14.7305190Z adding 'functorch/dim/__init__.py' 2025-08-14T20:48:14.7305780Z adding 'functorch/dim/magic_trace.py' 2025-08-14T20:48:14.7307800Z adding 'functorch/dim/op_properties.py' 2025-08-14T20:48:14.7308490Z adding 'functorch/dim/tree_map.py' 2025-08-14T20:48:14.7309550Z adding 'functorch/dim/wrap_type.py' 2025-08-14T20:48:14.7310550Z adding 'functorch/einops/__init__.py' 2025-08-14T20:48:14.7313650Z adding 'functorch/einops/_parsing.py' 2025-08-14T20:48:14.7315930Z adding 'functorch/einops/rearrange.py' 2025-08-14T20:48:14.7316770Z adding 'functorch/experimental/__init__.py' 2025-08-14T20:48:14.7317620Z adding 'functorch/experimental/control_flow.py' 2025-08-14T20:48:14.7318330Z adding 'functorch/experimental/ops.py' 2025-08-14T20:48:14.7323150Z adding 'torch/_C.cpython-312-darwin.so' 2025-08-14T20:48:14.7324120Z adding 'torch/_VF.py' 2025-08-14T20:48:14.7472010Z adding 'torch/_VF.pyi' 2025-08-14T20:48:14.7478620Z adding 'torch/__config__.py' 2025-08-14T20:48:14.7479790Z adding 'torch/__future__.py' 2025-08-14T20:48:14.7503330Z adding 'torch/__init__.py' 2025-08-14T20:48:14.7508230Z adding 'torch/_appdirs.py' 2025-08-14T20:48:14.7509320Z adding 'torch/_classes.py' 2025-08-14T20:48:14.7510580Z adding 'torch/_compile.py' 2025-08-14T20:48:14.7513630Z adding 'torch/_custom_ops.py' 2025-08-14T20:48:14.7514250Z adding 'torch/_environment.py' 2025-08-14T20:48:14.7523500Z adding 'torch/_guards.py' 2025-08-14T20:48:14.7536750Z adding 'torch/_jit_internal.py' 2025-08-14T20:48:14.7538670Z adding 'torch/_linalg_utils.py' 2025-08-14T20:48:14.7547950Z adding 'torch/_lobpcg.py' 2025-08-14T20:48:14.7550560Z adding 'torch/_lowrank.py' 2025-08-14T20:48:14.7600020Z adding 'torch/_meta_registrations.py' 2025-08-14T20:48:14.7602980Z adding 'torch/_namedtensor_internals.py' 2025-08-14T20:48:14.7616400Z adding 'torch/_ops.py' 2025-08-14T20:48:14.7619090Z adding 'torch/_python_dispatcher.py' 2025-08-14T20:48:14.7619910Z adding 'torch/_size_docs.py' 2025-08-14T20:48:14.7621910Z adding 'torch/_sources.py' 2025-08-14T20:48:14.7622780Z adding 'torch/_storage_docs.py' 2025-08-14T20:48:14.7623660Z adding 'torch/_streambase.py' 2025-08-14T20:48:14.7638950Z adding 'torch/_tensor.py' 2025-08-14T20:48:14.7665440Z adding 'torch/_tensor_docs.py' 2025-08-14T20:48:14.7671970Z adding 'torch/_tensor_str.py' 2025-08-14T20:48:14.7672630Z adding 'torch/_thread_safe_fork.py' 2025-08-14T20:48:14.7759700Z adding 'torch/_torch_docs.py' 2025-08-14T20:48:14.7770910Z adding 'torch/_utils.py' 2025-08-14T20:48:14.7774350Z adding 'torch/_utils_internal.py' 2025-08-14T20:48:14.7776870Z adding 'torch/_vmap_internals.py' 2025-08-14T20:48:14.7781230Z adding 'torch/_weights_only_unpickler.py' 2025-08-14T20:48:14.7800550Z adding 'torch/functional.py' 2025-08-14T20:48:14.7808600Z adding 'torch/hub.py' 2025-08-14T20:48:14.7822670Z adding 'torch/library.py' 2025-08-14T20:48:14.7839440Z adding 'torch/overrides.py' 2025-08-14T20:48:14.7840420Z adding 'torch/py.typed' 2025-08-14T20:48:14.7842940Z adding 'torch/quasirandom.py' 2025-08-14T20:48:14.7845100Z adding 'torch/random.py' 2025-08-14T20:48:14.7845890Z adding 'torch/return_types.py' 2025-08-14T20:48:14.7848050Z adding 'torch/return_types.pyi' 2025-08-14T20:48:14.7866130Z adding 'torch/serialization.py' 2025-08-14T20:48:14.7875520Z adding 'torch/storage.py' 2025-08-14T20:48:14.7876760Z adding 'torch/torch_version.py' 2025-08-14T20:48:14.7878280Z adding 'torch/types.py' 2025-08-14T20:48:14.7879160Z adding 'torch/version.py' 2025-08-14T20:48:14.8028680Z adding 'torch/_C/_VariableFunctions.pyi' 2025-08-14T20:48:14.8092110Z adding 'torch/_C/__init__.pyi' 2025-08-14T20:48:14.8095470Z adding 'torch/_C/_aoti.pyi' 2025-08-14T20:48:14.8096870Z adding 'torch/_C/_autograd.pyi' 2025-08-14T20:48:14.8097820Z adding 'torch/_C/_cpu.pyi' 2025-08-14T20:48:14.8098710Z adding 'torch/_C/_cudnn.pyi' 2025-08-14T20:48:14.8099480Z adding 'torch/_C/_cusparselt.pyi' 2025-08-14T20:48:14.8100500Z adding 'torch/_C/_distributed_autograd.pyi' 2025-08-14T20:48:14.8105100Z adding 'torch/_C/_distributed_c10d.pyi' 2025-08-14T20:48:14.8106920Z adding 'torch/_C/_distributed_rpc.pyi' 2025-08-14T20:48:14.8107630Z adding 'torch/_C/_distributed_rpc_testing.pyi' 2025-08-14T20:48:14.8108550Z adding 'torch/_C/_functions.pyi' 2025-08-14T20:48:14.8109770Z adding 'torch/_C/_functorch.pyi' 2025-08-14T20:48:14.8110600Z adding 'torch/_C/_instruction_counter.pyi' 2025-08-14T20:48:14.8111350Z adding 'torch/_C/_itt.pyi' 2025-08-14T20:48:14.8113280Z adding 'torch/_C/_jit_tree_views.pyi' 2025-08-14T20:48:14.8113750Z adding 'torch/_C/_lazy.pyi' 2025-08-14T20:48:14.8114590Z adding 'torch/_C/_lazy_ts_backend.pyi' 2025-08-14T20:48:14.8115590Z adding 'torch/_C/_monitor.pyi' 2025-08-14T20:48:14.8117520Z adding 'torch/_C/_nn.pyi' 2025-08-14T20:48:14.8118050Z adding 'torch/_C/_nvtx.pyi' 2025-08-14T20:48:14.8118920Z adding 'torch/_C/_onnx.pyi' 2025-08-14T20:48:14.8121020Z adding 'torch/_C/_profiler.pyi' 2025-08-14T20:48:14.8121460Z adding 'torch/_C/_verbose.pyi' 2025-08-14T20:48:14.8122640Z adding 'torch/_C/_dynamo/__init__.pyi' 2025-08-14T20:48:14.8123550Z adding 'torch/_C/_dynamo/compiled_autograd.pyi' 2025-08-14T20:48:14.8129190Z adding 'torch/_C/_dynamo/eval_frame.pyi' 2025-08-14T20:48:14.8129480Z adding 'torch/_C/_dynamo/guards.pyi' 2025-08-14T20:48:14.8129700Z adding 'torch/_C/_export/__init__.pyi' 2025-08-14T20:48:14.8129920Z adding 'torch/_C/_export/pt2_archive_constants.pyi' 2025-08-14T20:48:14.8131290Z adding 'torch/_C_flatbuffer/__init__.pyi' 2025-08-14T20:48:14.8133470Z adding 'torch/_awaits/__init__.py' 2025-08-14T20:48:14.8134360Z adding 'torch/_custom_op/__init__.py' 2025-08-14T20:48:14.8137750Z adding 'torch/_custom_op/autograd.py' 2025-08-14T20:48:14.8143360Z adding 'torch/_custom_op/impl.py' 2025-08-14T20:48:14.8147500Z adding 'torch/_decomp/__init__.py' 2025-08-14T20:48:14.8184890Z adding 'torch/_decomp/decompositions.py' 2025-08-14T20:48:14.8188460Z adding 'torch/_decomp/decompositions_for_jvp.py' 2025-08-14T20:48:14.8190850Z adding 'torch/_decomp/decompositions_for_rng.py' 2025-08-14T20:48:14.8191670Z adding 'torch/_dispatch/__init__.py' 2025-08-14T20:48:14.8193970Z adding 'torch/_dispatch/python.py' 2025-08-14T20:48:14.8196370Z adding 'torch/_dynamo/__init__.py' 2025-08-14T20:48:14.8199540Z adding 'torch/_dynamo/_trace_wrapped_higher_order_op.py' 2025-08-14T20:48:14.8202410Z adding 'torch/_dynamo/bytecode_analysis.py' 2025-08-14T20:48:14.8216120Z adding 'torch/_dynamo/bytecode_transformation.py' 2025-08-14T20:48:14.8218880Z adding 'torch/_dynamo/cache_size.py' 2025-08-14T20:48:14.8220730Z adding 'torch/_dynamo/callback.py' 2025-08-14T20:48:14.8221740Z adding 'torch/_dynamo/code_context.py' 2025-08-14T20:48:14.8227740Z adding 'torch/_dynamo/codegen.py' 2025-08-14T20:48:14.8240590Z adding 'torch/_dynamo/compiled_autograd.py' 2025-08-14T20:48:14.8244240Z adding 'torch/_dynamo/comptime.py' 2025-08-14T20:48:14.8251810Z adding 'torch/_dynamo/config.py' 2025-08-14T20:48:14.8265320Z adding 'torch/_dynamo/convert_frame.py' 2025-08-14T20:48:14.8266580Z adding 'torch/_dynamo/create_parameter_op.py' 2025-08-14T20:48:14.8267670Z adding 'torch/_dynamo/current_scope_id.py' 2025-08-14T20:48:14.8275210Z adding 'torch/_dynamo/debug_utils.py' 2025-08-14T20:48:14.8283200Z adding 'torch/_dynamo/decorators.py' 2025-08-14T20:48:14.8286830Z adding 'torch/_dynamo/device_interface.py' 2025-08-14T20:48:14.8287720Z adding 'torch/_dynamo/distributed.py' 2025-08-14T20:48:14.8308460Z adding 'torch/_dynamo/eval_frame.py' 2025-08-14T20:48:14.8314430Z adding 'torch/_dynamo/exc.py' 2025-08-14T20:48:14.8316780Z adding 'torch/_dynamo/external_utils.py' 2025-08-14T20:48:14.8317890Z adding 'torch/_dynamo/funcname_cache.py' 2025-08-14T20:48:14.8318960Z adding 'torch/_dynamo/graph_break_hints.py' 2025-08-14T20:48:14.8334880Z adding 'torch/_dynamo/graph_break_registry.json' 2025-08-14T20:48:14.8339560Z adding 'torch/_dynamo/graph_deduplication.py' 2025-08-14T20:48:14.8343890Z adding 'torch/_dynamo/graph_region_tracker.py' 2025-08-14T20:48:14.8344900Z adding 'torch/_dynamo/graph_utils.py' 2025-08-14T20:48:14.8381700Z adding 'torch/_dynamo/guards.py' 2025-08-14T20:48:14.8383490Z adding 'torch/_dynamo/hooks.py' 2025-08-14T20:48:14.8384630Z adding 'torch/_dynamo/logging.py' 2025-08-14T20:48:14.8387020Z adding 'torch/_dynamo/metrics_context.py' 2025-08-14T20:48:14.8388370Z adding 'torch/_dynamo/mutation_guard.py' 2025-08-14T20:48:14.8421180Z adding 'torch/_dynamo/output_graph.py' 2025-08-14T20:48:14.8428960Z adding 'torch/_dynamo/package.py' 2025-08-14T20:48:14.8436210Z adding 'torch/_dynamo/pgo.py' 2025-08-14T20:48:14.8438930Z adding 'torch/_dynamo/precompile_context.py' 2025-08-14T20:48:14.8441010Z adding 'torch/_dynamo/profiler.py' 2025-08-14T20:48:14.8442180Z adding 'torch/_dynamo/replay_record.py' 2025-08-14T20:48:14.8447470Z adding 'torch/_dynamo/resume_execution.py' 2025-08-14T20:48:14.8457570Z adding 'torch/_dynamo/side_effects.py' 2025-08-14T20:48:14.8463290Z adding 'torch/_dynamo/source.py' 2025-08-14T20:48:14.8499390Z adding 'torch/_dynamo/symbolic_convert.py' 2025-08-14T20:48:14.8501500Z adding 'torch/_dynamo/tensor_version_op.py' 2025-08-14T20:48:14.8503640Z adding 'torch/_dynamo/test_case.py' 2025-08-14T20:48:14.8504350Z adding 'torch/_dynamo/test_dont_skip_tracing_functions.py' 2025-08-14T20:48:14.8507520Z adding 'torch/_dynamo/test_minifier_common.py' 2025-08-14T20:48:14.8511330Z adding 'torch/_dynamo/testing.py' 2025-08-14T20:48:14.8535610Z adding 'torch/_dynamo/trace_rules.py' 2025-08-14T20:48:14.8537910Z adding 'torch/_dynamo/types.py' 2025-08-14T20:48:14.8577110Z adding 'torch/_dynamo/utils.py' 2025-08-14T20:48:14.8579190Z adding 'torch/_dynamo/backends/__init__.py' 2025-08-14T20:48:14.8580690Z adding 'torch/_dynamo/backends/common.py' 2025-08-14T20:48:14.8583330Z adding 'torch/_dynamo/backends/cudagraphs.py' 2025-08-14T20:48:14.8586800Z adding 'torch/_dynamo/backends/debugging.py' 2025-08-14T20:48:14.8593030Z adding 'torch/_dynamo/backends/distributed.py' 2025-08-14T20:48:14.8593850Z adding 'torch/_dynamo/backends/inductor.py' 2025-08-14T20:48:14.8594910Z adding 'torch/_dynamo/backends/onnxrt.py' 2025-08-14T20:48:14.8596990Z adding 'torch/_dynamo/backends/registry.py' 2025-08-14T20:48:14.8597550Z adding 'torch/_dynamo/backends/tensorrt.py' 2025-08-14T20:48:14.8598550Z adding 'torch/_dynamo/backends/torchxla.py' 2025-08-14T20:48:14.8600890Z adding 'torch/_dynamo/backends/tvm.py' 2025-08-14T20:48:14.8604090Z adding 'torch/_dynamo/polyfills/__init__.py' 2025-08-14T20:48:14.8605240Z adding 'torch/_dynamo/polyfills/builtins.py' 2025-08-14T20:48:14.8606240Z adding 'torch/_dynamo/polyfills/functools.py' 2025-08-14T20:48:14.8607250Z adding 'torch/_dynamo/polyfills/fx.py' 2025-08-14T20:48:14.8609470Z adding 'torch/_dynamo/polyfills/itertools.py' 2025-08-14T20:48:14.8610170Z adding 'torch/_dynamo/polyfills/loader.py' 2025-08-14T20:48:14.8611390Z adding 'torch/_dynamo/polyfills/operator.py' 2025-08-14T20:48:14.8612330Z adding 'torch/_dynamo/polyfills/os.py' 2025-08-14T20:48:14.8615600Z adding 'torch/_dynamo/polyfills/pytree.py' 2025-08-14T20:48:14.8616220Z adding 'torch/_dynamo/polyfills/struct.py' 2025-08-14T20:48:14.8617100Z adding 'torch/_dynamo/polyfills/sys.py' 2025-08-14T20:48:14.8618140Z adding 'torch/_dynamo/polyfills/tensor.py' 2025-08-14T20:48:14.8619110Z adding 'torch/_dynamo/repro/__init__.py' 2025-08-14T20:48:14.8628200Z adding 'torch/_dynamo/repro/after_aot.py' 2025-08-14T20:48:14.8632750Z adding 'torch/_dynamo/repro/after_dynamo.py' 2025-08-14T20:48:14.8637680Z adding 'torch/_dynamo/repro/aoti.py' 2025-08-14T20:48:14.8639950Z adding 'torch/_dynamo/variables/__init__.py' 2025-08-14T20:48:14.8645060Z adding 'torch/_dynamo/variables/base.py' 2025-08-14T20:48:14.8678960Z adding 'torch/_dynamo/variables/builder.py' 2025-08-14T20:48:14.8699530Z adding 'torch/_dynamo/variables/builtin.py' 2025-08-14T20:48:14.8702630Z adding 'torch/_dynamo/variables/constant.py' 2025-08-14T20:48:14.8710910Z adding 'torch/_dynamo/variables/ctx_manager.py' 2025-08-14T20:48:14.8719070Z adding 'torch/_dynamo/variables/dicts.py' 2025-08-14T20:48:14.8722670Z adding 'torch/_dynamo/variables/distributed.py' 2025-08-14T20:48:14.8741720Z adding 'torch/_dynamo/variables/functions.py' 2025-08-14T20:48:14.8766600Z adding 'torch/_dynamo/variables/higher_order_ops.py' 2025-08-14T20:48:14.8770830Z adding 'torch/_dynamo/variables/iter.py' 2025-08-14T20:48:14.8773050Z adding 'torch/_dynamo/variables/lazy.py' 2025-08-14T20:48:14.8781130Z adding 'torch/_dynamo/variables/lists.py' 2025-08-14T20:48:14.8795630Z adding 'torch/_dynamo/variables/misc.py' 2025-08-14T20:48:14.8806010Z adding 'torch/_dynamo/variables/nn_module.py' 2025-08-14T20:48:14.8809990Z adding 'torch/_dynamo/variables/optimizer.py' 2025-08-14T20:48:14.8811390Z adding 'torch/_dynamo/variables/script_object.py' 2025-08-14T20:48:14.8812620Z adding 'torch/_dynamo/variables/sdpa.py' 2025-08-14T20:48:14.8826330Z adding 'torch/_dynamo/variables/tensor.py' 2025-08-14T20:48:14.8841490Z adding 'torch/_dynamo/variables/torch.py' 2025-08-14T20:48:14.8847360Z adding 'torch/_dynamo/variables/torch_function.py' 2025-08-14T20:48:14.8863940Z adding 'torch/_dynamo/variables/user_defined.py' 2025-08-14T20:48:14.8866720Z adding 'torch/_export/__init__.py' 2025-08-14T20:48:14.8880570Z adding 'torch/_export/converter.py' 2025-08-14T20:48:14.8881960Z adding 'torch/_export/error.py' 2025-08-14T20:48:14.8891430Z adding 'torch/_export/non_strict_utils.py' 2025-08-14T20:48:14.8895280Z adding 'torch/_export/pass_base.py' 2025-08-14T20:48:14.8896770Z adding 'torch/_export/tools.py' 2025-08-14T20:48:14.8910250Z adding 'torch/_export/utils.py' 2025-08-14T20:48:14.8914230Z adding 'torch/_export/verifier.py' 2025-08-14T20:48:14.8916760Z adding 'torch/_export/wrappers.py' 2025-08-14T20:48:14.8917880Z adding 'torch/_export/db/__init__.py' 2025-08-14T20:48:14.8919940Z adding 'torch/_export/db/case.py' 2025-08-14T20:48:14.8920620Z adding 'torch/_export/db/gen_example.py' 2025-08-14T20:48:14.8921700Z adding 'torch/_export/db/logging.py' 2025-08-14T20:48:14.8923710Z adding 'torch/_export/db/examples/__init__.py' 2025-08-14T20:48:14.8924420Z adding 'torch/_export/db/examples/assume_constant_result.py' 2025-08-14T20:48:14.8925330Z adding 'torch/_export/db/examples/autograd_function.py' 2025-08-14T20:48:14.8926270Z adding 'torch/_export/db/examples/class_method.py' 2025-08-14T20:48:14.8927340Z adding 'torch/_export/db/examples/cond_branch_class_method.py' 2025-08-14T20:48:14.8928370Z adding 'torch/_export/db/examples/cond_branch_nested_function.py' 2025-08-14T20:48:14.8929480Z adding 'torch/_export/db/examples/cond_branch_nonlocal_variables.py' 2025-08-14T20:48:14.8930350Z adding 'torch/_export/db/examples/cond_closed_over_variable.py' 2025-08-14T20:48:14.8931250Z adding 'torch/_export/db/examples/cond_operands.py' 2025-08-14T20:48:14.8932170Z adding 'torch/_export/db/examples/cond_predicate.py' 2025-08-14T20:48:14.8933080Z adding 'torch/_export/db/examples/constrain_as_size_example.py' 2025-08-14T20:48:14.8934080Z adding 'torch/_export/db/examples/constrain_as_value_example.py' 2025-08-14T20:48:14.8934830Z adding 'torch/_export/db/examples/decorator.py' 2025-08-14T20:48:14.8935680Z adding 'torch/_export/db/examples/dictionary.py' 2025-08-14T20:48:14.8936530Z adding 'torch/_export/db/examples/dynamic_shape_assert.py' 2025-08-14T20:48:14.8937390Z adding 'torch/_export/db/examples/dynamic_shape_constructor.py' 2025-08-14T20:48:14.8938230Z adding 'torch/_export/db/examples/dynamic_shape_if_guard.py' 2025-08-14T20:48:14.8939050Z adding 'torch/_export/db/examples/dynamic_shape_map.py' 2025-08-14T20:48:14.8939930Z adding 'torch/_export/db/examples/dynamic_shape_round.py' 2025-08-14T20:48:14.8940760Z adding 'torch/_export/db/examples/dynamic_shape_slicing.py' 2025-08-14T20:48:14.8941590Z adding 'torch/_export/db/examples/dynamic_shape_view.py' 2025-08-14T20:48:14.8942460Z adding 'torch/_export/db/examples/fn_with_kwargs.py' 2025-08-14T20:48:14.8943340Z adding 'torch/_export/db/examples/list_contains.py' 2025-08-14T20:48:14.8944180Z adding 'torch/_export/db/examples/list_unpack.py' 2025-08-14T20:48:14.8945090Z adding 'torch/_export/db/examples/model_attr_mutation.py' 2025-08-14T20:48:14.8945920Z adding 'torch/_export/db/examples/nested_function.py' 2025-08-14T20:48:14.8946760Z adding 'torch/_export/db/examples/null_context_manager.py' 2025-08-14T20:48:14.8947640Z adding 'torch/_export/db/examples/optional_input.py' 2025-08-14T20:48:14.8948480Z adding 'torch/_export/db/examples/pytree_flatten.py' 2025-08-14T20:48:14.8949330Z adding 'torch/_export/db/examples/scalar_output.py' 2025-08-14T20:48:14.8950210Z adding 'torch/_export/db/examples/specialized_attribute.py' 2025-08-14T20:48:14.8951010Z adding 'torch/_export/db/examples/static_for_loop.py' 2025-08-14T20:48:14.8951880Z adding 'torch/_export/db/examples/static_if.py' 2025-08-14T20:48:14.8952690Z adding 'torch/_export/db/examples/tensor_setattr.py' 2025-08-14T20:48:14.8953580Z adding 'torch/_export/db/examples/type_reflection_method.py' 2025-08-14T20:48:14.8954410Z adding 'torch/_export/db/examples/unsupported_operator.py' 2025-08-14T20:48:14.8955220Z adding 'torch/_export/db/examples/user_input_mutation.py' 2025-08-14T20:48:14.8956210Z adding 'torch/_export/pass_infra/__init__.py' 2025-08-14T20:48:14.8957140Z adding 'torch/_export/pass_infra/node_metadata.py' 2025-08-14T20:48:14.8958110Z adding 'torch/_export/pass_infra/proxy_value.py' 2025-08-14T20:48:14.8959270Z adding 'torch/_export/passes/__init__.py' 2025-08-14T20:48:14.8960570Z adding 'torch/_export/passes/_node_metadata_hook.py' 2025-08-14T20:48:14.8963360Z adding 'torch/_export/passes/add_runtime_assertions_for_constraints_pass.py' 2025-08-14T20:48:14.8964820Z adding 'torch/_export/passes/collect_tracepoints_pass.py' 2025-08-14T20:48:14.8967850Z adding 'torch/_export/passes/constant_folding.py' 2025-08-14T20:48:14.8969060Z adding 'torch/_export/passes/functionalize_side_effectful_ops_pass.py' 2025-08-14T20:48:14.8970360Z adding 'torch/_export/passes/insert_custom_op_guards.py' 2025-08-14T20:48:14.8974250Z adding 'torch/_export/passes/lift_constants_pass.py' 2025-08-14T20:48:14.8975160Z adding 'torch/_export/passes/remove_runtime_assertions.py' 2025-08-14T20:48:14.8977430Z adding 'torch/_export/passes/replace_autocast_with_hop_pass.py' 2025-08-14T20:48:14.8982470Z adding 'torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py' 2025-08-14T20:48:14.8983700Z adding 'torch/_export/passes/replace_set_grad_with_hop_pass.py' 2025-08-14T20:48:14.8984870Z adding 'torch/_export/passes/replace_view_ops_with_view_copy_ops_pass.py' 2025-08-14T20:48:14.8987140Z adding 'torch/_export/passes/replace_with_hop_pass_util.py' 2025-08-14T20:48:14.8987870Z adding 'torch/_export/serde/__init__.py' 2025-08-14T20:48:14.8990810Z adding 'torch/_export/serde/dynamic_shapes.py' 2025-08-14T20:48:14.8992930Z adding 'torch/_export/serde/export_schema.thrift' 2025-08-14T20:48:14.8996050Z adding 'torch/_export/serde/schema.py' 2025-08-14T20:48:14.8998290Z adding 'torch/_export/serde/schema.yaml' 2025-08-14T20:48:14.9002900Z adding 'torch/_export/serde/schema_check.py' 2025-08-14T20:48:14.9031920Z adding 'torch/_export/serde/serialize.py' 2025-08-14T20:48:14.9033960Z adding 'torch/_export/serde/union.py' 2025-08-14T20:48:14.9034980Z adding 'torch/_functorch/__init__.py' 2025-08-14T20:48:14.9052510Z adding 'torch/_functorch/aot_autograd.py' 2025-08-14T20:48:14.9056820Z adding 'torch/_functorch/apis.py' 2025-08-14T20:48:14.9062950Z adding 'torch/_functorch/autograd_function.py' 2025-08-14T20:48:14.9063820Z adding 'torch/_functorch/batch_norm_replacement.py' 2025-08-14T20:48:14.9066090Z adding 'torch/_functorch/benchmark_utils.py' 2025-08-14T20:48:14.9068310Z adding 'torch/_functorch/compile_utils.py' 2025-08-14T20:48:14.9071540Z adding 'torch/_functorch/compilers.py' 2025-08-14T20:48:14.9075820Z adding 'torch/_functorch/config.py' 2025-08-14T20:48:14.9077150Z adding 'torch/_functorch/deprecated.py' 2025-08-14T20:48:14.9092230Z adding 'torch/_functorch/eager_transforms.py' 2025-08-14T20:48:14.9095310Z adding 'torch/_functorch/functional_call.py' 2025-08-14T20:48:14.9099120Z adding 'torch/_functorch/fx_minifier.py' 2025-08-14T20:48:14.9103610Z adding 'torch/_functorch/make_functional.py' 2025-08-14T20:48:14.9128330Z adding 'torch/_functorch/partitioners.py' 2025-08-14T20:48:14.9131310Z adding 'torch/_functorch/pyfunctorch.py' 2025-08-14T20:48:14.9132060Z adding 'torch/_functorch/python_key.py' 2025-08-14T20:48:14.9132950Z adding 'torch/_functorch/pytree_hacks.py' 2025-08-14T20:48:14.9137880Z adding 'torch/_functorch/top_operators_github_usage.py' 2025-08-14T20:48:14.9138620Z adding 'torch/_functorch/utils.py' 2025-08-14T20:48:14.9143240Z adding 'torch/_functorch/vmap.py' 2025-08-14T20:48:14.9144360Z adding 'torch/_functorch/_activation_checkpointing/__init__.py' 2025-08-14T20:48:14.9145950Z adding 'torch/_functorch/_activation_checkpointing/ac_logging_utils.py' 2025-08-14T20:48:14.9148850Z adding 'torch/_functorch/_activation_checkpointing/graph_info_provider.py' 2025-08-14T20:48:14.9150070Z adding 'torch/_functorch/_activation_checkpointing/knapsack.py' 2025-08-14T20:48:14.9152960Z adding 'torch/_functorch/_activation_checkpointing/knapsack_evaluator.py' 2025-08-14T20:48:14.9153920Z adding 'torch/_functorch/_aot_autograd/__init__.py' 2025-08-14T20:48:14.9167190Z adding 'torch/_functorch/_aot_autograd/autograd_cache.py' 2025-08-14T20:48:14.9177530Z adding 'torch/_functorch/_aot_autograd/collect_metadata_analysis.py' 2025-08-14T20:48:14.9183250Z adding 'torch/_functorch/_aot_autograd/descriptors.py' 2025-08-14T20:48:14.9186180Z adding 'torch/_functorch/_aot_autograd/frontend_utils.py' 2025-08-14T20:48:14.9191860Z adding 'torch/_functorch/_aot_autograd/functional_utils.py' 2025-08-14T20:48:14.9194450Z adding 'torch/_functorch/_aot_autograd/fx_utils.py' 2025-08-14T20:48:14.9198160Z adding 'torch/_functorch/_aot_autograd/graph_capture.py' 2025-08-14T20:48:14.9211430Z adding 'torch/_functorch/_aot_autograd/graph_capture_wrappers.py' 2025-08-14T20:48:14.9229940Z adding 'torch/_functorch/_aot_autograd/graph_compile.py' 2025-08-14T20:48:14.9234520Z adding 'torch/_functorch/_aot_autograd/input_output_analysis.py' 2025-08-14T20:48:14.9235940Z adding 'torch/_functorch/_aot_autograd/logging_utils.py' 2025-08-14T20:48:14.9260670Z adding 'torch/_functorch/_aot_autograd/runtime_wrappers.py' 2025-08-14T20:48:14.9274580Z adding 'torch/_functorch/_aot_autograd/schemas.py' 2025-08-14T20:48:14.9276170Z adding 'torch/_functorch/_aot_autograd/subclass_parametrization.py' 2025-08-14T20:48:14.9280900Z adding 'torch/_functorch/_aot_autograd/subclass_utils.py' 2025-08-14T20:48:14.9285860Z adding 'torch/_functorch/_aot_autograd/utils.py' 2025-08-14T20:48:14.9287260Z adding 'torch/_higher_order_ops/__init__.py' 2025-08-14T20:48:14.9288460Z adding 'torch/_higher_order_ops/_invoke_quant.py' 2025-08-14T20:48:14.9290580Z adding 'torch/_higher_order_ops/aoti_call_delegate.py' 2025-08-14T20:48:14.9294940Z adding 'torch/_higher_order_ops/associative_scan.py' 2025-08-14T20:48:14.9302400Z adding 'torch/_higher_order_ops/auto_functionalize.py' 2025-08-14T20:48:14.9305670Z adding 'torch/_higher_order_ops/base_hop.py' 2025-08-14T20:48:14.9311700Z adding 'torch/_higher_order_ops/cond.py' 2025-08-14T20:48:14.9314510Z adding 'torch/_higher_order_ops/effects.py' 2025-08-14T20:48:14.9316660Z adding 'torch/_higher_order_ops/executorch_call_delegate.py' 2025-08-14T20:48:14.9317860Z adding 'torch/_higher_order_ops/flat_apply.py' 2025-08-14T20:48:14.9325340Z adding 'torch/_higher_order_ops/flex_attention.py' 2025-08-14T20:48:14.9326300Z adding 'torch/_higher_order_ops/foreach_map.py' 2025-08-14T20:48:14.9328340Z adding 'torch/_higher_order_ops/hints_wrap.py' 2025-08-14T20:48:14.9333680Z adding 'torch/_higher_order_ops/invoke_subgraph.py' 2025-08-14T20:48:14.9336420Z adding 'torch/_higher_order_ops/map.py' 2025-08-14T20:48:14.9337980Z adding 'torch/_higher_order_ops/out_dtype.py' 2025-08-14T20:48:14.9339140Z adding 'torch/_higher_order_ops/run_const_graph.py' 2025-08-14T20:48:14.9348000Z adding 'torch/_higher_order_ops/scan.py' 2025-08-14T20:48:14.9350960Z adding 'torch/_higher_order_ops/schema.py' 2025-08-14T20:48:14.9352060Z adding 'torch/_higher_order_ops/strict_mode.py' 2025-08-14T20:48:14.9354180Z adding 'torch/_higher_order_ops/torchbind.py' 2025-08-14T20:48:14.9370920Z adding 'torch/_higher_order_ops/triton_kernel_wrap.py' 2025-08-14T20:48:14.9382310Z adding 'torch/_higher_order_ops/utils.py' 2025-08-14T20:48:14.9386850Z adding 'torch/_higher_order_ops/while_loop.py' 2025-08-14T20:48:14.9389650Z adding 'torch/_higher_order_ops/wrap.py' 2025-08-14T20:48:14.9391790Z adding 'torch/_inductor/__autotune_main__.py' 2025-08-14T20:48:14.9394670Z adding 'torch/_inductor/__init__.py' 2025-08-14T20:48:14.9396790Z adding 'torch/_inductor/analyze_preserves_zero_mask.py' 2025-08-14T20:48:14.9399150Z adding 'torch/_inductor/aoti_eager.py' 2025-08-14T20:48:14.9404240Z adding 'torch/_inductor/async_compile.py' 2025-08-14T20:48:14.9409970Z adding 'torch/_inductor/autotune_process.py' 2025-08-14T20:48:14.9412070Z adding 'torch/_inductor/await_utils.py' 2025-08-14T20:48:14.9414460Z adding 'torch/_inductor/bounds.py' 2025-08-14T20:48:14.9417840Z adding 'torch/_inductor/choices.py' 2025-08-14T20:48:14.9453670Z adding 'torch/_inductor/codecache.py' 2025-08-14T20:48:14.9456720Z adding 'torch/_inductor/comm_analysis.py' 2025-08-14T20:48:14.9459630Z adding 'torch/_inductor/comm_lowering.py' 2025-08-14T20:48:14.9471140Z adding 'torch/_inductor/comms.py' 2025-08-14T20:48:14.9494470Z adding 'torch/_inductor/compile_fx.py' 2025-08-14T20:48:14.9498380Z adding 'torch/_inductor/compile_fx_async.py' 2025-08-14T20:48:14.9503330Z adding 'torch/_inductor/compile_fx_ext.py' 2025-08-14T20:48:14.9504630Z adding 'torch/_inductor/compile_fx_subproc.py' 2025-08-14T20:48:14.9509310Z adding 'torch/_inductor/compiler_bisector.py' 2025-08-14T20:48:14.9529110Z adding 'torch/_inductor/config.py' 2025-08-14T20:48:14.9532930Z adding 'torch/_inductor/constant_folding.py' 2025-08-14T20:48:14.9547520Z adding 'torch/_inductor/cpp_builder.py' 2025-08-14T20:48:14.9551020Z adding 'torch/_inductor/cpu_vec_isa.py' 2025-08-14T20:48:14.9575410Z adding 'torch/_inductor/cudagraph_trees.py' 2025-08-14T20:48:14.9579310Z adding 'torch/_inductor/cudagraph_utils.py' 2025-08-14T20:48:14.9580540Z adding 'torch/_inductor/custom_graph_pass.py' 2025-08-14T20:48:14.9588900Z adding 'torch/_inductor/debug.py' 2025-08-14T20:48:14.9597050Z adding 'torch/_inductor/decomposition.py' 2025-08-14T20:48:14.9603890Z adding 'torch/_inductor/dependencies.py' 2025-08-14T20:48:14.9606640Z adding 'torch/_inductor/dtype_propagation.py' 2025-08-14T20:48:14.9607940Z adding 'torch/_inductor/exc.py' 2025-08-14T20:48:14.9608940Z adding 'torch/_inductor/extern_node_serializer.py' 2025-08-14T20:48:14.9611810Z adding 'torch/_inductor/freezing.py' 2025-08-14T20:48:14.9612610Z adding 'torch/_inductor/freezing_utils.py' 2025-08-14T20:48:14.9620500Z adding 'torch/_inductor/fuzzer.py' 2025-08-14T20:48:14.9623710Z adding 'torch/_inductor/fx_utils.py' 2025-08-14T20:48:14.9646890Z adding 'torch/_inductor/graph.py' 2025-08-14T20:48:14.9648270Z adding 'torch/_inductor/hooks.py' 2025-08-14T20:48:14.9651630Z adding 'torch/_inductor/index_propagation.py' 2025-08-14T20:48:14.9653770Z adding 'torch/_inductor/inductor_prims.py' 2025-08-14T20:48:14.9720410Z adding 'torch/_inductor/ir.py' 2025-08-14T20:48:14.9724290Z adding 'torch/_inductor/jagged_lowerings.py' 2025-08-14T20:48:14.9726390Z adding 'torch/_inductor/kernel_inputs.py' 2025-08-14T20:48:14.9731600Z adding 'torch/_inductor/loop_body.py' 2025-08-14T20:48:14.9781480Z adding 'torch/_inductor/lowering.py' 2025-08-14T20:48:14.9788770Z adding 'torch/_inductor/memory.py' 2025-08-14T20:48:14.9792090Z adding 'torch/_inductor/metrics.py' 2025-08-14T20:48:14.9798470Z adding 'torch/_inductor/mkldnn_ir.py' 2025-08-14T20:48:14.9805990Z adding 'torch/_inductor/mkldnn_lowerings.py' 2025-08-14T20:48:14.9808230Z adding 'torch/_inductor/mock_cache.py' 2025-08-14T20:48:14.9814500Z adding 'torch/_inductor/ops_handler.py' 2025-08-14T20:48:14.9816300Z adding 'torch/_inductor/optimize_indexing.py' 2025-08-14T20:48:14.9822370Z adding 'torch/_inductor/output_code.py' 2025-08-14T20:48:14.9840660Z adding 'torch/_inductor/pattern_matcher.py' 2025-08-14T20:48:14.9842960Z adding 'torch/_inductor/quantized_lowerings.py' 2025-08-14T20:48:14.9846010Z adding 'torch/_inductor/remote_cache.py' 2025-08-14T20:48:14.9846770Z adding 'torch/_inductor/remote_gemm_autotune_cache.py' 2025-08-14T20:48:14.9891760Z adding 'torch/_inductor/scheduler.py' 2025-08-14T20:48:14.9893950Z adding 'torch/_inductor/script.ld' 2025-08-14T20:48:14.9922120Z adding 'torch/_inductor/select_algorithm.py' 2025-08-14T20:48:14.9931090Z adding 'torch/_inductor/sizevars.py' 2025-08-14T20:48:14.9933950Z adding 'torch/_inductor/standalone_compile.py' 2025-08-14T20:48:14.9936240Z adding 'torch/_inductor/subgraph_lowering.py' 2025-08-14T20:48:14.9946370Z adding 'torch/_inductor/template_heuristics.py' 2025-08-14T20:48:14.9948400Z adding 'torch/_inductor/template_registry.py' 2025-08-14T20:48:14.9949090Z adding 'torch/_inductor/test_case.py' 2025-08-14T20:48:14.9950070Z adding 'torch/_inductor/test_operators.py' 2025-08-14T20:48:14.9956250Z adding 'torch/_inductor/tiling_utils.py' 2025-08-14T20:48:14.9959700Z adding 'torch/_inductor/triton_bundler.py' 2025-08-14T20:48:14.9987560Z adding 'torch/_inductor/utils.py' 2025-08-14T20:48:14.9991300Z adding 'torch/_inductor/virtualized.py' 2025-08-14T20:48:14.9995200Z adding 'torch/_inductor/wrapper_benchmark.py' 2025-08-14T20:48:14.9996510Z adding 'torch/_inductor/analysis/__init__.py' 2025-08-14T20:48:14.9998680Z adding 'torch/_inductor/analysis/device_info.py' 2025-08-14T20:48:15.0003890Z adding 'torch/_inductor/analysis/profile_analysis.py' 2025-08-14T20:48:15.0004820Z adding 'torch/_inductor/autoheuristic/__init__.py' 2025-08-14T20:48:15.0007910Z adding 'torch/_inductor/autoheuristic/autoheuristic.py' 2025-08-14T20:48:15.0010480Z adding 'torch/_inductor/autoheuristic/autoheuristic_utils.py' 2025-08-14T20:48:15.0011750Z adding 'torch/_inductor/autoheuristic/learned_heuristic_controller.py' 2025-08-14T20:48:15.0013050Z adding 'torch/_inductor/autoheuristic/learnedheuristic_interface.py' 2025-08-14T20:48:15.0017500Z adding 'torch/_inductor/autoheuristic/artifacts/_MMRankingA100.py' 2025-08-14T20:48:15.0021840Z adding 'torch/_inductor/autoheuristic/artifacts/_MMRankingH100.py' 2025-08-14T20:48:15.0023330Z adding 'torch/_inductor/autoheuristic/artifacts/_MixedMMA100.py' 2025-08-14T20:48:15.0025440Z adding 'torch/_inductor/autoheuristic/artifacts/_MixedMMH100.py' 2025-08-14T20:48:15.0026410Z adding 'torch/_inductor/autoheuristic/artifacts/_PadMMA100.py' 2025-08-14T20:48:15.0027170Z adding 'torch/_inductor/autoheuristic/artifacts/__init__.py' 2025-08-14T20:48:15.0028360Z adding 'torch/_inductor/codegen/__init__.py' 2025-08-14T20:48:15.0029480Z adding 'torch/_inductor/codegen/aoti_hipify_utils.py' 2025-08-14T20:48:15.0031820Z adding 'torch/_inductor/codegen/block_analysis.py' 2025-08-14T20:48:15.0051010Z adding 'torch/_inductor/codegen/common.py' 2025-08-14T20:48:15.0097430Z adding 'torch/_inductor/codegen/cpp.py' 2025-08-14T20:48:15.0100950Z adding 'torch/_inductor/codegen/cpp_bmm_template.py' 2025-08-14T20:48:15.0109220Z adding 'torch/_inductor/codegen/cpp_flex_attention_template.py' 2025-08-14T20:48:15.0123750Z adding 'torch/_inductor/codegen/cpp_gemm_template.py' 2025-08-14T20:48:15.0128270Z adding 'torch/_inductor/codegen/cpp_grouped_gemm_template.py' 2025-08-14T20:48:15.0140770Z adding 'torch/_inductor/codegen/cpp_micro_gemm.py' 2025-08-14T20:48:15.0142900Z adding 'torch/_inductor/codegen/cpp_template.py' 2025-08-14T20:48:15.0147750Z adding 'torch/_inductor/codegen/cpp_template_kernel.py' 2025-08-14T20:48:15.0153460Z adding 'torch/_inductor/codegen/cpp_utils.py' 2025-08-14T20:48:15.0177270Z adding 'torch/_inductor/codegen/cpp_wrapper_cpu.py' 2025-08-14T20:48:15.0185430Z adding 'torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py' 2025-08-14T20:48:15.0191340Z adding 'torch/_inductor/codegen/cpp_wrapper_gpu.py' 2025-08-14T20:48:15.0193440Z adding 'torch/_inductor/codegen/cpp_wrapper_mps.py' 2025-08-14T20:48:15.0194010Z adding 'torch/_inductor/codegen/cpu_device_op_overrides.py' 2025-08-14T20:48:15.0195580Z adding 'torch/_inductor/codegen/cuda_combined_scheduling.py' 2025-08-14T20:48:15.0198250Z adding 'torch/_inductor/codegen/debug_utils.py' 2025-08-14T20:48:15.0210600Z adding 'torch/_inductor/codegen/halide.py' 2025-08-14T20:48:15.0216240Z adding 'torch/_inductor/codegen/memory_planning.py' 2025-08-14T20:48:15.0223870Z adding 'torch/_inductor/codegen/mps.py' 2025-08-14T20:48:15.0224970Z adding 'torch/_inductor/codegen/mps_device_op_overrides.py' 2025-08-14T20:48:15.0229310Z adding 'torch/_inductor/codegen/multi_kernel.py' 2025-08-14T20:48:15.0230140Z adding 'torch/_inductor/codegen/python_wrapper_mtia.py' 2025-08-14T20:48:15.0252070Z adding 'torch/_inductor/codegen/simd.py' 2025-08-14T20:48:15.0257490Z adding 'torch/_inductor/codegen/simd_kernel_features.py' 2025-08-14T20:48:15.0259720Z adding 'torch/_inductor/codegen/subgraph.py' 2025-08-14T20:48:15.0299210Z adding 'torch/_inductor/codegen/triton.py' 2025-08-14T20:48:15.0308120Z adding 'torch/_inductor/codegen/triton_combo_kernel.py' 2025-08-14T20:48:15.0310350Z adding 'torch/_inductor/codegen/triton_split_scan.py' 2025-08-14T20:48:15.0312780Z adding 'torch/_inductor/codegen/triton_utils.py' 2025-08-14T20:48:15.0341600Z adding 'torch/_inductor/codegen/wrapper.py' 2025-08-14T20:48:15.0347590Z adding 'torch/_inductor/codegen/wrapper_fxir.py' 2025-08-14T20:48:15.0350930Z adding 'torch/_inductor/codegen/aoti_runtime/interface.cpp' 2025-08-14T20:48:15.0351810Z adding 'torch/_inductor/codegen/cuda/__init__.py' 2025-08-14T20:48:15.0354990Z adding 'torch/_inductor/codegen/cuda/cuda_cpp_scheduling.py' 2025-08-14T20:48:15.0355750Z adding 'torch/_inductor/codegen/cuda/cuda_env.py' 2025-08-14T20:48:15.0361170Z adding 'torch/_inductor/codegen/cuda/cuda_kernel.py' 2025-08-14T20:48:15.0364360Z adding 'torch/_inductor/codegen/cuda/cuda_template.py' 2025-08-14T20:48:15.0365590Z adding 'torch/_inductor/codegen/cuda/cutlass_cache.py' 2025-08-14T20:48:15.0366980Z adding 'torch/_inductor/codegen/cuda/cutlass_presets.py' 2025-08-14T20:48:15.0370130Z adding 'torch/_inductor/codegen/cuda/cutlass_python_evt.py' 2025-08-14T20:48:15.0374020Z adding 'torch/_inductor/codegen/cuda/cutlass_utils.py' 2025-08-14T20:48:15.0376820Z adding 'torch/_inductor/codegen/cuda/device_op_overrides.py' 2025-08-14T20:48:15.0391210Z adding 'torch/_inductor/codegen/cuda/gemm_template.py' 2025-08-14T20:48:15.0394850Z adding 'torch/_inductor/codegen/cuda/serialization.py' 2025-08-14T20:48:15.0395870Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/__init__.py' 2025-08-14T20:48:15.0398730Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/evt_extensions.py' 2025-08-14T20:48:15.0402130Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py' 2025-08-14T20:48:15.0403010Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/__init__.py' 2025-08-14T20:48:15.0404210Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/cuda/__init__.py' 2025-08-14T20:48:15.0405070Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/cuda/cuda.py' 2025-08-14T20:48:15.0406070Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/cuda/cudart.py' 2025-08-14T20:48:15.0407060Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/pydot/__init__.py' 2025-08-14T20:48:15.0408050Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/scipy/__init__.py' 2025-08-14T20:48:15.0408820Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/scipy/special.py' 2025-08-14T20:48:15.0409690Z adding 'torch/_inductor/codegen/mtia/__init__.py' 2025-08-14T20:48:15.0410620Z adding 'torch/_inductor/codegen/mtia/device_op_overrides.py' 2025-08-14T20:48:15.0411630Z adding 'torch/_inductor/codegen/rocm/__init__.py' 2025-08-14T20:48:15.0416280Z adding 'torch/_inductor/codegen/rocm/ck_conv_template.py' 2025-08-14T20:48:15.0417530Z adding 'torch/_inductor/codegen/rocm/ck_template.py' 2025-08-14T20:48:15.0418630Z adding 'torch/_inductor/codegen/rocm/ck_tile_template.py' 2025-08-14T20:48:15.0424930Z adding 'torch/_inductor/codegen/rocm/ck_tile_universal_gemm_template.py' 2025-08-14T20:48:15.0432260Z adding 'torch/_inductor/codegen/rocm/ck_universal_gemm_template.py' 2025-08-14T20:48:15.0433750Z adding 'torch/_inductor/codegen/rocm/compile_command.py' 2025-08-14T20:48:15.0435410Z adding 'torch/_inductor/codegen/rocm/rocm_benchmark_request.py' 2025-08-14T20:48:15.0436980Z adding 'torch/_inductor/codegen/rocm/rocm_cpp_scheduling.py' 2025-08-14T20:48:15.0439830Z adding 'torch/_inductor/codegen/rocm/rocm_kernel.py' 2025-08-14T20:48:15.0441600Z adding 'torch/_inductor/codegen/rocm/rocm_template.py' 2025-08-14T20:48:15.0442430Z adding 'torch/_inductor/codegen/rocm/rocm_template_buffer.py' 2025-08-14T20:48:15.0443280Z adding 'torch/_inductor/codegen/rocm/rocm_utils.py' 2025-08-14T20:48:15.0444240Z adding 'torch/_inductor/codegen/xpu/__init__.py' 2025-08-14T20:48:15.0445310Z adding 'torch/_inductor/codegen/xpu/device_op_overrides.py' 2025-08-14T20:48:15.0446290Z adding 'torch/_inductor/compile_worker/__init__.py' 2025-08-14T20:48:15.0447580Z adding 'torch/_inductor/compile_worker/__main__.py' 2025-08-14T20:48:15.0451070Z adding 'torch/_inductor/compile_worker/subproc_pool.py' 2025-08-14T20:48:15.0452240Z adding 'torch/_inductor/compile_worker/tracked_process_pool.py' 2025-08-14T20:48:15.0453230Z adding 'torch/_inductor/compile_worker/utils.py' 2025-08-14T20:48:15.0454410Z adding 'torch/_inductor/fx_passes/__init__.py' 2025-08-14T20:48:15.0459700Z adding 'torch/_inductor/fx_passes/b2b_gemm.py' 2025-08-14T20:48:15.0463180Z adding 'torch/_inductor/fx_passes/binary_folding.py' 2025-08-14T20:48:15.0467340Z adding 'torch/_inductor/fx_passes/bucketing.py' 2025-08-14T20:48:15.0472220Z adding 'torch/_inductor/fx_passes/ddp_fusion.py' 2025-08-14T20:48:15.0474550Z adding 'torch/_inductor/fx_passes/decompose_mem_bound_mm.py' 2025-08-14T20:48:15.0475520Z adding 'torch/_inductor/fx_passes/dedupe_symint_uses.py' 2025-08-14T20:48:15.0478400Z adding 'torch/_inductor/fx_passes/efficient_conv_bn_eval.py' 2025-08-14T20:48:15.0480600Z adding 'torch/_inductor/fx_passes/freezing_patterns.py' 2025-08-14T20:48:15.0481520Z adding 'torch/_inductor/fx_passes/fsdp.py' 2025-08-14T20:48:15.0487280Z adding 'torch/_inductor/fx_passes/fuse_attention.py' 2025-08-14T20:48:15.0496380Z adding 'torch/_inductor/fx_passes/group_batch_fusion.py' 2025-08-14T20:48:15.0503400Z adding 'torch/_inductor/fx_passes/joint_graph.py' 2025-08-14T20:48:15.0511190Z adding 'torch/_inductor/fx_passes/micro_pipeline_tp.py' 2025-08-14T20:48:15.0512780Z adding 'torch/_inductor/fx_passes/misc_patterns.py' 2025-08-14T20:48:15.0522680Z adding 'torch/_inductor/fx_passes/mkldnn_fusion.py' 2025-08-14T20:48:15.0524890Z adding 'torch/_inductor/fx_passes/numeric_utils.py' 2025-08-14T20:48:15.0530790Z adding 'torch/_inductor/fx_passes/pad_mm.py' 2025-08-14T20:48:15.0546460Z adding 'torch/_inductor/fx_passes/post_grad.py' 2025-08-14T20:48:15.0552390Z adding 'torch/_inductor/fx_passes/pre_grad.py' 2025-08-14T20:48:15.0574870Z adding 'torch/_inductor/fx_passes/quantization.py' 2025-08-14T20:48:15.0582080Z adding 'torch/_inductor/fx_passes/reinplace.py' 2025-08-14T20:48:15.0583400Z adding 'torch/_inductor/fx_passes/replace_random.py' 2025-08-14T20:48:15.0605680Z adding 'torch/_inductor/fx_passes/split_cat.py' 2025-08-14T20:48:15.0607840Z adding 'torch/_inductor/fx_passes/serialized_patterns/__init__.py' 2025-08-14T20:48:15.0609190Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_1.py' 2025-08-14T20:48:15.0611340Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_10.py' 2025-08-14T20:48:15.0612620Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_11.py' 2025-08-14T20:48:15.0614770Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_12.py' 2025-08-14T20:48:15.0615900Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_13.py' 2025-08-14T20:48:15.0618020Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_14.py' 2025-08-14T20:48:15.0619470Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py' 2025-08-14T20:48:15.0622700Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py' 2025-08-14T20:48:15.0624800Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py' 2025-08-14T20:48:15.0627340Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py' 2025-08-14T20:48:15.0628950Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_19.py' 2025-08-14T20:48:15.0630530Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_2.py' 2025-08-14T20:48:15.0632800Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_20.py' 2025-08-14T20:48:15.0634160Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_21.py' 2025-08-14T20:48:15.0636060Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_22.py' 2025-08-14T20:48:15.0637650Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_23.py' 2025-08-14T20:48:15.0639040Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_24.py' 2025-08-14T20:48:15.0640680Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_3.py' 2025-08-14T20:48:15.0642270Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_4.py' 2025-08-14T20:48:15.0643880Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_5.py' 2025-08-14T20:48:15.0645430Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_6.py' 2025-08-14T20:48:15.0647350Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_7.py' 2025-08-14T20:48:15.0648700Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_8.py' 2025-08-14T20:48:15.0650790Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_9.py' 2025-08-14T20:48:15.0651490Z adding 'torch/_inductor/fx_passes/serialized_patterns/addmm_gelu_pattern.py' 2025-08-14T20:48:15.0652490Z adding 'torch/_inductor/fx_passes/serialized_patterns/addmm_gelu_pattern_2.py' 2025-08-14T20:48:15.0653430Z adding 'torch/_inductor/fx_passes/serialized_patterns/addmm_pattern.py' 2025-08-14T20:48:15.0654330Z adding 'torch/_inductor/fx_passes/serialized_patterns/addmm_relu_pattern.py' 2025-08-14T20:48:15.0655210Z adding 'torch/_inductor/fx_passes/serialized_patterns/addmm_relu_pattern_2.py' 2025-08-14T20:48:15.0656120Z adding 'torch/_inductor/fx_passes/serialized_patterns/bmm_pattern.py' 2025-08-14T20:48:15.0657020Z adding 'torch/_inductor/fx_passes/serialized_patterns/mm_pattern.py' 2025-08-14T20:48:15.0658020Z adding 'torch/_inductor/kernel/__init__.py' 2025-08-14T20:48:15.0660800Z adding 'torch/_inductor/kernel/bmm.py' 2025-08-14T20:48:15.0664950Z adding 'torch/_inductor/kernel/conv.py' 2025-08-14T20:48:15.0673280Z adding 'torch/_inductor/kernel/mm.py' 2025-08-14T20:48:15.0675390Z adding 'torch/_inductor/kernel/mm_common.py' 2025-08-14T20:48:15.0679740Z adding 'torch/_inductor/kernel/mm_grouped.py' 2025-08-14T20:48:15.0681830Z adding 'torch/_inductor/kernel/mm_plus_mm.py' 2025-08-14T20:48:15.0682590Z adding 'torch/_inductor/kernel/flex/__init__.py' 2025-08-14T20:48:15.0685650Z adding 'torch/_inductor/kernel/flex/common.py' 2025-08-14T20:48:15.0690870Z adding 'torch/_inductor/kernel/flex/flex_attention.py' 2025-08-14T20:48:15.0693720Z adding 'torch/_inductor/kernel/flex/flex_cpu.py' 2025-08-14T20:48:15.0696980Z adding 'torch/_inductor/kernel/flex/flex_decoding.py' 2025-08-14T20:48:15.0699250Z adding 'torch/_inductor/kernel/flex/templates/common.py.jinja' 2025-08-14T20:48:15.0701780Z adding 'torch/_inductor/kernel/flex/templates/flex_attention.py.jinja' 2025-08-14T20:48:15.0706470Z adding 'torch/_inductor/kernel/flex/templates/flex_backwards.py.jinja' 2025-08-14T20:48:15.0709240Z adding 'torch/_inductor/kernel/flex/templates/flex_decode.py.jinja' 2025-08-14T20:48:15.0710120Z adding 'torch/_inductor/kernel/flex/templates/utilities.py.jinja' 2025-08-14T20:48:15.0711070Z adding 'torch/_inductor/package/__init__.py' 2025-08-14T20:48:15.0711920Z adding 'torch/_inductor/package/build_package.py' 2025-08-14T20:48:15.0713520Z adding 'torch/_inductor/package/package.py' 2025-08-14T20:48:15.0714580Z adding 'torch/_inductor/runtime/__init__.py' 2025-08-14T20:48:15.0719760Z adding 'torch/_inductor/runtime/autotune_cache.py' 2025-08-14T20:48:15.0722450Z adding 'torch/_inductor/runtime/benchmarking.py' 2025-08-14T20:48:15.0723290Z adding 'torch/_inductor/runtime/cache_dir_utils.py' 2025-08-14T20:48:15.0724410Z adding 'torch/_inductor/runtime/compile_tasks.py' 2025-08-14T20:48:15.0727060Z adding 'torch/_inductor/runtime/coordinate_descent_tuner.py' 2025-08-14T20:48:15.0728260Z adding 'torch/_inductor/runtime/debug_utils.py' 2025-08-14T20:48:15.0729600Z adding 'torch/_inductor/runtime/halide_helpers.py' 2025-08-14T20:48:15.0731820Z adding 'torch/_inductor/runtime/hints.py' 2025-08-14T20:48:15.0733140Z adding 'torch/_inductor/runtime/runtime_utils.py' 2025-08-14T20:48:15.0735880Z adding 'torch/_inductor/runtime/static_cuda_launcher.py' 2025-08-14T20:48:15.0737040Z adding 'torch/_inductor/runtime/triton_compat.py' 2025-08-14T20:48:15.0742570Z adding 'torch/_inductor/runtime/triton_helpers.py' 2025-08-14T20:48:15.0768210Z adding 'torch/_inductor/runtime/triton_heuristics.py' 2025-08-14T20:48:15.0770310Z adding 'torch/_lazy/__init__.py' 2025-08-14T20:48:15.0771720Z adding 'torch/_lazy/closure.py' 2025-08-14T20:48:15.0772650Z adding 'torch/_lazy/computation.py' 2025-08-14T20:48:15.0773570Z adding 'torch/_lazy/config.py' 2025-08-14T20:48:15.0774420Z adding 'torch/_lazy/debug.py' 2025-08-14T20:48:15.0775310Z adding 'torch/_lazy/device_context.py' 2025-08-14T20:48:15.0777980Z adding 'torch/_lazy/extract_compiled_graph.py' 2025-08-14T20:48:15.0778580Z adding 'torch/_lazy/ir_cache.py' 2025-08-14T20:48:15.0779420Z adding 'torch/_lazy/metrics.py' 2025-08-14T20:48:15.0780410Z adding 'torch/_lazy/tensor_factory_functions.py' 2025-08-14T20:48:15.0781180Z adding 'torch/_lazy/ts_backend.py' 2025-08-14T20:48:15.0782330Z adding 'torch/_library/__init__.py' 2025-08-14T20:48:15.0784780Z adding 'torch/_library/autograd.py' 2025-08-14T20:48:15.0792140Z adding 'torch/_library/custom_ops.py' 2025-08-14T20:48:15.0795510Z adding 'torch/_library/fake_class_registry.py' 2025-08-14T20:48:15.0797750Z adding 'torch/_library/fake_impl.py' 2025-08-14T20:48:15.0800560Z adding 'torch/_library/fake_profile.py' 2025-08-14T20:48:15.0803510Z adding 'torch/_library/infer_schema.py' 2025-08-14T20:48:15.0804490Z adding 'torch/_library/simple_registry.py' 2025-08-14T20:48:15.0808200Z adding 'torch/_library/triton.py' 2025-08-14T20:48:15.0812460Z adding 'torch/_library/utils.py' 2025-08-14T20:48:15.0813480Z adding 'torch/_logging/__init__.py' 2025-08-14T20:48:15.0825260Z adding 'torch/_logging/_internal.py' 2025-08-14T20:48:15.0827550Z adding 'torch/_logging/_registrations.py' 2025-08-14T20:48:15.0828480Z adding 'torch/_logging/scribe.py' 2025-08-14T20:48:15.0829890Z adding 'torch/_logging/structured.py' 2025-08-14T20:48:15.0831160Z adding 'torch/_numpy/__init__.py' 2025-08-14T20:48:15.0832290Z adding 'torch/_numpy/_binary_ufuncs_impl.py' 2025-08-14T20:48:15.0835580Z adding 'torch/_numpy/_casting_dicts.py' 2025-08-14T20:48:15.0838490Z adding 'torch/_numpy/_dtypes.py' 2025-08-14T20:48:15.0840540Z adding 'torch/_numpy/_dtypes_impl.py' 2025-08-14T20:48:15.0841260Z adding 'torch/_numpy/_funcs.py' 2025-08-14T20:48:15.0854360Z adding 'torch/_numpy/_funcs_impl.py' 2025-08-14T20:48:15.0855240Z adding 'torch/_numpy/_getlimits.py' 2025-08-14T20:48:15.0860160Z adding 'torch/_numpy/_ndarray.py' 2025-08-14T20:48:15.0862450Z adding 'torch/_numpy/_normalizations.py' 2025-08-14T20:48:15.0865010Z adding 'torch/_numpy/_reductions_impl.py' 2025-08-14T20:48:15.0867080Z adding 'torch/_numpy/_ufuncs.py' 2025-08-14T20:48:15.0867820Z adding 'torch/_numpy/_unary_ufuncs_impl.py' 2025-08-14T20:48:15.0870350Z adding 'torch/_numpy/_util.py' 2025-08-14T20:48:15.0871190Z adding 'torch/_numpy/fft.py' 2025-08-14T20:48:15.0873080Z adding 'torch/_numpy/linalg.py' 2025-08-14T20:48:15.0874250Z adding 'torch/_numpy/random.py' 2025-08-14T20:48:15.0875410Z adding 'torch/_numpy/testing/__init__.py' 2025-08-14T20:48:15.0892000Z adding 'torch/_numpy/testing/utils.py' 2025-08-14T20:48:15.0908150Z adding 'torch/_prims/__init__.py' 2025-08-14T20:48:15.0910440Z adding 'torch/_prims/context.py' 2025-08-14T20:48:15.0911370Z adding 'torch/_prims/debug_prims.py' 2025-08-14T20:48:15.0912560Z adding 'torch/_prims/executor.py' 2025-08-14T20:48:15.0915550Z adding 'torch/_prims/rng_prims.py' 2025-08-14T20:48:15.0931870Z adding 'torch/_prims_common/__init__.py' 2025-08-14T20:48:15.0936450Z adding 'torch/_prims_common/wrappers.py' 2025-08-14T20:48:15.0983210Z adding 'torch/_refs/__init__.py' 2025-08-14T20:48:15.0985680Z adding 'torch/_refs/_conversions.py' 2025-08-14T20:48:15.0988960Z adding 'torch/_refs/fft.py' 2025-08-14T20:48:15.0992150Z adding 'torch/_refs/linalg/__init__.py' 2025-08-14T20:48:15.0993070Z adding 'torch/_refs/nn/__init__.py' 2025-08-14T20:48:15.1001270Z adding 'torch/_refs/nn/functional/__init__.py' 2025-08-14T20:48:15.1003410Z adding 'torch/_refs/special/__init__.py' 2025-08-14T20:48:15.1004300Z adding 'torch/_strobelight/__init__.py' 2025-08-14T20:48:15.1006940Z adding 'torch/_strobelight/cli_function_profiler.py' 2025-08-14T20:48:15.1009060Z adding 'torch/_strobelight/compile_time_profiler.py' 2025-08-14T20:48:15.1013990Z adding 'torch/_subclasses/__init__.py' 2025-08-14T20:48:15.1014220Z adding 'torch/_subclasses/_fake_tensor_utils.py' 2025-08-14T20:48:15.1021670Z adding 'torch/_subclasses/fake_impls.py' 2025-08-14T20:48:15.1053590Z adding 'torch/_subclasses/fake_tensor.py' 2025-08-14T20:48:15.1056850Z adding 'torch/_subclasses/fake_utils.py' 2025-08-14T20:48:15.1063790Z adding 'torch/_subclasses/functional_tensor.py' 2025-08-14T20:48:15.1081840Z adding 'torch/_subclasses/meta_utils.py' 2025-08-14T20:48:15.1084520Z adding 'torch/_subclasses/schema_check_mode.py' 2025-08-14T20:48:15.1085280Z adding 'torch/_vendor/__init__.py' 2025-08-14T20:48:15.1086500Z adding 'torch/_vendor/packaging/__init__.py' 2025-08-14T20:48:15.1087530Z adding 'torch/_vendor/packaging/_structures.py' 2025-08-14T20:48:15.1091340Z adding 'torch/_vendor/packaging/version.py' 2025-08-14T20:48:15.1094030Z adding 'torch/accelerator/__init__.py' 2025-08-14T20:48:15.1094780Z adding 'torch/accelerator/_utils.py' 2025-08-14T20:48:15.1096830Z adding 'torch/accelerator/memory.py' 2025-08-14T20:48:15.1097670Z adding 'torch/amp/__init__.py' 2025-08-14T20:48:15.1102770Z adding 'torch/amp/autocast_mode.py' 2025-08-14T20:48:15.1109530Z adding 'torch/amp/grad_scaler.py' 2025-08-14T20:48:15.1110660Z adding 'torch/ao/__init__.py' 2025-08-14T20:48:15.1112040Z adding 'torch/ao/nn/__init__.py' 2025-08-14T20:48:15.1113420Z adding 'torch/ao/nn/intrinsic/__init__.py' 2025-08-14T20:48:15.1114650Z adding 'torch/ao/nn/intrinsic/modules/__init__.py' 2025-08-14T20:48:15.1116240Z adding 'torch/ao/nn/intrinsic/modules/fused.py' 2025-08-14T20:48:15.1117240Z adding 'torch/ao/nn/intrinsic/qat/__init__.py' 2025-08-14T20:48:15.1118420Z adding 'torch/ao/nn/intrinsic/qat/modules/__init__.py' 2025-08-14T20:48:15.1123490Z adding 'torch/ao/nn/intrinsic/qat/modules/conv_fused.py' 2025-08-14T20:48:15.1125660Z adding 'torch/ao/nn/intrinsic/qat/modules/linear_fused.py' 2025-08-14T20:48:15.1126380Z adding 'torch/ao/nn/intrinsic/qat/modules/linear_relu.py' 2025-08-14T20:48:15.1127420Z adding 'torch/ao/nn/intrinsic/quantized/__init__.py' 2025-08-14T20:48:15.1128500Z adding 'torch/ao/nn/intrinsic/quantized/dynamic/__init__.py' 2025-08-14T20:48:15.1129540Z adding 'torch/ao/nn/intrinsic/quantized/dynamic/modules/__init__.py' 2025-08-14T20:48:15.1130740Z adding 'torch/ao/nn/intrinsic/quantized/dynamic/modules/linear_relu.py' 2025-08-14T20:48:15.1131810Z adding 'torch/ao/nn/intrinsic/quantized/modules/__init__.py' 2025-08-14T20:48:15.1132950Z adding 'torch/ao/nn/intrinsic/quantized/modules/bn_relu.py' 2025-08-14T20:48:15.1134220Z adding 'torch/ao/nn/intrinsic/quantized/modules/conv_add.py' 2025-08-14T20:48:15.1135920Z adding 'torch/ao/nn/intrinsic/quantized/modules/conv_relu.py' 2025-08-14T20:48:15.1137430Z adding 'torch/ao/nn/intrinsic/quantized/modules/linear_relu.py' 2025-08-14T20:48:15.1138360Z adding 'torch/ao/nn/qat/__init__.py' 2025-08-14T20:48:15.1139370Z adding 'torch/ao/nn/qat/dynamic/__init__.py' 2025-08-14T20:48:15.1140380Z adding 'torch/ao/nn/qat/dynamic/modules/__init__.py' 2025-08-14T20:48:15.1141410Z adding 'torch/ao/nn/qat/dynamic/modules/linear.py' 2025-08-14T20:48:15.1142420Z adding 'torch/ao/nn/qat/modules/__init__.py' 2025-08-14T20:48:15.1144740Z adding 'torch/ao/nn/qat/modules/conv.py' 2025-08-14T20:48:15.1146030Z adding 'torch/ao/nn/qat/modules/embedding_ops.py' 2025-08-14T20:48:15.1147310Z adding 'torch/ao/nn/qat/modules/linear.py' 2025-08-14T20:48:15.1148340Z adding 'torch/ao/nn/quantizable/__init__.py' 2025-08-14T20:48:15.1149380Z adding 'torch/ao/nn/quantizable/modules/__init__.py' 2025-08-14T20:48:15.1153990Z adding 'torch/ao/nn/quantizable/modules/activation.py' 2025-08-14T20:48:15.1158300Z adding 'torch/ao/nn/quantizable/modules/rnn.py' 2025-08-14T20:48:15.1159260Z adding 'torch/ao/nn/quantized/__init__.py' 2025-08-14T20:48:15.1163970Z adding 'torch/ao/nn/quantized/functional.py' 2025-08-14T20:48:15.1164870Z adding 'torch/ao/nn/quantized/dynamic/__init__.py' 2025-08-14T20:48:15.1166060Z adding 'torch/ao/nn/quantized/dynamic/modules/__init__.py' 2025-08-14T20:48:15.1168560Z adding 'torch/ao/nn/quantized/dynamic/modules/conv.py' 2025-08-14T20:48:15.1170180Z adding 'torch/ao/nn/quantized/dynamic/modules/linear.py' 2025-08-14T20:48:15.1178540Z adding 'torch/ao/nn/quantized/dynamic/modules/rnn.py' 2025-08-14T20:48:15.1180680Z adding 'torch/ao/nn/quantized/modules/__init__.py' 2025-08-14T20:48:15.1183040Z adding 'torch/ao/nn/quantized/modules/activation.py' 2025-08-14T20:48:15.1184150Z adding 'torch/ao/nn/quantized/modules/batchnorm.py' 2025-08-14T20:48:15.1189730Z adding 'torch/ao/nn/quantized/modules/conv.py' 2025-08-14T20:48:15.1190600Z adding 'torch/ao/nn/quantized/modules/dropout.py' 2025-08-14T20:48:15.1193500Z adding 'torch/ao/nn/quantized/modules/embedding_ops.py' 2025-08-14T20:48:15.1195280Z adding 'torch/ao/nn/quantized/modules/functional_modules.py' 2025-08-14T20:48:15.1198330Z adding 'torch/ao/nn/quantized/modules/linear.py' 2025-08-14T20:48:15.1199620Z adding 'torch/ao/nn/quantized/modules/normalization.py' 2025-08-14T20:48:15.1200720Z adding 'torch/ao/nn/quantized/modules/rnn.py' 2025-08-14T20:48:15.1202260Z adding 'torch/ao/nn/quantized/modules/utils.py' 2025-08-14T20:48:15.1203320Z adding 'torch/ao/nn/quantized/reference/__init__.py' 2025-08-14T20:48:15.1204520Z adding 'torch/ao/nn/quantized/reference/modules/__init__.py' 2025-08-14T20:48:15.1206770Z adding 'torch/ao/nn/quantized/reference/modules/conv.py' 2025-08-14T20:48:15.1207740Z adding 'torch/ao/nn/quantized/reference/modules/linear.py' 2025-08-14T20:48:15.1212230Z adding 'torch/ao/nn/quantized/reference/modules/rnn.py' 2025-08-14T20:48:15.1213380Z adding 'torch/ao/nn/quantized/reference/modules/sparse.py' 2025-08-14T20:48:15.1216240Z adding 'torch/ao/nn/quantized/reference/modules/utils.py' 2025-08-14T20:48:15.1216970Z adding 'torch/ao/nn/sparse/__init__.py' 2025-08-14T20:48:15.1218080Z adding 'torch/ao/nn/sparse/quantized/__init__.py' 2025-08-14T20:48:15.1220460Z adding 'torch/ao/nn/sparse/quantized/linear.py' 2025-08-14T20:48:15.1221220Z adding 'torch/ao/nn/sparse/quantized/utils.py' 2025-08-14T20:48:15.1222270Z adding 'torch/ao/nn/sparse/quantized/dynamic/__init__.py' 2025-08-14T20:48:15.1224390Z adding 'torch/ao/nn/sparse/quantized/dynamic/linear.py' 2025-08-14T20:48:15.1225060Z adding 'torch/ao/ns/__init__.py' 2025-08-14T20:48:15.1229030Z adding 'torch/ao/ns/_numeric_suite.py' 2025-08-14T20:48:15.1236850Z adding 'torch/ao/ns/_numeric_suite_fx.py' 2025-08-14T20:48:15.1237900Z adding 'torch/ao/ns/fx/__init__.py' 2025-08-14T20:48:15.1242360Z adding 'torch/ao/ns/fx/graph_matcher.py' 2025-08-14T20:48:15.1251130Z adding 'torch/ao/ns/fx/graph_passes.py' 2025-08-14T20:48:15.1254550Z adding 'torch/ao/ns/fx/mappings.py' 2025-08-14T20:48:15.1265200Z adding 'torch/ao/ns/fx/n_shadows_utils.py' 2025-08-14T20:48:15.1266560Z adding 'torch/ao/ns/fx/ns_types.py' 2025-08-14T20:48:15.1268720Z adding 'torch/ao/ns/fx/pattern_utils.py' 2025-08-14T20:48:15.1271190Z adding 'torch/ao/ns/fx/qconfig_multi_mapping.py' 2025-08-14T20:48:15.1275300Z adding 'torch/ao/ns/fx/utils.py' 2025-08-14T20:48:15.1277760Z adding 'torch/ao/ns/fx/weight_utils.py' 2025-08-14T20:48:15.1278840Z adding 'torch/ao/pruning/__init__.py' 2025-08-14T20:48:15.1279700Z adding 'torch/ao/pruning/_mappings.py' 2025-08-14T20:48:15.1280830Z adding 'torch/ao/pruning/_experimental/__init__.py' 2025-08-14T20:48:15.1281930Z adding 'torch/ao/pruning/_experimental/activation_sparsifier/__init__.py' 2025-08-14T20:48:15.1286480Z adding 'torch/ao/pruning/_experimental/activation_sparsifier/activation_sparsifier.py' 2025-08-14T20:48:15.1287410Z adding 'torch/ao/pruning/_experimental/data_scheduler/__init__.py' 2025-08-14T20:48:15.1289720Z adding 'torch/ao/pruning/_experimental/data_scheduler/base_data_scheduler.py' 2025-08-14T20:48:15.1290680Z adding 'torch/ao/pruning/_experimental/data_sparsifier/__init__.py' 2025-08-14T20:48:15.1294200Z adding 'torch/ao/pruning/_experimental/data_sparsifier/base_data_sparsifier.py' 2025-08-14T20:48:15.1296360Z adding 'torch/ao/pruning/_experimental/data_sparsifier/data_norm_sparsifier.py' 2025-08-14T20:48:15.1297970Z adding 'torch/ao/pruning/_experimental/data_sparsifier/quantization_utils.py' 2025-08-14T20:48:15.1299000Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/__init__.py' 2025-08-14T20:48:15.1299980Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/__init__.py' 2025-08-14T20:48:15.1301120Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/_data_sparstity_utils.py' 2025-08-14T20:48:15.1302900Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/data_sparsity.py' 2025-08-14T20:48:15.1304510Z adding 'torch/ao/pruning/_experimental/pruner/FPGM_pruner.py' 2025-08-14T20:48:15.1305360Z adding 'torch/ao/pruning/_experimental/pruner/__init__.py' 2025-08-14T20:48:15.1307950Z adding 'torch/ao/pruning/_experimental/pruner/base_structured_sparsifier.py' 2025-08-14T20:48:15.1309060Z adding 'torch/ao/pruning/_experimental/pruner/lstm_saliency_pruner.py' 2025-08-14T20:48:15.1310170Z adding 'torch/ao/pruning/_experimental/pruner/match_utils.py' 2025-08-14T20:48:15.1311260Z adding 'torch/ao/pruning/_experimental/pruner/parametrization.py' 2025-08-14T20:48:15.1315160Z adding 'torch/ao/pruning/_experimental/pruner/prune_functions.py' 2025-08-14T20:48:15.1316030Z adding 'torch/ao/pruning/_experimental/pruner/saliency_pruner.py' 2025-08-14T20:48:15.1317020Z adding 'torch/ao/pruning/scheduler/__init__.py' 2025-08-14T20:48:15.1319180Z adding 'torch/ao/pruning/scheduler/base_scheduler.py' 2025-08-14T20:48:15.1320450Z adding 'torch/ao/pruning/scheduler/cubic_scheduler.py' 2025-08-14T20:48:15.1321620Z adding 'torch/ao/pruning/scheduler/lambda_scheduler.py' 2025-08-14T20:48:15.1322510Z adding 'torch/ao/pruning/sparsifier/__init__.py' 2025-08-14T20:48:15.1325830Z adding 'torch/ao/pruning/sparsifier/base_sparsifier.py' 2025-08-14T20:48:15.1327010Z adding 'torch/ao/pruning/sparsifier/nearly_diagonal_sparsifier.py' 2025-08-14T20:48:15.1328970Z adding 'torch/ao/pruning/sparsifier/utils.py' 2025-08-14T20:48:15.1331320Z adding 'torch/ao/pruning/sparsifier/weight_norm_sparsifier.py' 2025-08-14T20:48:15.1333570Z adding 'torch/ao/quantization/__init__.py' 2025-08-14T20:48:15.1335350Z adding 'torch/ao/quantization/_correct_bias.py' 2025-08-14T20:48:15.1338020Z adding 'torch/ao/quantization/_equalize.py' 2025-08-14T20:48:15.1340160Z adding 'torch/ao/quantization/_learnable_fake_quantize.py' 2025-08-14T20:48:15.1344250Z adding 'torch/ao/quantization/fake_quantize.py' 2025-08-14T20:48:15.1346340Z adding 'torch/ao/quantization/fuse_modules.py' 2025-08-14T20:48:15.1348560Z adding 'torch/ao/quantization/fuser_method_mappings.py' 2025-08-14T20:48:15.1364200Z adding 'torch/ao/quantization/observer.py' 2025-08-14T20:48:15.1369190Z adding 'torch/ao/quantization/qconfig.py' 2025-08-14T20:48:15.1372240Z adding 'torch/ao/quantization/qconfig_mapping.py' 2025-08-14T20:48:15.1373130Z adding 'torch/ao/quantization/quant_type.py' 2025-08-14T20:48:15.1375970Z adding 'torch/ao/quantization/quantization_mappings.py' 2025-08-14T20:48:15.1382230Z adding 'torch/ao/quantization/quantize.py' 2025-08-14T20:48:15.1387810Z adding 'torch/ao/quantization/quantize_fx.py' 2025-08-14T20:48:15.1390990Z adding 'torch/ao/quantization/quantize_jit.py' 2025-08-14T20:48:15.1393330Z adding 'torch/ao/quantization/quantize_pt2e.py' 2025-08-14T20:48:15.1394320Z adding 'torch/ao/quantization/stubs.py' 2025-08-14T20:48:15.1401040Z adding 'torch/ao/quantization/utils.py' 2025-08-14T20:48:15.1402570Z adding 'torch/ao/quantization/backend_config/__init__.py' 2025-08-14T20:48:15.1407070Z adding 'torch/ao/quantization/backend_config/_common_operator_config_utils.py' 2025-08-14T20:48:15.1408690Z adding 'torch/ao/quantization/backend_config/_qnnpack_pt2e.py' 2025-08-14T20:48:15.1414590Z adding 'torch/ao/quantization/backend_config/backend_config.py' 2025-08-14T20:48:15.1417440Z adding 'torch/ao/quantization/backend_config/executorch.py' 2025-08-14T20:48:15.1418600Z adding 'torch/ao/quantization/backend_config/fbgemm.py' 2025-08-14T20:48:15.1420220Z adding 'torch/ao/quantization/backend_config/native.py' 2025-08-14T20:48:15.1421010Z adding 'torch/ao/quantization/backend_config/observation_type.py' 2025-08-14T20:48:15.1424040Z adding 'torch/ao/quantization/backend_config/onednn.py' 2025-08-14T20:48:15.1425330Z adding 'torch/ao/quantization/backend_config/qnnpack.py' 2025-08-14T20:48:15.1426600Z adding 'torch/ao/quantization/backend_config/tensorrt.py' 2025-08-14T20:48:15.1429780Z adding 'torch/ao/quantization/backend_config/utils.py' 2025-08-14T20:48:15.1430880Z adding 'torch/ao/quantization/backend_config/x86.py' 2025-08-14T20:48:15.1432040Z adding 'torch/ao/quantization/fx/__init__.py' 2025-08-14T20:48:15.1438210Z adding 'torch/ao/quantization/fx/_decomposed.py' 2025-08-14T20:48:15.1446340Z adding 'torch/ao/quantization/fx/_equalize.py' 2025-08-14T20:48:15.1456420Z adding 'torch/ao/quantization/fx/_lower_to_native_backend.py' 2025-08-14T20:48:15.1468440Z adding 'torch/ao/quantization/fx/convert.py' 2025-08-14T20:48:15.1471960Z adding 'torch/ao/quantization/fx/custom_config.py' 2025-08-14T20:48:15.1474040Z adding 'torch/ao/quantization/fx/fuse.py' 2025-08-14T20:48:15.1475500Z adding 'torch/ao/quantization/fx/fuse_handler.py' 2025-08-14T20:48:15.1477310Z adding 'torch/ao/quantization/fx/graph_module.py' 2025-08-14T20:48:15.1478090Z adding 'torch/ao/quantization/fx/lower_to_fbgemm.py' 2025-08-14T20:48:15.1478930Z adding 'torch/ao/quantization/fx/lower_to_qnnpack.py' 2025-08-14T20:48:15.1481430Z adding 'torch/ao/quantization/fx/lstm_utils.py' 2025-08-14T20:48:15.1483750Z adding 'torch/ao/quantization/fx/match_utils.py' 2025-08-14T20:48:15.1484970Z adding 'torch/ao/quantization/fx/pattern_utils.py' 2025-08-14T20:48:15.1504460Z adding 'torch/ao/quantization/fx/prepare.py' 2025-08-14T20:48:15.1508300Z adding 'torch/ao/quantization/fx/qconfig_mapping_utils.py' 2025-08-14T20:48:15.1510260Z adding 'torch/ao/quantization/fx/quantize_handler.py' 2025-08-14T20:48:15.1511170Z adding 'torch/ao/quantization/fx/tracer.py' 2025-08-14T20:48:15.1519440Z adding 'torch/ao/quantization/fx/utils.py' 2025-08-14T20:48:15.1520560Z adding 'torch/ao/quantization/fx/_model_report/__init__.py' 2025-08-14T20:48:15.1534930Z adding 'torch/ao/quantization/fx/_model_report/detector.py' 2025-08-14T20:48:15.1541470Z adding 'torch/ao/quantization/fx/_model_report/model_report.py' 2025-08-14T20:48:15.1544230Z adding 'torch/ao/quantization/fx/_model_report/model_report_observer.py' 2025-08-14T20:48:15.1550850Z adding 'torch/ao/quantization/fx/_model_report/model_report_visualizer.py' 2025-08-14T20:48:15.1551830Z adding 'torch/ao/quantization/pt2e/__init__.py' 2025-08-14T20:48:15.1558080Z adding 'torch/ao/quantization/pt2e/_affine_quantization.py' 2025-08-14T20:48:15.1561230Z adding 'torch/ao/quantization/pt2e/_numeric_debugger.py' 2025-08-14T20:48:15.1562430Z adding 'torch/ao/quantization/pt2e/duplicate_dq_pass.py' 2025-08-14T20:48:15.1564620Z adding 'torch/ao/quantization/pt2e/export_utils.py' 2025-08-14T20:48:15.1566480Z adding 'torch/ao/quantization/pt2e/graph_utils.py' 2025-08-14T20:48:15.1567440Z adding 'torch/ao/quantization/pt2e/lowering.py' 2025-08-14T20:48:15.1569960Z adding 'torch/ao/quantization/pt2e/port_metadata_pass.py' 2025-08-14T20:48:15.1575110Z adding 'torch/ao/quantization/pt2e/prepare.py' 2025-08-14T20:48:15.1582440Z adding 'torch/ao/quantization/pt2e/qat_utils.py' 2025-08-14T20:48:15.1587520Z adding 'torch/ao/quantization/pt2e/utils.py' 2025-08-14T20:48:15.1588610Z adding 'torch/ao/quantization/pt2e/representation/__init__.py' 2025-08-14T20:48:15.1592990Z adding 'torch/ao/quantization/pt2e/representation/rewrite.py' 2025-08-14T20:48:15.1594100Z adding 'torch/ao/quantization/quantizer/__init__.py' 2025-08-14T20:48:15.1595490Z adding 'torch/ao/quantization/quantizer/composable_quantizer.py' 2025-08-14T20:48:15.1596800Z adding 'torch/ao/quantization/quantizer/embedding_quantizer.py' 2025-08-14T20:48:15.1598990Z adding 'torch/ao/quantization/quantizer/quantizer.py' 2025-08-14T20:48:15.1600160Z adding 'torch/ao/quantization/quantizer/utils.py' 2025-08-14T20:48:15.1610430Z adding 'torch/ao/quantization/quantizer/x86_inductor_quantizer.py' 2025-08-14T20:48:15.1613920Z adding 'torch/ao/quantization/quantizer/xnnpack_quantizer.py' 2025-08-14T20:48:15.1620380Z adding 'torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py' 2025-08-14T20:48:15.1621830Z adding 'torch/ao/quantization/quantizer/xpu_inductor_quantizer.py' 2025-08-14T20:48:15.1627880Z adding 'torch/autograd/__init__.py' 2025-08-14T20:48:15.1629440Z adding 'torch/autograd/anomaly_mode.py' 2025-08-14T20:48:15.1631650Z adding 'torch/autograd/forward_ad.py' 2025-08-14T20:48:15.1638700Z adding 'torch/autograd/function.py' 2025-08-14T20:48:15.1648220Z adding 'torch/autograd/functional.py' 2025-08-14T20:48:15.1651050Z adding 'torch/autograd/grad_mode.py' 2025-08-14T20:48:15.1671270Z adding 'torch/autograd/gradcheck.py' 2025-08-14T20:48:15.1678520Z adding 'torch/autograd/graph.py' 2025-08-14T20:48:15.1688650Z adding 'torch/autograd/profiler.py' 2025-08-14T20:48:15.1691500Z adding 'torch/autograd/profiler_legacy.py' 2025-08-14T20:48:15.1700300Z adding 'torch/autograd/profiler_util.py' 2025-08-14T20:48:15.1701260Z adding 'torch/autograd/variable.py' 2025-08-14T20:48:15.1702330Z adding 'torch/autograd/_functions/__init__.py' 2025-08-14T20:48:15.1703460Z adding 'torch/autograd/_functions/tensor.py' 2025-08-14T20:48:15.1704600Z adding 'torch/autograd/_functions/utils.py' 2025-08-14T20:48:15.1706500Z adding 'torch/backends/__init__.py' 2025-08-14T20:48:15.1707770Z adding 'torch/backends/_coreml/__init__.py' 2025-08-14T20:48:15.1709530Z adding 'torch/backends/_coreml/preprocess.py' 2025-08-14T20:48:15.1710250Z adding 'torch/backends/_nnapi/__init__.py' 2025-08-14T20:48:15.1712310Z adding 'torch/backends/_nnapi/prepare.py' 2025-08-14T20:48:15.1727680Z adding 'torch/backends/_nnapi/serializer.py' 2025-08-14T20:48:15.1729210Z adding 'torch/backends/cpu/__init__.py' 2025-08-14T20:48:15.1733150Z adding 'torch/backends/cuda/__init__.py' 2025-08-14T20:48:15.1735500Z adding 'torch/backends/cudnn/__init__.py' 2025-08-14T20:48:15.1736570Z adding 'torch/backends/cudnn/rnn.py' 2025-08-14T20:48:15.1737800Z adding 'torch/backends/cusparselt/__init__.py' 2025-08-14T20:48:15.1738840Z adding 'torch/backends/kleidiai/__init__.py' 2025-08-14T20:48:15.1739950Z adding 'torch/backends/mha/__init__.py' 2025-08-14T20:48:15.1741220Z adding 'torch/backends/miopen/__init__.py' 2025-08-14T20:48:15.1742570Z adding 'torch/backends/mkl/__init__.py' 2025-08-14T20:48:15.1744290Z adding 'torch/backends/mkldnn/__init__.py' 2025-08-14T20:48:15.1745530Z adding 'torch/backends/mps/__init__.py' 2025-08-14T20:48:15.1746670Z adding 'torch/backends/nnpack/__init__.py' 2025-08-14T20:48:15.1747660Z adding 'torch/backends/openmp/__init__.py' 2025-08-14T20:48:15.1749640Z adding 'torch/backends/opt_einsum/__init__.py' 2025-08-14T20:48:15.1750530Z adding 'torch/backends/quantized/__init__.py' 2025-08-14T20:48:15.1751430Z adding 'torch/backends/xeon/__init__.py' 2025-08-14T20:48:15.1758660Z adding 'torch/backends/xeon/run_cpu.py' 2025-08-14T20:48:15.1759750Z adding 'torch/backends/xnnpack/__init__.py' 2025-08-14T20:48:15.2862220Z adding 'torch/bin/protoc' 2025-08-14T20:48:15.3979080Z adding 'torch/bin/protoc-3.13.0.0' 2025-08-14T20:48:15.4006500Z adding 'torch/bin/torch_shm_manager' 2025-08-14T20:48:15.4013010Z adding 'torch/compiler/__init__.py' 2025-08-14T20:48:15.4016320Z adding 'torch/compiler/_cache.py' 2025-08-14T20:48:15.4017720Z adding 'torch/compiler/config.py' 2025-08-14T20:48:15.4018810Z adding 'torch/contrib/__init__.py' 2025-08-14T20:48:15.4020980Z adding 'torch/contrib/_tensorboard_vis.py' 2025-08-14T20:48:15.4023080Z adding 'torch/cpu/__init__.py' 2025-08-14T20:48:15.4023880Z adding 'torch/cpu/amp/__init__.py' 2025-08-14T20:48:15.4025020Z adding 'torch/cpu/amp/autocast_mode.py' 2025-08-14T20:48:15.4025960Z adding 'torch/cpu/amp/grad_scaler.py' 2025-08-14T20:48:15.4028320Z adding 'torch/csrc/inductor/aoti_runtime/model.h' 2025-08-14T20:48:15.4041570Z adding 'torch/cuda/__init__.py' 2025-08-14T20:48:15.4042710Z adding 'torch/cuda/_gpu_trace.py' 2025-08-14T20:48:15.4049030Z adding 'torch/cuda/_memory_viz.py' 2025-08-14T20:48:15.4049910Z adding 'torch/cuda/_pin_memory_utils.py' 2025-08-14T20:48:15.4054810Z adding 'torch/cuda/_sanitizer.py' 2025-08-14T20:48:15.4057960Z adding 'torch/cuda/_utils.py' 2025-08-14T20:48:15.4058870Z adding 'torch/cuda/comm.py' 2025-08-14T20:48:15.4059650Z adding 'torch/cuda/error.py' 2025-08-14T20:48:15.4061590Z adding 'torch/cuda/gds.py' 2025-08-14T20:48:15.4067160Z adding 'torch/cuda/graphs.py' 2025-08-14T20:48:15.4069250Z adding 'torch/cuda/jiterator.py' 2025-08-14T20:48:15.4078830Z adding 'torch/cuda/memory.py' 2025-08-14T20:48:15.4080740Z adding 'torch/cuda/nccl.py' 2025-08-14T20:48:15.4081950Z adding 'torch/cuda/nvtx.py' 2025-08-14T20:48:15.4083210Z adding 'torch/cuda/profiler.py' 2025-08-14T20:48:15.4085130Z adding 'torch/cuda/random.py' 2025-08-14T20:48:15.4085530Z adding 'torch/cuda/sparse.py' 2025-08-14T20:48:15.4088300Z adding 'torch/cuda/streams.py' 2025-08-14T20:48:15.4094920Z adding 'torch/cuda/tunable.py' 2025-08-14T20:48:15.4095930Z adding 'torch/cuda/amp/__init__.py' 2025-08-14T20:48:15.4097120Z adding 'torch/cuda/amp/autocast_mode.py' 2025-08-14T20:48:15.4098170Z adding 'torch/cuda/amp/common.py' 2025-08-14T20:48:15.4099140Z adding 'torch/cuda/amp/grad_scaler.py' 2025-08-14T20:48:15.4101680Z adding 'torch/distributed/__init__.py' 2025-08-14T20:48:15.4102440Z adding 'torch/distributed/_checkpointable.py' 2025-08-14T20:48:15.4103810Z adding 'torch/distributed/_composable_state.py' 2025-08-14T20:48:15.4105450Z adding 'torch/distributed/_dist2.py' 2025-08-14T20:48:15.4114510Z adding 'torch/distributed/_functional_collectives.py' 2025-08-14T20:48:15.4115760Z adding 'torch/distributed/_functional_collectives_impl.py' 2025-08-14T20:48:15.4117350Z adding 'torch/distributed/_serialization.py' 2025-08-14T20:48:15.4123860Z adding 'torch/distributed/_state_dict_utils.py' 2025-08-14T20:48:15.4125050Z adding 'torch/distributed/argparse_util.py' 2025-08-14T20:48:15.4126370Z adding 'torch/distributed/c10d_logger.py' 2025-08-14T20:48:15.4129480Z adding 'torch/distributed/collective_utils.py' 2025-08-14T20:48:15.4130390Z adding 'torch/distributed/constants.py' 2025-08-14T20:48:15.4142000Z adding 'torch/distributed/device_mesh.py' 2025-08-14T20:48:15.4188110Z adding 'torch/distributed/distributed_c10d.py' 2025-08-14T20:48:15.4191580Z adding 'torch/distributed/launch.py' 2025-08-14T20:48:15.4196680Z adding 'torch/distributed/logging_handlers.py' 2025-08-14T20:48:15.4196920Z adding 'torch/distributed/remote_device.py' 2025-08-14T20:48:15.4197130Z adding 'torch/distributed/rendezvous.py' 2025-08-14T20:48:15.4204550Z adding 'torch/distributed/run.py' 2025-08-14T20:48:15.4207850Z adding 'torch/distributed/utils.py' 2025-08-14T20:48:15.4209640Z adding 'torch/distributed/_composable/__init__.py' 2025-08-14T20:48:15.4211470Z adding 'torch/distributed/_composable/checkpoint_activation.py' 2025-08-14T20:48:15.4213960Z adding 'torch/distributed/_composable/contract.py' 2025-08-14T20:48:15.4216500Z adding 'torch/distributed/_composable/replicate.py' 2025-08-14T20:48:15.4220250Z adding 'torch/distributed/_composable/replicate_with_fsdp.py' 2025-08-14T20:48:15.4221350Z adding 'torch/distributed/_composable/fsdp/__init__.py' 2025-08-14T20:48:15.4222200Z adding 'torch/distributed/_composable/fsdp/fully_shard.py' 2025-08-14T20:48:15.4223330Z adding 'torch/distributed/_shard/__init__.py' 2025-08-14T20:48:15.4224530Z adding 'torch/distributed/_shard/_utils.py' 2025-08-14T20:48:15.4227830Z adding 'torch/distributed/_shard/api.py' 2025-08-14T20:48:15.4228840Z adding 'torch/distributed/_shard/common_op_utils.py' 2025-08-14T20:48:15.4229970Z adding 'torch/distributed/_shard/metadata.py' 2025-08-14T20:48:15.4231180Z adding 'torch/distributed/_shard/op_registry_utils.py' 2025-08-14T20:48:15.4232170Z adding 'torch/distributed/_shard/sharder.py' 2025-08-14T20:48:15.4233530Z adding 'torch/distributed/_shard/checkpoint/__init__.py' 2025-08-14T20:48:15.4234920Z adding 'torch/distributed/_shard/sharded_optim/__init__.py' 2025-08-14T20:48:15.4236840Z adding 'torch/distributed/_shard/sharded_optim/api.py' 2025-08-14T20:48:15.4240180Z adding 'torch/distributed/_shard/sharded_tensor/__init__.py' 2025-08-14T20:48:15.4250970Z adding 'torch/distributed/_shard/sharded_tensor/api.py' 2025-08-14T20:48:15.4251970Z adding 'torch/distributed/_shard/sharded_tensor/logger.py' 2025-08-14T20:48:15.4252850Z adding 'torch/distributed/_shard/sharded_tensor/logging_handlers.py' 2025-08-14T20:48:15.4254320Z adding 'torch/distributed/_shard/sharded_tensor/metadata.py' 2025-08-14T20:48:15.4256980Z adding 'torch/distributed/_shard/sharded_tensor/reshard.py' 2025-08-14T20:48:15.4257940Z adding 'torch/distributed/_shard/sharded_tensor/shard.py' 2025-08-14T20:48:15.4260920Z adding 'torch/distributed/_shard/sharded_tensor/utils.py' 2025-08-14T20:48:15.4262090Z adding 'torch/distributed/_shard/sharded_tensor/_ops/__init__.py' 2025-08-14T20:48:15.4263570Z adding 'torch/distributed/_shard/sharded_tensor/_ops/_common.py' 2025-08-14T20:48:15.4264750Z adding 'torch/distributed/_shard/sharded_tensor/_ops/binary_cmp.py' 2025-08-14T20:48:15.4266380Z adding 'torch/distributed/_shard/sharded_tensor/_ops/init.py' 2025-08-14T20:48:15.4267440Z adding 'torch/distributed/_shard/sharded_tensor/_ops/misc_ops.py' 2025-08-14T20:48:15.4269770Z adding 'torch/distributed/_shard/sharded_tensor/_ops/tensor_ops.py' 2025-08-14T20:48:15.4270670Z adding 'torch/distributed/_shard/sharding_plan/__init__.py' 2025-08-14T20:48:15.4271800Z adding 'torch/distributed/_shard/sharding_plan/api.py' 2025-08-14T20:48:15.4273100Z adding 'torch/distributed/_shard/sharding_spec/__init__.py' 2025-08-14T20:48:15.4275730Z adding 'torch/distributed/_shard/sharding_spec/_internals.py' 2025-08-14T20:48:15.4278250Z adding 'torch/distributed/_shard/sharding_spec/api.py' 2025-08-14T20:48:15.4280750Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec.py' 2025-08-14T20:48:15.4281830Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/__init__.py' 2025-08-14T20:48:15.4286090Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py' 2025-08-14T20:48:15.4288770Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding.py' 2025-08-14T20:48:15.4292700Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py' 2025-08-14T20:48:15.4293760Z adding 'torch/distributed/_sharded_tensor/__init__.py' 2025-08-14T20:48:15.4294860Z adding 'torch/distributed/_sharding_spec/__init__.py' 2025-08-14T20:48:15.4307890Z adding 'torch/distributed/_symmetric_memory/__init__.py' 2025-08-14T20:48:15.4314490Z adding 'torch/distributed/_symmetric_memory/_nvshmem_triton.py' 2025-08-14T20:48:15.4315810Z adding 'torch/distributed/_tensor/__init__.py' 2025-08-14T20:48:15.4316640Z adding 'torch/distributed/_tensor/api.py' 2025-08-14T20:48:15.4317690Z adding 'torch/distributed/_tensor/placement_types.py' 2025-08-14T20:48:15.4318890Z adding 'torch/distributed/_tools/__init__.py' 2025-08-14T20:48:15.4319910Z adding 'torch/distributed/_tools/common_utils.py' 2025-08-14T20:48:15.4322330Z adding 'torch/distributed/_tools/fake_collectives.py' 2025-08-14T20:48:15.4327130Z adding 'torch/distributed/_tools/fsdp2_mem_tracker.py' 2025-08-14T20:48:15.4329700Z adding 'torch/distributed/_tools/ilp_utils.py' 2025-08-14T20:48:15.4338400Z adding 'torch/distributed/_tools/mem_tracker.py' 2025-08-14T20:48:15.4341190Z adding 'torch/distributed/_tools/memory_tracker.py' 2025-08-14T20:48:15.4343580Z adding 'torch/distributed/_tools/mod_tracker.py' 2025-08-14T20:48:15.4348080Z adding 'torch/distributed/_tools/runtime_estimator.py' 2025-08-14T20:48:15.4356700Z adding 'torch/distributed/_tools/sac_estimator.py' 2025-08-14T20:48:15.4359560Z adding 'torch/distributed/_tools/sac_ilp.py' 2025-08-14T20:48:15.4360680Z adding 'torch/distributed/algorithms/__init__.py' 2025-08-14T20:48:15.4364180Z adding 'torch/distributed/algorithms/join.py' 2025-08-14T20:48:15.4365180Z adding 'torch/distributed/algorithms/_checkpoint/__init__.py' 2025-08-14T20:48:15.4368410Z adding 'torch/distributed/algorithms/_checkpoint/checkpoint_wrapper.py' 2025-08-14T20:48:15.4369370Z adding 'torch/distributed/algorithms/_comm_hooks/__init__.py' 2025-08-14T20:48:15.4371640Z adding 'torch/distributed/algorithms/_comm_hooks/default_hooks.py' 2025-08-14T20:48:15.4372310Z adding 'torch/distributed/algorithms/_optimizer_overlap/__init__.py' 2025-08-14T20:48:15.4373730Z adding 'torch/distributed/algorithms/_optimizer_overlap/optimizer_overlap.py' 2025-08-14T20:48:15.4374810Z adding 'torch/distributed/algorithms/_quantization/__init__.py' 2025-08-14T20:48:15.4376420Z adding 'torch/distributed/algorithms/_quantization/quantization.py' 2025-08-14T20:48:15.4378050Z adding 'torch/distributed/algorithms/ddp_comm_hooks/__init__.py' 2025-08-14T20:48:15.4382170Z adding 'torch/distributed/algorithms/ddp_comm_hooks/ddp_zero_hook.py' 2025-08-14T20:48:15.4383250Z adding 'torch/distributed/algorithms/ddp_comm_hooks/debugging_hooks.py' 2025-08-14T20:48:15.4385370Z adding 'torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py' 2025-08-14T20:48:15.4386520Z adding 'torch/distributed/algorithms/ddp_comm_hooks/mixed_precision_hooks.py' 2025-08-14T20:48:15.4388700Z adding 'torch/distributed/algorithms/ddp_comm_hooks/optimizer_overlap_hooks.py' 2025-08-14T20:48:15.4390260Z adding 'torch/distributed/algorithms/ddp_comm_hooks/post_localSGD_hook.py' 2025-08-14T20:48:15.4398570Z adding 'torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py' 2025-08-14T20:48:15.4400750Z adding 'torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py' 2025-08-14T20:48:15.4401510Z adding 'torch/distributed/algorithms/model_averaging/__init__.py' 2025-08-14T20:48:15.4403600Z adding 'torch/distributed/algorithms/model_averaging/averagers.py' 2025-08-14T20:48:15.4405950Z adding 'torch/distributed/algorithms/model_averaging/hierarchical_model_averager.py' 2025-08-14T20:48:15.4406990Z adding 'torch/distributed/algorithms/model_averaging/utils.py' 2025-08-14T20:48:15.4408560Z adding 'torch/distributed/autograd/__init__.py' 2025-08-14T20:48:15.4410000Z adding 'torch/distributed/checkpoint/__init__.py' 2025-08-14T20:48:15.4410950Z adding 'torch/distributed/checkpoint/_async_executor.py' 2025-08-14T20:48:15.4413990Z adding 'torch/distributed/checkpoint/_async_process_executor.py' 2025-08-14T20:48:15.4415160Z adding 'torch/distributed/checkpoint/_async_thread_executor.py' 2025-08-14T20:48:15.4416540Z adding 'torch/distributed/checkpoint/_checkpointer.py' 2025-08-14T20:48:15.4422600Z adding 'torch/distributed/checkpoint/_consolidate_hf_safetensors.py' 2025-08-14T20:48:15.4424750Z adding 'torch/distributed/checkpoint/_dedup_save_plans.py' 2025-08-14T20:48:15.4425870Z adding 'torch/distributed/checkpoint/_dedup_tensors.py' 2025-08-14T20:48:15.4428370Z adding 'torch/distributed/checkpoint/_extension.py' 2025-08-14T20:48:15.4429990Z adding 'torch/distributed/checkpoint/_fsspec_filesystem.py' 2025-08-14T20:48:15.4431300Z adding 'torch/distributed/checkpoint/_hf_utils.py' 2025-08-14T20:48:15.4432540Z adding 'torch/distributed/checkpoint/_nested_dict.py' 2025-08-14T20:48:15.4436150Z adding 'torch/distributed/checkpoint/_pg_transport.py' 2025-08-14T20:48:15.4437490Z adding 'torch/distributed/checkpoint/_sharded_tensor_utils.py' 2025-08-14T20:48:15.4440730Z adding 'torch/distributed/checkpoint/_state_dict_stager.py' 2025-08-14T20:48:15.4441920Z adding 'torch/distributed/checkpoint/_storage_utils.py' 2025-08-14T20:48:15.4444090Z adding 'torch/distributed/checkpoint/_traverse.py' 2025-08-14T20:48:15.4444640Z adding 'torch/distributed/checkpoint/_version.py' 2025-08-14T20:48:15.4445690Z adding 'torch/distributed/checkpoint/api.py' 2025-08-14T20:48:15.4451370Z adding 'torch/distributed/checkpoint/default_planner.py' 2025-08-14T20:48:15.4458670Z adding 'torch/distributed/checkpoint/filesystem.py' 2025-08-14T20:48:15.4461250Z adding 'torch/distributed/checkpoint/format_utils.py' 2025-08-14T20:48:15.4464130Z adding 'torch/distributed/checkpoint/hf_storage.py' 2025-08-14T20:48:15.4465300Z adding 'torch/distributed/checkpoint/logger.py' 2025-08-14T20:48:15.4466170Z adding 'torch/distributed/checkpoint/logging_handlers.py' 2025-08-14T20:48:15.4468200Z adding 'torch/distributed/checkpoint/metadata.py' 2025-08-14T20:48:15.4471090Z adding 'torch/distributed/checkpoint/optimizer.py' 2025-08-14T20:48:15.4474700Z adding 'torch/distributed/checkpoint/planner.py' 2025-08-14T20:48:15.4478240Z adding 'torch/distributed/checkpoint/planner_helpers.py' 2025-08-14T20:48:15.4479100Z adding 'torch/distributed/checkpoint/resharding.py' 2025-08-14T20:48:15.4483700Z adding 'torch/distributed/checkpoint/staging.py' 2025-08-14T20:48:15.4494640Z adding 'torch/distributed/checkpoint/state_dict.py' 2025-08-14T20:48:15.4498060Z adding 'torch/distributed/checkpoint/state_dict_loader.py' 2025-08-14T20:48:15.4501830Z adding 'torch/distributed/checkpoint/state_dict_saver.py' 2025-08-14T20:48:15.4502580Z adding 'torch/distributed/checkpoint/stateful.py' 2025-08-14T20:48:15.4504960Z adding 'torch/distributed/checkpoint/storage.py' 2025-08-14T20:48:15.4508400Z adding 'torch/distributed/checkpoint/utils.py' 2025-08-14T20:48:15.4509680Z adding 'torch/distributed/checkpoint/_experimental/__init__.py' 2025-08-14T20:48:15.4512320Z adding 'torch/distributed/checkpoint/_experimental/barriers.py' 2025-08-14T20:48:15.4513730Z adding 'torch/distributed/checkpoint/_experimental/builder.py' 2025-08-14T20:48:15.4516810Z adding 'torch/distributed/checkpoint/_experimental/checkpoint_process.py' 2025-08-14T20:48:15.4519070Z adding 'torch/distributed/checkpoint/_experimental/checkpoint_reader.py' 2025-08-14T20:48:15.4520370Z adding 'torch/distributed/checkpoint/_experimental/checkpoint_writer.py' 2025-08-14T20:48:15.4522920Z adding 'torch/distributed/checkpoint/_experimental/checkpointer.py' 2025-08-14T20:48:15.4523790Z adding 'torch/distributed/checkpoint/_experimental/config.py' 2025-08-14T20:48:15.4526230Z adding 'torch/distributed/checkpoint/_experimental/staging.py' 2025-08-14T20:48:15.4526920Z adding 'torch/distributed/checkpoint/_experimental/types.py' 2025-08-14T20:48:15.4527880Z adding 'torch/distributed/checkpoint/_experimental/utils.py' 2025-08-14T20:48:15.4530000Z adding 'torch/distributed/elastic/__init__.py' 2025-08-14T20:48:15.4530610Z adding 'torch/distributed/elastic/control_plane.py' 2025-08-14T20:48:15.4531810Z adding 'torch/distributed/elastic/agent/__init__.py' 2025-08-14T20:48:15.4533220Z adding 'torch/distributed/elastic/agent/server/__init__.py' 2025-08-14T20:48:15.4542010Z adding 'torch/distributed/elastic/agent/server/api.py' 2025-08-14T20:48:15.4543060Z adding 'torch/distributed/elastic/agent/server/health_check_server.py' 2025-08-14T20:48:15.4546800Z adding 'torch/distributed/elastic/agent/server/local_elastic_agent.py' 2025-08-14T20:48:15.4548880Z adding 'torch/distributed/elastic/events/__init__.py' 2025-08-14T20:48:15.4549840Z adding 'torch/distributed/elastic/events/api.py' 2025-08-14T20:48:15.4550780Z adding 'torch/distributed/elastic/events/handlers.py' 2025-08-14T20:48:15.4552990Z adding 'torch/distributed/elastic/metrics/__init__.py' 2025-08-14T20:48:15.4554410Z adding 'torch/distributed/elastic/metrics/api.py' 2025-08-14T20:48:15.4557160Z adding 'torch/distributed/elastic/multiprocessing/__init__.py' 2025-08-14T20:48:15.4564290Z adding 'torch/distributed/elastic/multiprocessing/api.py' 2025-08-14T20:48:15.4565560Z adding 'torch/distributed/elastic/multiprocessing/redirects.py' 2025-08-14T20:48:15.4567700Z adding 'torch/distributed/elastic/multiprocessing/tail_log.py' 2025-08-14T20:48:15.4571580Z adding 'torch/distributed/elastic/multiprocessing/errors/__init__.py' 2025-08-14T20:48:15.4573290Z adding 'torch/distributed/elastic/multiprocessing/errors/error_handler.py' 2025-08-14T20:48:15.4574190Z adding 'torch/distributed/elastic/multiprocessing/errors/handlers.py' 2025-08-14T20:48:15.4575340Z adding 'torch/distributed/elastic/multiprocessing/subprocess_handler/__init__.py' 2025-08-14T20:48:15.4576280Z adding 'torch/distributed/elastic/multiprocessing/subprocess_handler/handlers.py' 2025-08-14T20:48:15.4577570Z adding 'torch/distributed/elastic/multiprocessing/subprocess_handler/subprocess_handler.py' 2025-08-14T20:48:15.4579990Z adding 'torch/distributed/elastic/rendezvous/__init__.py' 2025-08-14T20:48:15.4580770Z adding 'torch/distributed/elastic/rendezvous/_etcd_stub.py' 2025-08-14T20:48:15.4583980Z adding 'torch/distributed/elastic/rendezvous/api.py' 2025-08-14T20:48:15.4586740Z adding 'torch/distributed/elastic/rendezvous/c10d_rendezvous_backend.py' 2025-08-14T20:48:15.4595840Z adding 'torch/distributed/elastic/rendezvous/dynamic_rendezvous.py' 2025-08-14T20:48:15.4604670Z adding 'torch/distributed/elastic/rendezvous/etcd_rendezvous.py' 2025-08-14T20:48:15.4606860Z adding 'torch/distributed/elastic/rendezvous/etcd_rendezvous_backend.py' 2025-08-14T20:48:15.4609240Z adding 'torch/distributed/elastic/rendezvous/etcd_server.py' 2025-08-14T20:48:15.4611160Z adding 'torch/distributed/elastic/rendezvous/etcd_store.py' 2025-08-14T20:48:15.4612460Z adding 'torch/distributed/elastic/rendezvous/registry.py' 2025-08-14T20:48:15.4613920Z adding 'torch/distributed/elastic/rendezvous/static_tcp_rendezvous.py' 2025-08-14T20:48:15.4616470Z adding 'torch/distributed/elastic/rendezvous/utils.py' 2025-08-14T20:48:15.4617590Z adding 'torch/distributed/elastic/timer/__init__.py' 2025-08-14T20:48:15.4620490Z adding 'torch/distributed/elastic/timer/api.py' 2025-08-14T20:48:15.4621200Z adding 'torch/distributed/elastic/timer/debug_info_logging.py' 2025-08-14T20:48:15.4625240Z adding 'torch/distributed/elastic/timer/file_based_local_timer.py' 2025-08-14T20:48:15.4626510Z adding 'torch/distributed/elastic/timer/local_timer.py' 2025-08-14T20:48:15.4627670Z adding 'torch/distributed/elastic/utils/__init__.py' 2025-08-14T20:48:15.4628750Z adding 'torch/distributed/elastic/utils/api.py' 2025-08-14T20:48:15.4630910Z adding 'torch/distributed/elastic/utils/distributed.py' 2025-08-14T20:48:15.4631620Z adding 'torch/distributed/elastic/utils/log_level.py' 2025-08-14T20:48:15.4632790Z adding 'torch/distributed/elastic/utils/logging.py' 2025-08-14T20:48:15.4635190Z adding 'torch/distributed/elastic/utils/store.py' 2025-08-14T20:48:15.4636280Z adding 'torch/distributed/elastic/utils/data/__init__.py' 2025-08-14T20:48:15.4637320Z adding 'torch/distributed/elastic/utils/data/cycling_iterator.py' 2025-08-14T20:48:15.4638700Z adding 'torch/distributed/elastic/utils/data/elastic_distributed_sampler.py' 2025-08-14T20:48:15.4640060Z adding 'torch/distributed/fsdp/__init__.py' 2025-08-14T20:48:15.4645620Z adding 'torch/distributed/fsdp/_common_utils.py' 2025-08-14T20:48:15.4647380Z adding 'torch/distributed/fsdp/_debug_utils.py' 2025-08-14T20:48:15.4648540Z adding 'torch/distributed/fsdp/_dynamo_utils.py' 2025-08-14T20:48:15.4652060Z adding 'torch/distributed/fsdp/_exec_order_utils.py' 2025-08-14T20:48:15.4678530Z adding 'torch/distributed/fsdp/_flat_param.py' 2025-08-14T20:48:15.4680720Z adding 'torch/distributed/fsdp/_fsdp_extensions.py' 2025-08-14T20:48:15.4690920Z adding 'torch/distributed/fsdp/_init_utils.py' 2025-08-14T20:48:15.4691870Z adding 'torch/distributed/fsdp/_limiter_utils.py' 2025-08-14T20:48:15.4711770Z adding 'torch/distributed/fsdp/_optim_utils.py' 2025-08-14T20:48:15.4726670Z adding 'torch/distributed/fsdp/_runtime_utils.py' 2025-08-14T20:48:15.4728460Z adding 'torch/distributed/fsdp/_shard_utils.py' 2025-08-14T20:48:15.4735140Z adding 'torch/distributed/fsdp/_state_dict_utils.py' 2025-08-14T20:48:15.4737910Z adding 'torch/distributed/fsdp/_trace_utils.py' 2025-08-14T20:48:15.4739820Z adding 'torch/distributed/fsdp/_traversal_utils.py' 2025-08-14T20:48:15.4742770Z adding 'torch/distributed/fsdp/_unshard_param_utils.py' 2025-08-14T20:48:15.4745850Z adding 'torch/distributed/fsdp/_wrap_utils.py' 2025-08-14T20:48:15.4750160Z adding 'torch/distributed/fsdp/api.py' 2025-08-14T20:48:15.4770580Z adding 'torch/distributed/fsdp/fully_sharded_data_parallel.py' 2025-08-14T20:48:15.4774520Z adding 'torch/distributed/fsdp/sharded_grad_scaler.py' 2025-08-14T20:48:15.4779680Z adding 'torch/distributed/fsdp/wrap.py' 2025-08-14T20:48:15.4780850Z adding 'torch/distributed/fsdp/_fully_shard/__init__.py' 2025-08-14T20:48:15.4782980Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_api.py' 2025-08-14T20:48:15.4788850Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py' 2025-08-14T20:48:15.4790990Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_common.py' 2025-08-14T20:48:15.4793330Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_init.py' 2025-08-14T20:48:15.4801960Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_param.py' 2025-08-14T20:48:15.4809890Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py' 2025-08-14T20:48:15.4813730Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_state.py' 2025-08-14T20:48:15.4820580Z adding 'torch/distributed/fsdp/_fully_shard/_fully_shard.py' 2025-08-14T20:48:15.4821640Z adding 'torch/distributed/launcher/__init__.py' 2025-08-14T20:48:15.4824880Z adding 'torch/distributed/launcher/api.py' 2025-08-14T20:48:15.4825770Z adding 'torch/distributed/nn/__init__.py' 2025-08-14T20:48:15.4829070Z adding 'torch/distributed/nn/functional.py' 2025-08-14T20:48:15.4829970Z adding 'torch/distributed/nn/api/__init__.py' 2025-08-14T20:48:15.4835790Z adding 'torch/distributed/nn/api/remote_module.py' 2025-08-14T20:48:15.4836610Z adding 'torch/distributed/nn/jit/__init__.py' 2025-08-14T20:48:15.4838630Z adding 'torch/distributed/nn/jit/instantiator.py' 2025-08-14T20:48:15.4839380Z adding 'torch/distributed/nn/jit/templates/__init__.py' 2025-08-14T20:48:15.4840900Z adding 'torch/distributed/nn/jit/templates/remote_module_template.py' 2025-08-14T20:48:15.4842360Z adding 'torch/distributed/optim/__init__.py' 2025-08-14T20:48:15.4843310Z adding 'torch/distributed/optim/_deprecation_warning.py' 2025-08-14T20:48:15.4845420Z adding 'torch/distributed/optim/apply_optimizer_in_backward.py' 2025-08-14T20:48:15.4846530Z adding 'torch/distributed/optim/functional_adadelta.py' 2025-08-14T20:48:15.4847970Z adding 'torch/distributed/optim/functional_adagrad.py' 2025-08-14T20:48:15.4849980Z adding 'torch/distributed/optim/functional_adam.py' 2025-08-14T20:48:15.4851280Z adding 'torch/distributed/optim/functional_adamax.py' 2025-08-14T20:48:15.4853390Z adding 'torch/distributed/optim/functional_adamw.py' 2025-08-14T20:48:15.4854560Z adding 'torch/distributed/optim/functional_rmsprop.py' 2025-08-14T20:48:15.4855980Z adding 'torch/distributed/optim/functional_rprop.py' 2025-08-14T20:48:15.4857980Z adding 'torch/distributed/optim/functional_sgd.py' 2025-08-14T20:48:15.4861040Z adding 'torch/distributed/optim/named_optimizer.py' 2025-08-14T20:48:15.4863680Z adding 'torch/distributed/optim/optimizer.py' 2025-08-14T20:48:15.4865000Z adding 'torch/distributed/optim/post_localSGD_optimizer.py' 2025-08-14T20:48:15.4866210Z adding 'torch/distributed/optim/utils.py' 2025-08-14T20:48:15.4881730Z adding 'torch/distributed/optim/zero_redundancy_optimizer.py' 2025-08-14T20:48:15.4883220Z adding 'torch/distributed/optim/zero_redundancy_optimizer.pyi' 2025-08-14T20:48:15.4895350Z adding 'torch/distributed/pipelining/_IR.py' 2025-08-14T20:48:15.4896410Z adding 'torch/distributed/pipelining/__init__.py' 2025-08-14T20:48:15.4900570Z adding 'torch/distributed/pipelining/_backward.py' 2025-08-14T20:48:15.4901330Z adding 'torch/distributed/pipelining/_debug.py' 2025-08-14T20:48:15.4903780Z adding 'torch/distributed/pipelining/_schedule_visualizer.py' 2025-08-14T20:48:15.4904770Z adding 'torch/distributed/pipelining/_unflatten.py' 2025-08-14T20:48:15.4906820Z adding 'torch/distributed/pipelining/_utils.py' 2025-08-14T20:48:15.4910730Z adding 'torch/distributed/pipelining/microbatch.py' 2025-08-14T20:48:15.4935290Z adding 'torch/distributed/pipelining/schedules.py' 2025-08-14T20:48:15.4950010Z adding 'torch/distributed/pipelining/stage.py' 2025-08-14T20:48:15.4953290Z adding 'torch/distributed/rpc/__init__.py' 2025-08-14T20:48:15.4954410Z adding 'torch/distributed/rpc/_utils.py' 2025-08-14T20:48:15.4961720Z adding 'torch/distributed/rpc/api.py' 2025-08-14T20:48:15.4965580Z adding 'torch/distributed/rpc/backend_registry.py' 2025-08-14T20:48:15.4966370Z adding 'torch/distributed/rpc/constants.py' 2025-08-14T20:48:15.4968480Z adding 'torch/distributed/rpc/functions.py' 2025-08-14T20:48:15.4971120Z adding 'torch/distributed/rpc/internal.py' 2025-08-14T20:48:15.4973210Z adding 'torch/distributed/rpc/options.py' 2025-08-14T20:48:15.4974280Z adding 'torch/distributed/rpc/rref_proxy.py' 2025-08-14T20:48:15.4976720Z adding 'torch/distributed/rpc/server_process_global_profiler.py' 2025-08-14T20:48:15.4977670Z adding 'torch/distributed/rpc/_testing/__init__.py' 2025-08-14T20:48:15.4978910Z adding 'torch/distributed/rpc/_testing/faulty_agent_backend_registry.py' 2025-08-14T20:48:15.4980430Z adding 'torch/distributed/tensor/__init__.py' 2025-08-14T20:48:15.4991530Z adding 'torch/distributed/tensor/_api.py' 2025-08-14T20:48:15.4995080Z adding 'torch/distributed/tensor/_collective_utils.py' 2025-08-14T20:48:15.4999920Z adding 'torch/distributed/tensor/_dispatch.py' 2025-08-14T20:48:15.5002710Z adding 'torch/distributed/tensor/_dtensor_spec.py' 2025-08-14T20:48:15.5008310Z adding 'torch/distributed/tensor/_op_schema.py' 2025-08-14T20:48:15.5012390Z adding 'torch/distributed/tensor/_random.py' 2025-08-14T20:48:15.5017210Z adding 'torch/distributed/tensor/_redistribute.py' 2025-08-14T20:48:15.5022700Z adding 'torch/distributed/tensor/_sharding_prop.py' 2025-08-14T20:48:15.5025630Z adding 'torch/distributed/tensor/_shards_wrapper.py' 2025-08-14T20:48:15.5027790Z adding 'torch/distributed/tensor/_tp_conv.py' 2025-08-14T20:48:15.5031900Z adding 'torch/distributed/tensor/_utils.py' 2025-08-14T20:48:15.5032730Z adding 'torch/distributed/tensor/device_mesh.py' 2025-08-14T20:48:15.5038940Z adding 'torch/distributed/tensor/placement_types.py' 2025-08-14T20:48:15.5040170Z adding 'torch/distributed/tensor/_ops/__init__.py' 2025-08-14T20:48:15.5043490Z adding 'torch/distributed/tensor/_ops/_common_rules.py' 2025-08-14T20:48:15.5049840Z adding 'torch/distributed/tensor/_ops/_conv_ops.py' 2025-08-14T20:48:15.5050170Z adding 'torch/distributed/tensor/_ops/_einsum_strategy.py' 2025-08-14T20:48:15.5050450Z adding 'torch/distributed/tensor/_ops/_embedding_ops.py' 2025-08-14T20:48:15.5057060Z adding 'torch/distributed/tensor/_ops/_math_ops.py' 2025-08-14T20:48:15.5062900Z adding 'torch/distributed/tensor/_ops/_matrix_ops.py' 2025-08-14T20:48:15.5067770Z adding 'torch/distributed/tensor/_ops/_pointwise_ops.py' 2025-08-14T20:48:15.5068590Z adding 'torch/distributed/tensor/_ops/_random_ops.py' 2025-08-14T20:48:15.5078200Z adding 'torch/distributed/tensor/_ops/_tensor_ops.py' 2025-08-14T20:48:15.5084940Z adding 'torch/distributed/tensor/_ops/_view_ops.py' 2025-08-14T20:48:15.5088580Z adding 'torch/distributed/tensor/_ops/utils.py' 2025-08-14T20:48:15.5089680Z adding 'torch/distributed/tensor/debug/__init__.py' 2025-08-14T20:48:15.5094930Z adding 'torch/distributed/tensor/debug/_comm_mode.py' 2025-08-14T20:48:15.5096190Z adding 'torch/distributed/tensor/debug/_op_coverage.py' 2025-08-14T20:48:15.5098620Z adding 'torch/distributed/tensor/debug/_visualize_sharding.py' 2025-08-14T20:48:15.5099700Z adding 'torch/distributed/tensor/experimental/__init__.py' 2025-08-14T20:48:15.5111340Z adding 'torch/distributed/tensor/experimental/_attention.py' 2025-08-14T20:48:15.5114320Z adding 'torch/distributed/tensor/experimental/_func_map.py' 2025-08-14T20:48:15.5116470Z adding 'torch/distributed/tensor/experimental/_register_sharding.py' 2025-08-14T20:48:15.5120540Z adding 'torch/distributed/tensor/experimental/_tp_transform.py' 2025-08-14T20:48:15.5121620Z adding 'torch/distributed/tensor/parallel/__init__.py' 2025-08-14T20:48:15.5122620Z adding 'torch/distributed/tensor/parallel/_data_parallel_utils.py' 2025-08-14T20:48:15.5124860Z adding 'torch/distributed/tensor/parallel/api.py' 2025-08-14T20:48:15.5126030Z adding 'torch/distributed/tensor/parallel/ddp.py' 2025-08-14T20:48:15.5129510Z adding 'torch/distributed/tensor/parallel/fsdp.py' 2025-08-14T20:48:15.5130630Z adding 'torch/distributed/tensor/parallel/input_reshard.py' 2025-08-14T20:48:15.5134620Z adding 'torch/distributed/tensor/parallel/loss.py' 2025-08-14T20:48:15.5140260Z adding 'torch/distributed/tensor/parallel/style.py' 2025-08-14T20:48:15.5142770Z adding 'torch/distributions/__init__.py' 2025-08-14T20:48:15.5144120Z adding 'torch/distributions/bernoulli.py' 2025-08-14T20:48:15.5145490Z adding 'torch/distributions/beta.py' 2025-08-14T20:48:15.5147700Z adding 'torch/distributions/binomial.py' 2025-08-14T20:48:15.5149050Z adding 'torch/distributions/categorical.py' 2025-08-14T20:48:15.5150410Z adding 'torch/distributions/cauchy.py' 2025-08-14T20:48:15.5151460Z adding 'torch/distributions/chi2.py' 2025-08-14T20:48:15.5153970Z adding 'torch/distributions/constraint_registry.py' 2025-08-14T20:48:15.5157850Z adding 'torch/distributions/constraints.py' 2025-08-14T20:48:15.5160410Z adding 'torch/distributions/continuous_bernoulli.py' 2025-08-14T20:48:15.5161670Z adding 'torch/distributions/dirichlet.py' 2025-08-14T20:48:15.5164780Z adding 'torch/distributions/distribution.py' 2025-08-14T20:48:15.5165840Z adding 'torch/distributions/exp_family.py' 2025-08-14T20:48:15.5167190Z adding 'torch/distributions/exponential.py' 2025-08-14T20:48:15.5168580Z adding 'torch/distributions/fishersnedecor.py' 2025-08-14T20:48:15.5170010Z adding 'torch/distributions/gamma.py' 2025-08-14T20:48:15.5171820Z adding 'torch/distributions/generalized_pareto.py' 2025-08-14T20:48:15.5173350Z adding 'torch/distributions/geometric.py' 2025-08-14T20:48:15.5174610Z adding 'torch/distributions/gumbel.py' 2025-08-14T20:48:15.5175840Z adding 'torch/distributions/half_cauchy.py' 2025-08-14T20:48:15.5176930Z adding 'torch/distributions/half_normal.py' 2025-08-14T20:48:15.5178490Z adding 'torch/distributions/independent.py' 2025-08-14T20:48:15.5179610Z adding 'torch/distributions/inverse_gamma.py' 2025-08-14T20:48:15.5185550Z adding 'torch/distributions/kl.py' 2025-08-14T20:48:15.5186670Z adding 'torch/distributions/kumaraswamy.py' 2025-08-14T20:48:15.5188070Z adding 'torch/distributions/laplace.py' 2025-08-14T20:48:15.5190270Z adding 'torch/distributions/lkj_cholesky.py' 2025-08-14T20:48:15.5191090Z adding 'torch/distributions/log_normal.py' 2025-08-14T20:48:15.5192230Z adding 'torch/distributions/logistic_normal.py' 2025-08-14T20:48:15.5194960Z adding 'torch/distributions/lowrank_multivariate_normal.py' 2025-08-14T20:48:15.5197100Z adding 'torch/distributions/mixture_same_family.py' 2025-08-14T20:48:15.5198480Z adding 'torch/distributions/multinomial.py' 2025-08-14T20:48:15.5201240Z adding 'torch/distributions/multivariate_normal.py' 2025-08-14T20:48:15.5202670Z adding 'torch/distributions/negative_binomial.py' 2025-08-14T20:48:15.5204040Z adding 'torch/distributions/normal.py' 2025-08-14T20:48:15.5205560Z adding 'torch/distributions/one_hot_categorical.py' 2025-08-14T20:48:15.5206710Z adding 'torch/distributions/pareto.py' 2025-08-14T20:48:15.5207930Z adding 'torch/distributions/poisson.py' 2025-08-14T20:48:15.5209670Z adding 'torch/distributions/relaxed_bernoulli.py' 2025-08-14T20:48:15.5211180Z adding 'torch/distributions/relaxed_categorical.py' 2025-08-14T20:48:15.5212600Z adding 'torch/distributions/studentT.py' 2025-08-14T20:48:15.5215080Z adding 'torch/distributions/transformed_distribution.py' 2025-08-14T20:48:15.5222590Z adding 'torch/distributions/transforms.py' 2025-08-14T20:48:15.5223760Z adding 'torch/distributions/uniform.py' 2025-08-14T20:48:15.5226310Z adding 'torch/distributions/utils.py' 2025-08-14T20:48:15.5228080Z adding 'torch/distributions/von_mises.py' 2025-08-14T20:48:15.5229130Z adding 'torch/distributions/weibull.py' 2025-08-14T20:48:15.5232310Z adding 'torch/distributions/wishart.py' 2025-08-14T20:48:15.5237580Z adding 'torch/export/__init__.py' 2025-08-14T20:48:15.5241770Z adding 'torch/export/_draft_export.py' 2025-08-14T20:48:15.5242760Z adding 'torch/export/_remove_auto_functionalized_pass.py' 2025-08-14T20:48:15.5244860Z adding 'torch/export/_remove_effect_tokens_pass.py' 2025-08-14T20:48:15.5245790Z adding 'torch/export/_safeguard.py' 2025-08-14T20:48:15.5249810Z adding 'torch/export/_swap.py' 2025-08-14T20:48:15.5269570Z adding 'torch/export/_trace.py' 2025-08-14T20:48:15.5270930Z adding 'torch/export/_tree_utils.py' 2025-08-14T20:48:15.5275150Z adding 'torch/export/_unlift.py' 2025-08-14T20:48:15.5275790Z adding 'torch/export/_wrapper_utils.py' 2025-08-14T20:48:15.5276580Z adding 'torch/export/custom_obj.py' 2025-08-14T20:48:15.5277490Z adding 'torch/export/custom_ops.py' 2025-08-14T20:48:15.5279460Z adding 'torch/export/decomp_utils.py' 2025-08-14T20:48:15.5291120Z adding 'torch/export/dynamic_shapes.py' 2025-08-14T20:48:15.5305550Z adding 'torch/export/exported_program.py' 2025-08-14T20:48:15.5310410Z adding 'torch/export/graph_signature.py' 2025-08-14T20:48:15.5326110Z adding 'torch/export/unflatten.py' 2025-08-14T20:48:15.5330620Z adding 'torch/export/experimental/__init__.py' 2025-08-14T20:48:15.5332780Z adding 'torch/export/experimental/_utils.py' 2025-08-14T20:48:15.5333950Z adding 'torch/export/passes/__init__.py' 2025-08-14T20:48:15.5335020Z adding 'torch/export/pt2_archive/__init__.py' 2025-08-14T20:48:15.5340310Z adding 'torch/export/pt2_archive/_package.py' 2025-08-14T20:48:15.5341530Z adding 'torch/export/pt2_archive/_package_weights.py' 2025-08-14T20:48:15.5342490Z adding 'torch/export/pt2_archive/constants.py' 2025-08-14T20:48:15.5349990Z adding 'torch/fft/__init__.py' 2025-08-14T20:48:15.5351080Z adding 'torch/func/__init__.py' 2025-08-14T20:48:15.5354740Z adding 'torch/futures/__init__.py' 2025-08-14T20:48:15.5356870Z adding 'torch/fx/__init__.py' 2025-08-14T20:48:15.5357460Z adding 'torch/fx/_compatibility.py' 2025-08-14T20:48:15.5362160Z adding 'torch/fx/_graph_pickler.py' 2025-08-14T20:48:15.5363950Z adding 'torch/fx/_lazy_graph_module.py' 2025-08-14T20:48:15.5365190Z adding 'torch/fx/_pytree.py' 2025-08-14T20:48:15.5376790Z adding 'torch/fx/_symbolic_trace.py' 2025-08-14T20:48:15.5377900Z adding 'torch/fx/_utils.py' 2025-08-14T20:48:15.5380030Z adding 'torch/fx/annotate.py' 2025-08-14T20:48:15.5380610Z adding 'torch/fx/config.py' 2025-08-14T20:48:15.5398750Z adding 'torch/fx/graph.py' 2025-08-14T20:48:15.5408410Z adding 'torch/fx/graph_module.py' 2025-08-14T20:48:15.5409750Z adding 'torch/fx/immutable_collections.py' 2025-08-14T20:48:15.5414440Z adding 'torch/fx/interpreter.py' 2025-08-14T20:48:15.5422810Z adding 'torch/fx/node.py' 2025-08-14T20:48:15.5427900Z adding 'torch/fx/operator_schemas.py' 2025-08-14T20:48:15.5434470Z adding 'torch/fx/proxy.py' 2025-08-14T20:48:15.5438490Z adding 'torch/fx/subgraph_rewriter.py' 2025-08-14T20:48:15.5439550Z adding 'torch/fx/tensor_type.py' 2025-08-14T20:48:15.5442410Z adding 'torch/fx/traceback.py' 2025-08-14T20:48:15.5443470Z adding 'torch/fx/experimental/__init__.py' 2025-08-14T20:48:15.5444500Z adding 'torch/fx/experimental/_backward_state.py' 2025-08-14T20:48:15.5446510Z adding 'torch/fx/experimental/_config.py' 2025-08-14T20:48:15.5447230Z adding 'torch/fx/experimental/_constant_symnode.py' 2025-08-14T20:48:15.5448800Z adding 'torch/fx/experimental/_dynamism.py' 2025-08-14T20:48:15.5458670Z adding 'torch/fx/experimental/accelerator_partitioner.py' 2025-08-14T20:48:15.5462070Z adding 'torch/fx/experimental/const_fold.py' 2025-08-14T20:48:15.5462880Z adding 'torch/fx/experimental/debug.py' 2025-08-14T20:48:15.5470100Z adding 'torch/fx/experimental/graph_gradual_typechecker.py' 2025-08-14T20:48:15.5472420Z adding 'torch/fx/experimental/merge_matmul.py' 2025-08-14T20:48:15.5475170Z adding 'torch/fx/experimental/meta_tracer.py' 2025-08-14T20:48:15.5476690Z adding 'torch/fx/experimental/normalize.py' 2025-08-14T20:48:15.5481140Z adding 'torch/fx/experimental/optimization.py' 2025-08-14T20:48:15.5484240Z adding 'torch/fx/experimental/partitioner_utils.py' 2025-08-14T20:48:15.5505890Z adding 'torch/fx/experimental/proxy_tensor.py' 2025-08-14T20:48:15.5511050Z adding 'torch/fx/experimental/recording.py' 2025-08-14T20:48:15.5511800Z adding 'torch/fx/experimental/refinement_types.py' 2025-08-14T20:48:15.5513860Z adding 'torch/fx/experimental/rewriter.py' 2025-08-14T20:48:15.5515270Z adding 'torch/fx/experimental/schema_type_annotation.py' 2025-08-14T20:48:15.5527980Z adding 'torch/fx/experimental/sym_node.py' 2025-08-14T20:48:15.5609350Z adding 'torch/fx/experimental/symbolic_shapes.py' 2025-08-14T20:48:15.5612290Z adding 'torch/fx/experimental/unify_refinements.py' 2025-08-14T20:48:15.5619530Z adding 'torch/fx/experimental/validator.py' 2025-08-14T20:48:15.5620730Z adding 'torch/fx/experimental/migrate_gradual_types/__init__.py' 2025-08-14T20:48:15.5624050Z adding 'torch/fx/experimental/migrate_gradual_types/constraint.py' 2025-08-14T20:48:15.5632780Z adding 'torch/fx/experimental/migrate_gradual_types/constraint_generator.py' 2025-08-14T20:48:15.5641050Z adding 'torch/fx/experimental/migrate_gradual_types/constraint_transformation.py' 2025-08-14T20:48:15.5641930Z adding 'torch/fx/experimental/migrate_gradual_types/operation.py' 2025-08-14T20:48:15.5645320Z adding 'torch/fx/experimental/migrate_gradual_types/transform_to_z3.py' 2025-08-14T20:48:15.5646160Z adding 'torch/fx/experimental/migrate_gradual_types/util.py' 2025-08-14T20:48:15.5647110Z adding 'torch/fx/experimental/migrate_gradual_types/z3_types.py' 2025-08-14T20:48:15.5648250Z adding 'torch/fx/experimental/unification/__init__.py' 2025-08-14T20:48:15.5649550Z adding 'torch/fx/experimental/unification/core.py' 2025-08-14T20:48:15.5650430Z adding 'torch/fx/experimental/unification/dispatch.py' 2025-08-14T20:48:15.5651830Z adding 'torch/fx/experimental/unification/match.py' 2025-08-14T20:48:15.5653060Z adding 'torch/fx/experimental/unification/more.py' 2025-08-14T20:48:15.5655960Z adding 'torch/fx/experimental/unification/unification_tools.py' 2025-08-14T20:48:15.5657050Z adding 'torch/fx/experimental/unification/utils.py' 2025-08-14T20:48:15.5658200Z adding 'torch/fx/experimental/unification/variable.py' 2025-08-14T20:48:15.5659400Z adding 'torch/fx/experimental/unification/multipledispatch/__init__.py' 2025-08-14T20:48:15.5660890Z adding 'torch/fx/experimental/unification/multipledispatch/conflict.py' 2025-08-14T20:48:15.5662210Z adding 'torch/fx/experimental/unification/multipledispatch/core.py' 2025-08-14T20:48:15.5665860Z adding 'torch/fx/experimental/unification/multipledispatch/dispatcher.py' 2025-08-14T20:48:15.5667040Z adding 'torch/fx/experimental/unification/multipledispatch/utils.py' 2025-08-14T20:48:15.5668400Z adding 'torch/fx/experimental/unification/multipledispatch/variadic.py' 2025-08-14T20:48:15.5669540Z adding 'torch/fx/passes/__init__.py' 2025-08-14T20:48:15.5673450Z adding 'torch/fx/passes/_tensorify_python_scalars.py' 2025-08-14T20:48:15.5674350Z adding 'torch/fx/passes/annotate_getitem_nodes.py' 2025-08-14T20:48:15.5675890Z adding 'torch/fx/passes/fake_tensor_prop.py' 2025-08-14T20:48:15.5679830Z adding 'torch/fx/passes/graph_drawer.py' 2025-08-14T20:48:15.5681080Z adding 'torch/fx/passes/graph_manipulation.py' 2025-08-14T20:48:15.5683280Z adding 'torch/fx/passes/graph_transform_observer.py' 2025-08-14T20:48:15.5690200Z adding 'torch/fx/passes/net_min_base.py' 2025-08-14T20:48:15.5692420Z adding 'torch/fx/passes/operator_support.py' 2025-08-14T20:48:15.5693510Z adding 'torch/fx/passes/param_fetch.py' 2025-08-14T20:48:15.5695770Z adding 'torch/fx/passes/pass_manager.py' 2025-08-14T20:48:15.5703640Z adding 'torch/fx/passes/reinplace.py' 2025-08-14T20:48:15.5709550Z adding 'torch/fx/passes/runtime_assert.py' 2025-08-14T20:48:15.5712320Z adding 'torch/fx/passes/shape_prop.py' 2025-08-14T20:48:15.5718110Z adding 'torch/fx/passes/split_module.py' 2025-08-14T20:48:15.5721270Z adding 'torch/fx/passes/split_utils.py' 2025-08-14T20:48:15.5728370Z adding 'torch/fx/passes/splitter_base.py' 2025-08-14T20:48:15.5731450Z adding 'torch/fx/passes/tools_common.py' 2025-08-14T20:48:15.5732400Z adding 'torch/fx/passes/backends/__init__.py' 2025-08-14T20:48:15.5733570Z adding 'torch/fx/passes/backends/cudagraphs.py' 2025-08-14T20:48:15.5734530Z adding 'torch/fx/passes/dialect/__init__.py' 2025-08-14T20:48:15.5735510Z adding 'torch/fx/passes/dialect/common/__init__.py' 2025-08-14T20:48:15.5737510Z adding 'torch/fx/passes/dialect/common/cse_pass.py' 2025-08-14T20:48:15.5738220Z adding 'torch/fx/passes/infra/__init__.py' 2025-08-14T20:48:15.5742280Z adding 'torch/fx/passes/infra/partitioner.py' 2025-08-14T20:48:15.5743160Z adding 'torch/fx/passes/infra/pass_base.py' 2025-08-14T20:48:15.5746120Z adding 'torch/fx/passes/infra/pass_manager.py' 2025-08-14T20:48:15.5746820Z adding 'torch/fx/passes/tests/__init__.py' 2025-08-14T20:48:15.5747830Z adding 'torch/fx/passes/tests/test_pass_manager.py' 2025-08-14T20:48:15.5748840Z adding 'torch/fx/passes/utils/__init__.py' 2025-08-14T20:48:15.5750140Z adding 'torch/fx/passes/utils/common.py' 2025-08-14T20:48:15.5753030Z adding 'torch/fx/passes/utils/fuser_utils.py' 2025-08-14T20:48:15.5756990Z adding 'torch/fx/passes/utils/matcher_utils.py' 2025-08-14T20:48:15.5758250Z adding 'torch/fx/passes/utils/matcher_with_name_node_map_utils.py' 2025-08-14T20:48:15.5760310Z adding 'torch/fx/passes/utils/source_matcher_utils.py' 2025-08-14T20:48:15.5761640Z adding 'torch/include/clog.h' 2025-08-14T20:48:15.5769200Z adding 'torch/include/cpuinfo.h' 2025-08-14T20:48:15.5770090Z adding 'torch/include/experiments-config.h' 2025-08-14T20:48:15.5770910Z adding 'torch/include/fp16.h' 2025-08-14T20:48:15.5773710Z adding 'torch/include/fxdiv.h' 2025-08-14T20:48:15.5774380Z adding 'torch/include/libshm.h' 2025-08-14T20:48:15.5778670Z adding 'torch/include/nnpack.h' 2025-08-14T20:48:15.5782800Z adding 'torch/include/omp.h' 2025-08-14T20:48:15.5788420Z adding 'torch/include/psimd.h' 2025-08-14T20:48:15.5796730Z adding 'torch/include/pthreadpool.h' 2025-08-14T20:48:15.5798130Z adding 'torch/include/qnnpack_func.h' 2025-08-14T20:48:15.5813710Z adding 'torch/include/sleef.h' 2025-08-14T20:48:15.5836580Z adding 'torch/include/xnnpack.h' 2025-08-14T20:48:15.5840090Z adding 'torch/include/ATen/ATen.h' 2025-08-14T20:48:15.5841470Z adding 'torch/include/ATen/AccumulateType.h' 2025-08-14T20:48:15.5842310Z adding 'torch/include/ATen/ArrayRef.h' 2025-08-14T20:48:15.5843050Z adding 'torch/include/ATen/Backend.h' 2025-08-14T20:48:15.5843800Z adding 'torch/include/ATen/Backtrace.h' 2025-08-14T20:48:15.5844700Z adding 'torch/include/ATen/BlasBackend.h' 2025-08-14T20:48:15.5847450Z adding 'torch/include/ATen/CPUApplyUtils.h' 2025-08-14T20:48:15.5848170Z adding 'torch/include/ATen/CPUFixedAllocator.h' 2025-08-14T20:48:15.5849250Z adding 'torch/include/ATen/CPUFunctions.h' 2025-08-14T20:48:15.5852520Z adding 'torch/include/ATen/CPUFunctions_inl.h' 2025-08-14T20:48:15.5853310Z adding 'torch/include/ATen/CPUGeneratorImpl.h' 2025-08-14T20:48:15.5854440Z adding 'torch/include/ATen/CUDAFunctions.h' 2025-08-14T20:48:15.5858010Z adding 'torch/include/ATen/CUDAFunctions_inl.h' 2025-08-14T20:48:15.5858830Z adding 'torch/include/ATen/CachedTensorUtils.h' 2025-08-14T20:48:15.5859980Z adding 'torch/include/ATen/CollapseDims.h' 2025-08-14T20:48:15.5861140Z adding 'torch/include/ATen/CompositeExplicitAutogradFunctions.h' 2025-08-14T20:48:15.5865020Z adding 'torch/include/ATen/CompositeExplicitAutogradFunctions_inl.h' 2025-08-14T20:48:15.5866010Z adding 'torch/include/ATen/CompositeExplicitAutogradNonFunctionalFunctions.h' 2025-08-14T20:48:15.5868760Z adding 'torch/include/ATen/CompositeExplicitAutogradNonFunctionalFunctions_inl.h' 2025-08-14T20:48:15.5869570Z adding 'torch/include/ATen/CompositeImplicitAutogradFunctions.h' 2025-08-14T20:48:15.5873050Z adding 'torch/include/ATen/CompositeImplicitAutogradFunctions_inl.h' 2025-08-14T20:48:15.5874030Z adding 'torch/include/ATen/CompositeImplicitAutogradNestedTensorFunctions.h' 2025-08-14T20:48:15.5874980Z adding 'torch/include/ATen/CompositeImplicitAutogradNestedTensorFunctions_inl.h' 2025-08-14T20:48:15.5875770Z adding 'torch/include/ATen/Config.h' 2025-08-14T20:48:15.5880450Z adding 'torch/include/ATen/Context.h' 2025-08-14T20:48:15.5881450Z adding 'torch/include/ATen/DLConvertor.h' 2025-08-14T20:48:15.5882210Z adding 'torch/include/ATen/Device.h' 2025-08-14T20:48:15.5883620Z adding 'torch/include/ATen/DeviceAccelerator.h' 2025-08-14T20:48:15.5884570Z adding 'torch/include/ATen/DeviceGuard.h' 2025-08-14T20:48:15.5885290Z adding 'torch/include/ATen/DimVector.h' 2025-08-14T20:48:15.5886040Z adding 'torch/include/ATen/Dimname.h' 2025-08-14T20:48:15.5891250Z adding 'torch/include/ATen/Dispatch.h' 2025-08-14T20:48:15.5895870Z adding 'torch/include/ATen/Dispatch_v2.h' 2025-08-14T20:48:15.5896730Z adding 'torch/include/ATen/DynamicLibrary.h' 2025-08-14T20:48:15.5897920Z adding 'torch/include/ATen/EmptyTensor.h' 2025-08-14T20:48:15.5898780Z adding 'torch/include/ATen/ExpandBase.h' 2025-08-14T20:48:15.5901860Z adding 'torch/include/ATen/ExpandUtils.h' 2025-08-14T20:48:15.5902390Z adding 'torch/include/ATen/Formatting.h' 2025-08-14T20:48:15.5903430Z adding 'torch/include/ATen/FuncTorchTLS.h' 2025-08-14T20:48:15.5905950Z adding 'torch/include/ATen/FunctionalStorageImpl.h' 2025-08-14T20:48:15.5909850Z adding 'torch/include/ATen/FunctionalTensorWrapper.h' 2025-08-14T20:48:15.5916180Z adding 'torch/include/ATen/Functions.h' 2025-08-14T20:48:15.5916860Z adding 'torch/include/ATen/Generator.h' 2025-08-14T20:48:15.5918130Z adding 'torch/include/ATen/InferSize.h' 2025-08-14T20:48:15.5919030Z adding 'torch/include/ATen/InitialTensorOptions.h' 2025-08-14T20:48:15.5919770Z adding 'torch/include/ATen/Layout.h' 2025-08-14T20:48:15.5920710Z adding 'torch/include/ATen/LegacyBatchedFallback.h' 2025-08-14T20:48:15.5922770Z adding 'torch/include/ATen/LegacyBatchedTensorImpl.h' 2025-08-14T20:48:15.5923410Z adding 'torch/include/ATen/LegacyVmapMode.h' 2025-08-14T20:48:15.5925910Z adding 'torch/include/ATen/LegacyVmapTransforms.h' 2025-08-14T20:48:15.5926510Z adding 'torch/include/ATen/LinalgBackend.h' 2025-08-14T20:48:15.5927580Z adding 'torch/include/ATen/MPSFunctions.h' 2025-08-14T20:48:15.5930100Z adding 'torch/include/ATen/MPSFunctions_inl.h' 2025-08-14T20:48:15.5931150Z adding 'torch/include/ATen/MapAllocator.h' 2025-08-14T20:48:15.5932400Z adding 'torch/include/ATen/MatrixRef.h' 2025-08-14T20:48:15.5933350Z adding 'torch/include/ATen/MemoryOverlap.h' 2025-08-14T20:48:15.5934400Z adding 'torch/include/ATen/MetaFunctions.h' 2025-08-14T20:48:15.5936660Z adding 'torch/include/ATen/MetaFunctions_inl.h' 2025-08-14T20:48:15.5939110Z adding 'torch/include/ATen/MethodOperators.h' 2025-08-14T20:48:15.5939870Z adding 'torch/include/ATen/NamedTensor.h' 2025-08-14T20:48:15.5942010Z adding 'torch/include/ATen/NamedTensorUtils.h' 2025-08-14T20:48:15.5948170Z adding 'torch/include/ATen/NativeFunctions.h' 2025-08-14T20:48:15.5954120Z adding 'torch/include/ATen/NativeMetaFunctions.h' 2025-08-14T20:48:15.5957050Z adding 'torch/include/ATen/NestedTensorImpl.h' 2025-08-14T20:48:15.5958090Z adding 'torch/include/ATen/NumericUtils.h' 2025-08-14T20:48:15.5959200Z adding 'torch/include/ATen/OpMathType.h' 2025-08-14T20:48:15.5961240Z adding 'torch/include/ATen/OpaqueTensorImpl.h' 2025-08-14T20:48:15.5967500Z adding 'torch/include/ATen/Operators.h' 2025-08-14T20:48:15.5968340Z adding 'torch/include/ATen/PTThreadPool.h' 2025-08-14T20:48:15.5969170Z adding 'torch/include/ATen/PadNd.h' 2025-08-14T20:48:15.5970310Z adding 'torch/include/ATen/Parallel-inl.h' 2025-08-14T20:48:15.5971830Z adding 'torch/include/ATen/Parallel.h' 2025-08-14T20:48:15.5972770Z adding 'torch/include/ATen/ParallelFuture.h' 2025-08-14T20:48:15.5973570Z adding 'torch/include/ATen/ParallelNative.h' 2025-08-14T20:48:15.5974600Z adding 'torch/include/ATen/ParallelOpenMP.h' 2025-08-14T20:48:15.5975600Z adding 'torch/include/ATen/PythonTorchFunctionTLS.h' 2025-08-14T20:48:15.5976450Z adding 'torch/include/ATen/ROCmFABackend.h' 2025-08-14T20:48:15.6148760Z adding 'torch/include/ATen/RedispatchFunctions.h' 2025-08-14T20:48:15.6251200Z adding 'torch/include/ATen/RegistrationDeclarations.h' 2025-08-14T20:48:15.6251600Z adding 'torch/include/ATen/SDPBackend.h' 2025-08-14T20:48:15.6251870Z adding 'torch/include/ATen/SavedTensorHooks.h' 2025-08-14T20:48:15.6252670Z adding 'torch/include/ATen/Scalar.h' 2025-08-14T20:48:15.6253810Z adding 'torch/include/ATen/ScalarOps.h' 2025-08-14T20:48:15.6254640Z adding 'torch/include/ATen/ScalarType.h' 2025-08-14T20:48:15.6255690Z adding 'torch/include/ATen/SequenceNumber.h' 2025-08-14T20:48:15.6256440Z adding 'torch/include/ATen/SmallVector.h' 2025-08-14T20:48:15.6257650Z adding 'torch/include/ATen/SparseCsrMPSFunctions.h' 2025-08-14T20:48:15.6258640Z adding 'torch/include/ATen/SparseCsrMPSFunctions_inl.h' 2025-08-14T20:48:15.6260920Z adding 'torch/include/ATen/SparseCsrTensorImpl.h' 2025-08-14T20:48:15.6264030Z adding 'torch/include/ATen/SparseCsrTensorUtils.h' 2025-08-14T20:48:15.6264940Z adding 'torch/include/ATen/SparseMPSFunctions.h' 2025-08-14T20:48:15.6265930Z adding 'torch/include/ATen/SparseMPSFunctions_inl.h' 2025-08-14T20:48:15.6269470Z adding 'torch/include/ATen/SparseTensorImpl.h' 2025-08-14T20:48:15.6269990Z adding 'torch/include/ATen/Storage.h' 2025-08-14T20:48:15.6271060Z adding 'torch/include/ATen/StorageUtils.h' 2025-08-14T20:48:15.6271800Z adding 'torch/include/ATen/Tensor.h' 2025-08-14T20:48:15.6272710Z adding 'torch/include/ATen/TensorAccessor.h' 2025-08-14T20:48:15.6274180Z adding 'torch/include/ATen/TensorGeometry.h' 2025-08-14T20:48:15.6279860Z adding 'torch/include/ATen/TensorIndexing.h' 2025-08-14T20:48:15.6288520Z adding 'torch/include/ATen/TensorIterator.h' 2025-08-14T20:48:15.6289650Z adding 'torch/include/ATen/TensorIteratorInternal.h' 2025-08-14T20:48:15.6291640Z adding 'torch/include/ATen/TensorMeta.h' 2025-08-14T20:48:15.6292470Z adding 'torch/include/ATen/TensorNames.h' 2025-08-14T20:48:15.6293680Z adding 'torch/include/ATen/TensorOperators.h' 2025-08-14T20:48:15.6294440Z adding 'torch/include/ATen/TensorOptions.h' 2025-08-14T20:48:15.6295820Z adding 'torch/include/ATen/TensorSubclassLikeUtils.h' 2025-08-14T20:48:15.6297320Z adding 'torch/include/ATen/TensorUtils.h' 2025-08-14T20:48:15.6298420Z adding 'torch/include/ATen/ThreadLocalPythonObjects.h' 2025-08-14T20:48:15.6299880Z adding 'torch/include/ATen/ThreadLocalState.h' 2025-08-14T20:48:15.6301860Z adding 'torch/include/ATen/TracerMode.h' 2025-08-14T20:48:15.6302440Z adding 'torch/include/ATen/TypeDefault.h' 2025-08-14T20:48:15.6303860Z adding 'torch/include/ATen/Utils.h' 2025-08-14T20:48:15.6304730Z adding 'torch/include/ATen/Version.h' 2025-08-14T20:48:15.6422610Z adding 'torch/include/ATen/VmapGeneratedPlumbing.h' 2025-08-14T20:48:15.6431700Z adding 'torch/include/ATen/WrapDimUtils.h' 2025-08-14T20:48:15.6432600Z adding 'torch/include/ATen/WrapDimUtilsMulti.h' 2025-08-14T20:48:15.6439360Z adding 'torch/include/ATen/autocast_mode.h' 2025-08-14T20:48:15.6440430Z adding 'torch/include/ATen/ceil_div.h' 2025-08-14T20:48:15.6442680Z adding 'torch/include/ATen/code_template.h' 2025-08-14T20:48:15.6443770Z adding 'torch/include/ATen/cpp_custom_type_hack.h' 2025-08-14T20:48:15.6444700Z adding 'torch/include/ATen/div_rtn.h' 2025-08-14T20:48:15.6447730Z adding 'torch/include/ATen/dlpack.h' 2025-08-14T20:48:15.6448300Z adding 'torch/include/ATen/jit_macros.h' 2025-08-14T20:48:15.6449360Z adding 'torch/include/ATen/jiterator_macros.h' 2025-08-14T20:48:15.6454620Z adding 'torch/include/ATen/record_function.h' 2025-08-14T20:48:15.6456900Z adding 'torch/include/ATen/core/ATenGeneral.h' 2025-08-14T20:48:15.6457480Z adding 'torch/include/ATen/core/ATenOpList.h' 2025-08-14T20:48:15.6458390Z adding 'torch/include/ATen/core/ATen_fwd.h' 2025-08-14T20:48:15.6460380Z adding 'torch/include/ATen/core/ATen_pch.h' 2025-08-14T20:48:15.6461020Z adding 'torch/include/ATen/core/Array.h' 2025-08-14T20:48:15.6461770Z adding 'torch/include/ATen/core/Backtrace.h' 2025-08-14T20:48:15.6468210Z adding 'torch/include/ATen/core/CachingHostAllocator.h' 2025-08-14T20:48:15.6469340Z adding 'torch/include/ATen/core/CheckMemoryFormat.h' 2025-08-14T20:48:15.6470870Z adding 'torch/include/ATen/core/DeprecatedTypeProperties.h' 2025-08-14T20:48:15.6471850Z adding 'torch/include/ATen/core/DeprecatedTypePropertiesRegistry.h' 2025-08-14T20:48:15.6475450Z adding 'torch/include/ATen/core/Dict.h' 2025-08-14T20:48:15.6476930Z adding 'torch/include/ATen/core/Dict_inl.h' 2025-08-14T20:48:15.6477810Z adding 'torch/include/ATen/core/DimVector.h' 2025-08-14T20:48:15.6478740Z adding 'torch/include/ATen/core/Dimname.h' 2025-08-14T20:48:15.6481280Z adding 'torch/include/ATen/core/DistributionsHelper.h' 2025-08-14T20:48:15.6482020Z adding 'torch/include/ATen/core/Formatting.h' 2025-08-14T20:48:15.6484260Z adding 'torch/include/ATen/core/Generator.h' 2025-08-14T20:48:15.6485000Z adding 'torch/include/ATen/core/GeneratorForPrivateuseone.h' 2025-08-14T20:48:15.6489620Z adding 'torch/include/ATen/core/IListRef.h' 2025-08-14T20:48:15.6491060Z adding 'torch/include/ATen/core/IListRef_inl.h' 2025-08-14T20:48:15.6493080Z adding 'torch/include/ATen/core/LegacyTypeDispatch.h' 2025-08-14T20:48:15.6496160Z adding 'torch/include/ATen/core/List.h' 2025-08-14T20:48:15.6498450Z adding 'torch/include/ATen/core/List_inl.h' 2025-08-14T20:48:15.6500590Z adding 'torch/include/ATen/core/MT19937RNGEngine.h' 2025-08-14T20:48:15.6501890Z adding 'torch/include/ATen/core/NamedTensor.h' 2025-08-14T20:48:15.6503940Z adding 'torch/include/ATen/core/NestedIntSymNodeImpl.h' 2025-08-14T20:48:15.6506010Z adding 'torch/include/ATen/core/PhiloxRNGEngine.h' 2025-08-14T20:48:15.6506810Z adding 'torch/include/ATen/core/PythonFallbackKernel.h' 2025-08-14T20:48:15.6507710Z adding 'torch/include/ATen/core/PythonOpRegistrationTrampoline.h' 2025-08-14T20:48:15.6508840Z adding 'torch/include/ATen/core/QuantizerBase.h' 2025-08-14T20:48:15.6509690Z adding 'torch/include/ATen/core/Range.h' 2025-08-14T20:48:15.6510700Z adding 'torch/include/ATen/core/Reduction.h' 2025-08-14T20:48:15.6511480Z adding 'torch/include/ATen/core/Scalar.h' 2025-08-14T20:48:15.6512210Z adding 'torch/include/ATen/core/ScalarType.h' 2025-08-14T20:48:15.6513330Z adding 'torch/include/ATen/core/Tensor.h' 2025-08-14T20:48:15.6515700Z adding 'torch/include/ATen/core/TensorAccessor.h' 2025-08-14T20:48:15.6524280Z adding 'torch/include/ATen/core/TensorBase.h' 2025-08-14T20:48:15.6558400Z adding 'torch/include/ATen/core/TensorBody.h' 2025-08-14T20:48:15.6560810Z adding 'torch/include/ATen/core/TorchDispatchUtils.h' 2025-08-14T20:48:15.6562400Z adding 'torch/include/ATen/core/TransformationHelper.h' 2025-08-14T20:48:15.6563220Z adding 'torch/include/ATen/core/UndefinedTensorImpl.h' 2025-08-14T20:48:15.6564200Z adding 'torch/include/ATen/core/UnsafeFromTH.h' 2025-08-14T20:48:15.6565530Z adding 'torch/include/ATen/core/VariableHooksInterface.h' 2025-08-14T20:48:15.6566680Z adding 'torch/include/ATen/core/Variadic.h' 2025-08-14T20:48:15.6567880Z adding 'torch/include/ATen/core/Vitals.h' 2025-08-14T20:48:15.6569890Z adding 'torch/include/ATen/core/alias_info.h' 2025-08-14T20:48:15.6579090Z adding 'torch/include/ATen/core/aten_interned_strings.h' 2025-08-14T20:48:15.6581140Z adding 'torch/include/ATen/core/blob.h' 2025-08-14T20:48:15.6582080Z adding 'torch/include/ATen/core/builtin_function.h' 2025-08-14T20:48:15.6585550Z adding 'torch/include/ATen/core/class_type.h' 2025-08-14T20:48:15.6586260Z adding 'torch/include/ATen/core/custom_class.h' 2025-08-14T20:48:15.6589090Z adding 'torch/include/ATen/core/dynamic_type.h' 2025-08-14T20:48:15.6589810Z adding 'torch/include/ATen/core/enum_tag.h' 2025-08-14T20:48:15.6591060Z adding 'torch/include/ATen/core/enum_type.h' 2025-08-14T20:48:15.6592450Z adding 'torch/include/ATen/core/function.h' 2025-08-14T20:48:15.6598200Z adding 'torch/include/ATen/core/function_schema.h' 2025-08-14T20:48:15.6599260Z adding 'torch/include/ATen/core/function_schema_inl.h' 2025-08-14T20:48:15.6600280Z adding 'torch/include/ATen/core/functional.h' 2025-08-14T20:48:15.6601090Z adding 'torch/include/ATen/core/grad_mode.h' 2025-08-14T20:48:15.6604140Z adding 'torch/include/ATen/core/interned_strings.h' 2025-08-14T20:48:15.6604950Z adding 'torch/include/ATen/core/interned_strings_class.h' 2025-08-14T20:48:15.6616940Z adding 'torch/include/ATen/core/ivalue.h' 2025-08-14T20:48:15.6634970Z adding 'torch/include/ATen/core/ivalue_inl.h' 2025-08-14T20:48:15.6636180Z adding 'torch/include/ATen/core/ivalue_to.h' 2025-08-14T20:48:15.6650140Z adding 'torch/include/ATen/core/jit_type.h' 2025-08-14T20:48:15.6655070Z adding 'torch/include/ATen/core/jit_type_base.h' 2025-08-14T20:48:15.6656400Z adding 'torch/include/ATen/core/operator_name.h' 2025-08-14T20:48:15.6658430Z adding 'torch/include/ATen/core/qualified_name.h' 2025-08-14T20:48:15.6659020Z adding 'torch/include/ATen/core/rref_interface.h' 2025-08-14T20:48:15.6661110Z adding 'torch/include/ATen/core/stack.h' 2025-08-14T20:48:15.6663390Z adding 'torch/include/ATen/core/symbol.h' 2025-08-14T20:48:15.6664520Z adding 'torch/include/ATen/core/type_factory.h' 2025-08-14T20:48:15.6665590Z adding 'torch/include/ATen/core/type_ptr.h' 2025-08-14T20:48:15.6666380Z adding 'torch/include/ATen/core/typeid.h' 2025-08-14T20:48:15.6669420Z adding 'torch/include/ATen/core/boxing/BoxedKernel.h' 2025-08-14T20:48:15.6670450Z adding 'torch/include/ATen/core/boxing/BoxedKernel_impl.h' 2025-08-14T20:48:15.6673090Z adding 'torch/include/ATen/core/boxing/KernelFunction.h' 2025-08-14T20:48:15.6675820Z adding 'torch/include/ATen/core/boxing/KernelFunction_impl.h' 2025-08-14T20:48:15.6676550Z adding 'torch/include/ATen/core/boxing/OperatorKernel.h' 2025-08-14T20:48:15.6677990Z adding 'torch/include/ATen/core/boxing/impl/WrapFunctionIntoFunctor.h' 2025-08-14T20:48:15.6679040Z adding 'torch/include/ATen/core/boxing/impl/WrapFunctionIntoRuntimeFunctor.h' 2025-08-14T20:48:15.6682080Z adding 'torch/include/ATen/core/boxing/impl/boxing.h' 2025-08-14T20:48:15.6687420Z adding 'torch/include/ATen/core/boxing/impl/make_boxed_from_unboxed_functor.h' 2025-08-14T20:48:15.6688580Z adding 'torch/include/ATen/core/boxing/impl/test_helpers.h' 2025-08-14T20:48:15.6690120Z adding 'torch/include/ATen/core/dispatch/CppSignature.h' 2025-08-14T20:48:15.6693040Z adding 'torch/include/ATen/core/dispatch/DispatchKeyExtractor.h' 2025-08-14T20:48:15.6700440Z adding 'torch/include/ATen/core/dispatch/Dispatcher.h' 2025-08-14T20:48:15.6701210Z adding 'torch/include/ATen/core/dispatch/ObservedOperators.h' 2025-08-14T20:48:15.6704690Z adding 'torch/include/ATen/core/dispatch/OperatorEntry.h' 2025-08-14T20:48:15.6705430Z adding 'torch/include/ATen/core/dispatch/OperatorOptions.h' 2025-08-14T20:48:15.6706390Z adding 'torch/include/ATen/core/dispatch/RegistrationHandleRAII.h' 2025-08-14T20:48:15.6707870Z adding 'torch/include/ATen/core/op_registration/adaption.h' 2025-08-14T20:48:15.6709980Z adding 'torch/include/ATen/core/op_registration/infer_schema.h' 2025-08-14T20:48:15.6711350Z adding 'torch/include/ATen/core/op_registration/op_allowlist.h' 2025-08-14T20:48:15.6716130Z adding 'torch/include/ATen/core/op_registration/op_registration.h' 2025-08-14T20:48:15.6717080Z adding 'torch/include/ATen/cpu/FlushDenormal.h' 2025-08-14T20:48:15.6717970Z adding 'torch/include/ATen/cpu/Utils.h' 2025-08-14T20:48:15.6720000Z adding 'torch/include/ATen/cpu/vml.h' 2025-08-14T20:48:15.6720900Z adding 'torch/include/ATen/cpu/vec/functional.h' 2025-08-14T20:48:15.6723530Z adding 'torch/include/ATen/cpu/vec/functional_base.h' 2025-08-14T20:48:15.6726650Z adding 'torch/include/ATen/cpu/vec/functional_bfloat16.h' 2025-08-14T20:48:15.6727230Z adding 'torch/include/ATen/cpu/vec/intrinsics.h' 2025-08-14T20:48:15.6728170Z adding 'torch/include/ATen/cpu/vec/vec.h' 2025-08-14T20:48:15.6735840Z adding 'torch/include/ATen/cpu/vec/vec_base.h' 2025-08-14T20:48:15.6736860Z adding 'torch/include/ATen/cpu/vec/vec_convert.h' 2025-08-14T20:48:15.6738110Z adding 'torch/include/ATen/cpu/vec/vec_half.h' 2025-08-14T20:48:15.6740540Z adding 'torch/include/ATen/cpu/vec/vec_mask.h' 2025-08-14T20:48:15.6742880Z adding 'torch/include/ATen/cpu/vec/vec_n.h' 2025-08-14T20:48:15.6744060Z adding 'torch/include/ATen/cpu/vec/vec_quant.h' 2025-08-14T20:48:15.6746050Z adding 'torch/include/ATen/cpu/vec/sve/sve_helper.h' 2025-08-14T20:48:15.6749110Z adding 'torch/include/ATen/cpu/vec/sve/vec_bfloat16.h' 2025-08-14T20:48:15.6750750Z adding 'torch/include/ATen/cpu/vec/sve/vec_common_sve.h' 2025-08-14T20:48:15.6753790Z adding 'torch/include/ATen/cpu/vec/sve/vec_double.h' 2025-08-14T20:48:15.6757930Z adding 'torch/include/ATen/cpu/vec/sve/vec_float.h' 2025-08-14T20:48:15.6761190Z adding 'torch/include/ATen/cpu/vec/sve/vec_int.h' 2025-08-14T20:48:15.6765770Z adding 'torch/include/ATen/cpu/vec/sve/vec_qint.h' 2025-08-14T20:48:15.6767050Z adding 'torch/include/ATen/cpu/vec/vec128/vec128.h' 2025-08-14T20:48:15.6771030Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_bfloat16_neon.h' 2025-08-14T20:48:15.6771970Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_convert.h' 2025-08-14T20:48:15.6775630Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_float_neon.h' 2025-08-14T20:48:15.6779090Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_half_neon.h' 2025-08-14T20:48:15.6780920Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_reduced_precision_common_neon.h' 2025-08-14T20:48:15.6781990Z adding 'torch/include/ATen/cpu/vec/vec256/missing_vld1_neon.h' 2025-08-14T20:48:15.6782790Z adding 'torch/include/ATen/cpu/vec/vec256/missing_vst1_neon.h' 2025-08-14T20:48:15.6785450Z adding 'torch/include/ATen/cpu/vec/vec256/vec256.h' 2025-08-14T20:48:15.6789860Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_16bit_float.h' 2025-08-14T20:48:15.6791950Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_bfloat16.h' 2025-08-14T20:48:15.6795440Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_complex_double.h' 2025-08-14T20:48:15.6799410Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_complex_float.h' 2025-08-14T20:48:15.6801620Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_convert.h' 2025-08-14T20:48:15.6804110Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_double.h' 2025-08-14T20:48:15.6808610Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_float.h' 2025-08-14T20:48:15.6810410Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_half.h' 2025-08-14T20:48:15.6818860Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_int.h' 2025-08-14T20:48:15.6821070Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_mask.h' 2025-08-14T20:48:15.6827460Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_qint.h' 2025-08-14T20:48:15.6828980Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_bfloat16_vsx.h' 2025-08-14T20:48:15.6831200Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_common_vsx.h' 2025-08-14T20:48:15.6835300Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_complex_double_vsx.h' 2025-08-14T20:48:15.6839810Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_complex_float_vsx.h' 2025-08-14T20:48:15.6842500Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_double_vsx.h' 2025-08-14T20:48:15.6845280Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_float_vsx.h' 2025-08-14T20:48:15.6847670Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_int16_vsx.h' 2025-08-14T20:48:15.6849780Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_int32_vsx.h' 2025-08-14T20:48:15.6851600Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_int64_vsx.h' 2025-08-14T20:48:15.6853920Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_qint32_vsx.h' 2025-08-14T20:48:15.6856930Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_qint8_vsx.h' 2025-08-14T20:48:15.6860010Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_quint8_vsx.h' 2025-08-14T20:48:15.6863860Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vsx_helpers.h' 2025-08-14T20:48:15.6878690Z adding 'torch/include/ATen/cpu/vec/vec256/zarch/vec256_zarch.h' 2025-08-14T20:48:15.6881590Z adding 'torch/include/ATen/cpu/vec/vec512/vec512.h' 2025-08-14T20:48:15.6891500Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_bfloat16.h' 2025-08-14T20:48:15.6896090Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_complex_double.h' 2025-08-14T20:48:15.6901570Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_complex_float.h' 2025-08-14T20:48:15.6903710Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_convert.h' 2025-08-14T20:48:15.6906300Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_double.h' 2025-08-14T20:48:15.6911230Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_float.h' 2025-08-14T20:48:15.6915090Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_float8.h' 2025-08-14T20:48:15.6922320Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_int.h' 2025-08-14T20:48:15.6924920Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_mask.h' 2025-08-14T20:48:15.6930980Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_qint.h' 2025-08-14T20:48:15.6932720Z adding 'torch/include/ATen/cuda/ATenCUDAGeneral.h' 2025-08-14T20:48:15.6933620Z adding 'torch/include/ATen/cuda/ApplyGridUtils.cuh' 2025-08-14T20:48:15.6934790Z adding 'torch/include/ATen/cuda/AsmUtils.cuh' 2025-08-14T20:48:15.6938550Z adding 'torch/include/ATen/cuda/Atomic.cuh' 2025-08-14T20:48:15.6942660Z adding 'torch/include/ATen/cuda/CUDAApplyUtils.cuh' 2025-08-14T20:48:15.6945150Z adding 'torch/include/ATen/cuda/CUDABlas.h' 2025-08-14T20:48:15.6945790Z adding 'torch/include/ATen/cuda/CUDAContext.h' 2025-08-14T20:48:15.6947080Z adding 'torch/include/ATen/cuda/CUDAContextLight.h' 2025-08-14T20:48:15.6948170Z adding 'torch/include/ATen/cuda/CUDADataType.h' 2025-08-14T20:48:15.6949050Z adding 'torch/include/ATen/cuda/CUDADevice.h' 2025-08-14T20:48:15.6951560Z adding 'torch/include/ATen/cuda/CUDAEvent.h' 2025-08-14T20:48:15.6953340Z adding 'torch/include/ATen/cuda/CUDAGeneratorImpl.h' 2025-08-14T20:48:15.6954560Z adding 'torch/include/ATen/cuda/CUDAGraph.h' 2025-08-14T20:48:15.6955630Z adding 'torch/include/ATen/cuda/CUDAGraphsUtils.cuh' 2025-08-14T20:48:15.6956650Z adding 'torch/include/ATen/cuda/CUDASparse.h' 2025-08-14T20:48:15.6958860Z adding 'torch/include/ATen/cuda/CUDASparseBlas.h' 2025-08-14T20:48:15.6960400Z adding 'torch/include/ATen/cuda/CUDASparseDescriptors.h' 2025-08-14T20:48:15.6961230Z adding 'torch/include/ATen/cuda/CUDATensorMethods.cuh' 2025-08-14T20:48:15.6962040Z adding 'torch/include/ATen/cuda/CUDAUtils.h' 2025-08-14T20:48:15.6963170Z adding 'torch/include/ATen/cuda/CachingHostAllocator.h' 2025-08-14T20:48:15.6964310Z adding 'torch/include/ATen/cuda/DeviceUtils.cuh' 2025-08-14T20:48:15.6965220Z adding 'torch/include/ATen/cuda/EmptyTensor.h' 2025-08-14T20:48:15.6967560Z adding 'torch/include/ATen/cuda/Exceptions.h' 2025-08-14T20:48:15.6968560Z adding 'torch/include/ATen/cuda/NumericLimits.cuh' 2025-08-14T20:48:15.6969460Z adding 'torch/include/ATen/cuda/PeerToPeerAccess.h' 2025-08-14T20:48:15.6970200Z adding 'torch/include/ATen/cuda/PhiloxCudaState.h' 2025-08-14T20:48:15.6970950Z adding 'torch/include/ATen/cuda/PhiloxUtils.cuh' 2025-08-14T20:48:15.6971760Z adding 'torch/include/ATen/cuda/PinnedMemoryAllocator.h' 2025-08-14T20:48:15.6972850Z adding 'torch/include/ATen/cuda/ScanUtils.cuh' 2025-08-14T20:48:15.6973660Z adding 'torch/include/ATen/cuda/Sleep.h' 2025-08-14T20:48:15.6974610Z adding 'torch/include/ATen/cuda/ThrustAllocator.h' 2025-08-14T20:48:15.6975670Z adding 'torch/include/ATen/cuda/cub-RadixSortPairs.cuh' 2025-08-14T20:48:15.6980010Z adding 'torch/include/ATen/cuda/cub.cuh' 2025-08-14T20:48:15.6981060Z adding 'torch/include/ATen/cuda/cub.h' 2025-08-14T20:48:15.6982060Z adding 'torch/include/ATen/cuda/cub_definitions.cuh' 2025-08-14T20:48:15.6982930Z adding 'torch/include/ATen/cuda/jiterator.h' 2025-08-14T20:48:15.6984910Z adding 'torch/include/ATen/cuda/jiterator_impl.h' 2025-08-14T20:48:15.6985510Z adding 'torch/include/ATen/cuda/llvm_jit_strings.h' 2025-08-14T20:48:15.6987070Z adding 'torch/include/ATen/cuda/detail/CUDAHooks.h' 2025-08-14T20:48:15.6989570Z adding 'torch/include/ATen/cuda/detail/DeviceThreadHandles.h' 2025-08-14T20:48:15.6990180Z adding 'torch/include/ATen/cuda/detail/IndexUtils.cuh' 2025-08-14T20:48:15.6991740Z adding 'torch/include/ATen/cuda/detail/IntegerDivider.cuh' 2025-08-14T20:48:15.6992780Z adding 'torch/include/ATen/cuda/detail/KernelUtils.h' 2025-08-14T20:48:15.6993580Z adding 'torch/include/ATen/cuda/detail/LazyNVRTC.h' 2025-08-14T20:48:15.6995010Z adding 'torch/include/ATen/cuda/detail/OffsetCalculator.cuh' 2025-08-14T20:48:15.6996050Z adding 'torch/include/ATen/cuda/detail/PhiloxCudaStateRaw.cuh' 2025-08-14T20:48:15.6997260Z adding 'torch/include/ATen/cuda/detail/TensorInfo.cuh' 2025-08-14T20:48:15.6998370Z adding 'torch/include/ATen/cuda/detail/UnpackRaw.cuh' 2025-08-14T20:48:15.7002040Z adding 'torch/include/ATen/cuda/tunable/GemmCommon.h' 2025-08-14T20:48:15.7005520Z adding 'torch/include/ATen/cuda/tunable/GemmHipblaslt.h' 2025-08-14T20:48:15.7007610Z adding 'torch/include/ATen/cuda/tunable/GemmRocblas.h' 2025-08-14T20:48:15.7008240Z adding 'torch/include/ATen/cuda/tunable/StreamTimer.h' 2025-08-14T20:48:15.7010380Z adding 'torch/include/ATen/cuda/tunable/Tunable.h' 2025-08-14T20:48:15.7011900Z adding 'torch/include/ATen/cuda/tunable/TunableGemm.h' 2025-08-14T20:48:15.7015170Z adding 'torch/include/ATen/cuda/tunable/TunableOp.h' 2025-08-14T20:48:15.7018670Z adding 'torch/include/ATen/cudnn/Descriptors.h' 2025-08-14T20:48:15.7019260Z adding 'torch/include/ATen/cudnn/Handle.h' 2025-08-14T20:48:15.7020020Z adding 'torch/include/ATen/cudnn/Handles.h' 2025-08-14T20:48:15.7020840Z adding 'torch/include/ATen/cudnn/Types.h' 2025-08-14T20:48:15.7021710Z adding 'torch/include/ATen/cudnn/Utils.h' 2025-08-14T20:48:15.7022580Z adding 'torch/include/ATen/cudnn/cudnn-wrapper.h' 2025-08-14T20:48:15.7024150Z adding 'torch/include/ATen/detail/AcceleratorHooksInterface.h' 2025-08-14T20:48:15.7026290Z adding 'torch/include/ATen/detail/CUDAHooksInterface.h' 2025-08-14T20:48:15.7027020Z adding 'torch/include/ATen/detail/FunctionTraits.h' 2025-08-14T20:48:15.7028130Z adding 'torch/include/ATen/detail/HIPHooksInterface.h' 2025-08-14T20:48:15.7029140Z adding 'torch/include/ATen/detail/HPUHooksInterface.h' 2025-08-14T20:48:15.7030070Z adding 'torch/include/ATen/detail/IPUHooksInterface.h' 2025-08-14T20:48:15.7031060Z adding 'torch/include/ATen/detail/MAIAHooksInterface.h' 2025-08-14T20:48:15.7032270Z adding 'torch/include/ATen/detail/MPSHooksInterface.h' 2025-08-14T20:48:15.7033620Z adding 'torch/include/ATen/detail/MTIAHooksInterface.h' 2025-08-14T20:48:15.7034750Z adding 'torch/include/ATen/detail/PrivateUse1HooksInterface.h' 2025-08-14T20:48:15.7035810Z adding 'torch/include/ATen/detail/XPUHooksInterface.h' 2025-08-14T20:48:15.7037130Z adding 'torch/include/ATen/functorch/ADInterpreters.h' 2025-08-14T20:48:15.7040670Z adding 'torch/include/ATen/functorch/BatchRulesHelper.h' 2025-08-14T20:48:15.7041680Z adding 'torch/include/ATen/functorch/BatchedFallback.h' 2025-08-14T20:48:15.7043860Z adding 'torch/include/ATen/functorch/BatchedTensorImpl.h' 2025-08-14T20:48:15.7044970Z adding 'torch/include/ATen/functorch/BatchingMetaprogramming.h' 2025-08-14T20:48:15.7047040Z adding 'torch/include/ATen/functorch/DynamicLayer.h' 2025-08-14T20:48:15.7047660Z adding 'torch/include/ATen/functorch/FunctionalizeInterpreter.h' 2025-08-14T20:48:15.7050790Z adding 'torch/include/ATen/functorch/Interpreter.h' 2025-08-14T20:48:15.7053200Z adding 'torch/include/ATen/functorch/LegacyVmapTransforms.h' 2025-08-14T20:48:15.7053640Z adding 'torch/include/ATen/functorch/Macros.h' 2025-08-14T20:48:15.7054900Z adding 'torch/include/ATen/functorch/PlumbingHelper.h' 2025-08-14T20:48:15.7056380Z adding 'torch/include/ATen/functorch/TensorWrapper.h' 2025-08-14T20:48:15.7062240Z adding 'torch/include/ATen/functorch/VmapInterpreter.h' 2025-08-14T20:48:15.7062570Z adding 'torch/include/ATen/hip/impl/HIPAllocatorMasqueradingAsCUDA.h' 2025-08-14T20:48:15.7062960Z adding 'torch/include/ATen/hip/impl/HIPCachingAllocatorMasqueradingAsCUDA.h' 2025-08-14T20:48:15.7063350Z adding 'torch/include/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h' 2025-08-14T20:48:15.7064110Z adding 'torch/include/ATen/hip/impl/HIPStreamMasqueradingAsCUDA.h' 2025-08-14T20:48:15.7065150Z adding 'torch/include/ATen/metal/Context.h' 2025-08-14T20:48:15.7067320Z adding 'torch/include/ATen/miopen/Descriptors.h' 2025-08-14T20:48:15.7068050Z adding 'torch/include/ATen/miopen/Exceptions.h' 2025-08-14T20:48:15.7068860Z adding 'torch/include/ATen/miopen/Handle.h' 2025-08-14T20:48:15.7069660Z adding 'torch/include/ATen/miopen/Types.h' 2025-08-14T20:48:15.7070460Z adding 'torch/include/ATen/miopen/Utils.h' 2025-08-14T20:48:15.7071330Z adding 'torch/include/ATen/miopen/miopen-wrapper.h' 2025-08-14T20:48:15.7072540Z adding 'torch/include/ATen/mps/EmptyTensor.h' 2025-08-14T20:48:15.7074030Z adding 'torch/include/ATen/mps/IndexKernels.h' 2025-08-14T20:48:15.7078890Z adding 'torch/include/ATen/mps/MPSAllocator.h' 2025-08-14T20:48:15.7079970Z adding 'torch/include/ATen/mps/MPSAllocatorInterface.h' 2025-08-14T20:48:15.7081020Z adding 'torch/include/ATen/mps/MPSDevice.h' 2025-08-14T20:48:15.7082420Z adding 'torch/include/ATen/mps/MPSEvent.h' 2025-08-14T20:48:15.7083440Z adding 'torch/include/ATen/mps/MPSGeneratorImpl.h' 2025-08-14T20:48:15.7085180Z adding 'torch/include/ATen/mps/MPSGuardImpl.h' 2025-08-14T20:48:15.7086240Z adding 'torch/include/ATen/mps/MPSHooks.h' 2025-08-14T20:48:15.7090170Z adding 'torch/include/ATen/mps/MPSProfiler.h' 2025-08-14T20:48:15.7091540Z adding 'torch/include/ATen/mps/MPSStream.h' 2025-08-14T20:48:15.7093890Z adding 'torch/include/ATen/native/Activation.h' 2025-08-14T20:48:15.7094800Z adding 'torch/include/ATen/native/AdaptivePooling.h' 2025-08-14T20:48:15.7095710Z adding 'torch/include/ATen/native/AmpKernels.h' 2025-08-14T20:48:15.7097810Z adding 'torch/include/ATen/native/BatchLinearAlgebra.h' 2025-08-14T20:48:15.7098880Z adding 'torch/include/ATen/native/BinaryOps.h' 2025-08-14T20:48:15.7101090Z adding 'torch/include/ATen/native/BucketizationUtils.h' 2025-08-14T20:48:15.7102620Z adding 'torch/include/ATen/native/CPUBlas.h' 2025-08-14T20:48:15.7103700Z adding 'torch/include/ATen/native/CPUFallback.h' 2025-08-14T20:48:15.7104590Z adding 'torch/include/ATen/native/CanUse32BitIndexMath.h' 2025-08-14T20:48:15.7105930Z adding 'torch/include/ATen/native/ComplexHelper.h' 2025-08-14T20:48:15.7106840Z adding 'torch/include/ATen/native/CompositeRandomAccessor.h' 2025-08-14T20:48:15.7108890Z adding 'torch/include/ATen/native/CompositeRandomAccessorCommon.h' 2025-08-14T20:48:15.7112060Z adding 'torch/include/ATen/native/ConvUtils.h' 2025-08-14T20:48:15.7112740Z adding 'torch/include/ATen/native/ConvolutionMM3d.h' 2025-08-14T20:48:15.7113500Z adding 'torch/include/ATen/native/Copy.h' 2025-08-14T20:48:15.7114330Z adding 'torch/include/ATen/native/Cross.h' 2025-08-14T20:48:15.7116280Z adding 'torch/include/ATen/native/DilatedConvolutionUtils.h' 2025-08-14T20:48:15.7119100Z adding 'torch/include/ATen/native/DispatchStub.h' 2025-08-14T20:48:15.7119940Z adding 'torch/include/ATen/native/Distance.h' 2025-08-14T20:48:15.7123430Z adding 'torch/include/ATen/native/DistributionTemplates.h' 2025-08-14T20:48:15.7128390Z adding 'torch/include/ATen/native/Distributions.h' 2025-08-14T20:48:15.7129740Z adding 'torch/include/ATen/native/EmbeddingBag.h' 2025-08-14T20:48:15.7130660Z adding 'torch/include/ATen/native/Fill.h' 2025-08-14T20:48:15.7134190Z adding 'torch/include/ATen/native/ForeachUtils.h' 2025-08-14T20:48:15.7135180Z adding 'torch/include/ATen/native/FractionalMaxPooling.h' 2025-08-14T20:48:15.7136020Z adding 'torch/include/ATen/native/FunctionOfAMatrixUtils.h' 2025-08-14T20:48:15.7136840Z adding 'torch/include/ATen/native/FusedAdagrad.h' 2025-08-14T20:48:15.7137710Z adding 'torch/include/ATen/native/FusedAdam.h' 2025-08-14T20:48:15.7138560Z adding 'torch/include/ATen/native/FusedSGD.h' 2025-08-14T20:48:15.7139470Z adding 'torch/include/ATen/native/Gelu.h' 2025-08-14T20:48:15.7141810Z adding 'torch/include/ATen/native/GridSampler.h' 2025-08-14T20:48:15.7142820Z adding 'torch/include/ATen/native/GridSamplerUtils.h' 2025-08-14T20:48:15.7143660Z adding 'torch/include/ATen/native/Histogram.h' 2025-08-14T20:48:15.7144610Z adding 'torch/include/ATen/native/IndexKernel.h' 2025-08-14T20:48:15.7146570Z adding 'torch/include/ATen/native/IndexingUtils.h' 2025-08-14T20:48:15.7147330Z adding 'torch/include/ATen/native/Lerp.h' 2025-08-14T20:48:15.7148150Z adding 'torch/include/ATen/native/LinearAlgebra.h' 2025-08-14T20:48:15.7154410Z adding 'torch/include/ATen/native/LinearAlgebraUtils.h' 2025-08-14T20:48:15.7155270Z adding 'torch/include/ATen/native/LossMulti.h' 2025-08-14T20:48:15.7184850Z adding 'torch/include/ATen/native/Math.h' 2025-08-14T20:48:15.7186770Z adding 'torch/include/ATen/native/MathBitFallThroughLists.h' 2025-08-14T20:48:15.7189040Z adding 'torch/include/ATen/native/MathBitsFallback.h' 2025-08-14T20:48:15.7190150Z adding 'torch/include/ATen/native/MaxPooling.h' 2025-08-14T20:48:15.7191100Z adding 'torch/include/ATen/native/NonEmptyUtils.h' 2025-08-14T20:48:15.7192320Z adding 'torch/include/ATen/native/NonSymbolicBC.h' 2025-08-14T20:48:15.7193210Z adding 'torch/include/ATen/native/Normalization.h' 2025-08-14T20:48:15.7194270Z adding 'torch/include/ATen/native/Padding.h' 2025-08-14T20:48:15.7195280Z adding 'torch/include/ATen/native/PixelShuffle.h' 2025-08-14T20:48:15.7196170Z adding 'torch/include/ATen/native/PointwiseOps.h' 2025-08-14T20:48:15.7199090Z adding 'torch/include/ATen/native/Pool.h' 2025-08-14T20:48:15.7199880Z adding 'torch/include/ATen/native/Pow.h' 2025-08-14T20:48:15.7200940Z adding 'torch/include/ATen/native/RNN.h' 2025-08-14T20:48:15.7201820Z adding 'torch/include/ATen/native/RangeFactories.h' 2025-08-14T20:48:15.7202900Z adding 'torch/include/ATen/native/RangeUtils.h' 2025-08-14T20:48:15.7203790Z adding 'torch/include/ATen/native/ReduceAllOps.h' 2025-08-14T20:48:15.7204810Z adding 'torch/include/ATen/native/ReduceOps.h' 2025-08-14T20:48:15.7208200Z adding 'torch/include/ATen/native/ReduceOpsUtils.h' 2025-08-14T20:48:15.7208970Z adding 'torch/include/ATen/native/ReductionType.h' 2025-08-14T20:48:15.7209950Z adding 'torch/include/ATen/native/Repeat.h' 2025-08-14T20:48:15.7212410Z adding 'torch/include/ATen/native/Resize.h' 2025-08-14T20:48:15.7213420Z adding 'torch/include/ATen/native/ResizeCommon.h' 2025-08-14T20:48:15.7214690Z adding 'torch/include/ATen/native/ScatterGatherChecks.h' 2025-08-14T20:48:15.7215540Z adding 'torch/include/ATen/native/SegmentReduce.h' 2025-08-14T20:48:15.7218290Z adding 'torch/include/ATen/native/SharedReduceOps.h' 2025-08-14T20:48:15.7219320Z adding 'torch/include/ATen/native/SobolEngineOpsUtils.h' 2025-08-14T20:48:15.7220100Z adding 'torch/include/ATen/native/Sorting.h' 2025-08-14T20:48:15.7221160Z adding 'torch/include/ATen/native/SortingUtils.h' 2025-08-14T20:48:15.7223190Z adding 'torch/include/ATen/native/SparseTensorUtils.h' 2025-08-14T20:48:15.7224340Z adding 'torch/include/ATen/native/SpectralOpsUtils.h' 2025-08-14T20:48:15.7225940Z adding 'torch/include/ATen/native/StridedRandomAccessor.h' 2025-08-14T20:48:15.7226980Z adding 'torch/include/ATen/native/TensorAdvancedIndexing.h' 2025-08-14T20:48:15.7228370Z adding 'torch/include/ATen/native/TensorAdvancedIndexingUtils.h' 2025-08-14T20:48:15.7229280Z adding 'torch/include/ATen/native/TensorCompare.h' 2025-08-14T20:48:15.7230140Z adding 'torch/include/ATen/native/TensorConversions.h' 2025-08-14T20:48:15.7231170Z adding 'torch/include/ATen/native/TensorDimApply.h' 2025-08-14T20:48:15.7233190Z adding 'torch/include/ATen/native/TensorFactories.h' 2025-08-14T20:48:15.7233600Z adding 'torch/include/ATen/native/TensorIterator.h' 2025-08-14T20:48:15.7234690Z adding 'torch/include/ATen/native/TensorIteratorDynamicCasting.h' 2025-08-14T20:48:15.7235430Z adding 'torch/include/ATen/native/TensorProperties.h' 2025-08-14T20:48:15.7236970Z adding 'torch/include/ATen/native/TensorShape.h' 2025-08-14T20:48:15.7237910Z adding 'torch/include/ATen/native/TensorTransformations.h' 2025-08-14T20:48:15.7239040Z adding 'torch/include/ATen/native/TopKImpl.h' 2025-08-14T20:48:15.7239930Z adding 'torch/include/ATen/native/TransposeType.h' 2025-08-14T20:48:15.7241010Z adding 'torch/include/ATen/native/TriangularOpsUtils.h' 2025-08-14T20:48:15.7241890Z adding 'torch/include/ATen/native/TypeProperties.h' 2025-08-14T20:48:15.7243090Z adding 'torch/include/ATen/native/UnaryOps.h' 2025-08-14T20:48:15.7243970Z adding 'torch/include/ATen/native/Unfold2d.h' 2025-08-14T20:48:15.7244850Z adding 'torch/include/ATen/native/Unfold3d.h' 2025-08-14T20:48:15.7246080Z adding 'torch/include/ATen/native/UnfoldBackward.h' 2025-08-14T20:48:15.7249970Z adding 'torch/include/ATen/native/UpSample.h' 2025-08-14T20:48:15.7250760Z adding 'torch/include/ATen/native/batch_norm.h' 2025-08-14T20:48:15.7251670Z adding 'torch/include/ATen/native/group_norm.h' 2025-08-14T20:48:15.7253060Z adding 'torch/include/ATen/native/im2col.h' 2025-08-14T20:48:15.7254880Z adding 'torch/include/ATen/native/im2col_shape_check.h' 2025-08-14T20:48:15.7255960Z adding 'torch/include/ATen/native/layer_norm.h' 2025-08-14T20:48:15.7256790Z adding 'torch/include/ATen/native/verbose_wrapper.h' 2025-08-14T20:48:15.7257950Z adding 'torch/include/ATen/native/vol2col.h' 2025-08-14T20:48:15.7260570Z adding 'torch/include/ATen/native/ao_sparse/quantized/cpu/fbgemm_utils.h' 2025-08-14T20:48:15.7261500Z adding 'torch/include/ATen/native/ao_sparse/quantized/cpu/packed_params.h' 2025-08-14T20:48:15.7262740Z adding 'torch/include/ATen/native/ao_sparse/quantized/cpu/qnnpack_utils.h' 2025-08-14T20:48:15.7264290Z adding 'torch/include/ATen/native/cpu/AtomicAddFloat.h' 2025-08-14T20:48:15.7265000Z adding 'torch/include/ATen/native/cpu/CatKernel.h' 2025-08-14T20:48:15.7265860Z adding 'torch/include/ATen/native/cpu/ChannelShuffleKernel.h' 2025-08-14T20:48:15.7266660Z adding 'torch/include/ATen/native/cpu/CopyKernel.h' 2025-08-14T20:48:15.7267560Z adding 'torch/include/ATen/native/cpu/DepthwiseConvKernel.h' 2025-08-14T20:48:15.7270440Z adding 'torch/include/ATen/native/cpu/DistributionTemplates.h' 2025-08-14T20:48:15.7271410Z adding 'torch/include/ATen/native/cpu/Elu.h' 2025-08-14T20:48:15.7272540Z adding 'torch/include/ATen/native/cpu/Gelu.h' 2025-08-14T20:48:15.7273470Z adding 'torch/include/ATen/native/cpu/GridSamplerKernel.h' 2025-08-14T20:48:15.7274700Z adding 'torch/include/ATen/native/cpu/IndexKernelUtils.h' 2025-08-14T20:48:15.7275620Z adding 'torch/include/ATen/native/cpu/Intrinsics.h' 2025-08-14T20:48:15.7277590Z adding 'torch/include/ATen/native/cpu/IsContiguous.h' 2025-08-14T20:48:15.7278460Z adding 'torch/include/ATen/native/cpu/LogAddExp.h' 2025-08-14T20:48:15.7281270Z adding 'torch/include/ATen/native/cpu/LogSoftmaxKernelImpl.h' 2025-08-14T20:48:15.7284090Z adding 'torch/include/ATen/native/cpu/Loops.h' 2025-08-14T20:48:15.7284730Z adding 'torch/include/ATen/native/cpu/MaxUnpoolKernel.h' 2025-08-14T20:48:15.7285550Z adding 'torch/include/ATen/native/cpu/PixelShuffleKernel.h' 2025-08-14T20:48:15.7288580Z adding 'torch/include/ATen/native/cpu/Reduce.h' 2025-08-14T20:48:15.7290310Z adding 'torch/include/ATen/native/cpu/ReduceUtils.h' 2025-08-14T20:48:15.7291260Z adding 'torch/include/ATen/native/cpu/ReducedPrecisionFloatGemvFastPathKernel.h' 2025-08-14T20:48:15.7292020Z adding 'torch/include/ATen/native/cpu/SampledAddmmKernel.h' 2025-08-14T20:48:15.7293920Z adding 'torch/include/ATen/native/cpu/SerialStackImpl.h' 2025-08-14T20:48:15.7294540Z adding 'torch/include/ATen/native/cpu/SoftmaxKernel.h' 2025-08-14T20:48:15.7295470Z adding 'torch/include/ATen/native/cpu/SpmmReduceKernel.h' 2025-08-14T20:48:15.7296310Z adding 'torch/include/ATen/native/cpu/StackKernel.h' 2025-08-14T20:48:15.7305950Z adding 'torch/include/ATen/native/cpu/UpSampleKernelAVXAntialias.h' 2025-08-14T20:48:15.7306770Z adding 'torch/include/ATen/native/cpu/WeightNormKernel.h' 2025-08-14T20:48:15.7310320Z adding 'torch/include/ATen/native/cpu/avx_mathfun.h' 2025-08-14T20:48:15.7310890Z adding 'torch/include/ATen/native/cpu/int_mm_kernel.h' 2025-08-14T20:48:15.7311880Z adding 'torch/include/ATen/native/cpu/mixed_data_type.h' 2025-08-14T20:48:15.7313900Z adding 'torch/include/ATen/native/cpu/moments_utils.h' 2025-08-14T20:48:15.7315620Z adding 'torch/include/ATen/native/cpu/utils.h' 2025-08-14T20:48:15.7316860Z adding 'torch/include/ATen/native/cpu/zmath.h' 2025-08-14T20:48:15.7318780Z adding 'torch/include/ATen/native/cuda/Activation.h' 2025-08-14T20:48:15.7319520Z adding 'torch/include/ATen/native/cuda/BinaryInternal.h' 2025-08-14T20:48:15.7322370Z adding 'torch/include/ATen/native/cuda/CUDAJitLoops.cuh' 2025-08-14T20:48:15.7328140Z adding 'torch/include/ATen/native/cuda/CUDALoops.cuh' 2025-08-14T20:48:15.7329050Z adding 'torch/include/ATen/native/cuda/CompositeRandomAccessor.h' 2025-08-14T20:48:15.7329880Z adding 'torch/include/ATen/native/cuda/Copy.h' 2025-08-14T20:48:15.7334310Z adding 'torch/include/ATen/native/cuda/CuFFTPlanCache.h' 2025-08-14T20:48:15.7335180Z adding 'torch/include/ATen/native/cuda/CuFFTUtils.h' 2025-08-14T20:48:15.7336030Z adding 'torch/include/ATen/native/cuda/DeviceSqrt.cuh' 2025-08-14T20:48:15.7341010Z adding 'torch/include/ATen/native/cuda/DistributionTemplates.h' 2025-08-14T20:48:15.7341680Z adding 'torch/include/ATen/native/cuda/Distributions.h' 2025-08-14T20:48:15.7342580Z adding 'torch/include/ATen/native/cuda/EmbeddingBackwardKernel.cuh' 2025-08-14T20:48:15.7345350Z adding 'torch/include/ATen/native/cuda/ForeachFunctors.cuh' 2025-08-14T20:48:15.7346040Z adding 'torch/include/ATen/native/cuda/ForeachMinMaxFunctors.cuh' 2025-08-14T20:48:15.7348370Z adding 'torch/include/ATen/native/cuda/GridSampler.cuh' 2025-08-14T20:48:15.7349030Z adding 'torch/include/ATen/native/cuda/GridSampler.h' 2025-08-14T20:48:15.7349840Z adding 'torch/include/ATen/native/cuda/GroupMM.h' 2025-08-14T20:48:15.7351800Z adding 'torch/include/ATen/native/cuda/GroupMMCommon.cuh' 2025-08-14T20:48:15.7352370Z adding 'torch/include/ATen/native/cuda/IndexKernel.h' 2025-08-14T20:48:15.7353420Z adding 'torch/include/ATen/native/cuda/IndexKernelUtils.h' 2025-08-14T20:48:15.7355520Z adding 'torch/include/ATen/native/cuda/JitLoops.cuh' 2025-08-14T20:48:15.7358110Z adding 'torch/include/ATen/native/cuda/KernelUtils.cuh' 2025-08-14T20:48:15.7358700Z adding 'torch/include/ATen/native/cuda/LaunchUtils.h' 2025-08-14T20:48:15.7361210Z adding 'torch/include/ATen/native/cuda/Loops.cuh' 2025-08-14T20:48:15.7382630Z adding 'torch/include/ATen/native/cuda/Math.cuh' 2025-08-14T20:48:15.7387470Z adding 'torch/include/ATen/native/cuda/MemoryAccess.cuh' 2025-08-14T20:48:15.7388310Z adding 'torch/include/ATen/native/cuda/MiscUtils.h' 2025-08-14T20:48:15.7391140Z adding 'torch/include/ATen/native/cuda/MultiTensorApply.cuh' 2025-08-14T20:48:15.7401960Z adding 'torch/include/ATen/native/cuda/Normalization.cuh' 2025-08-14T20:48:15.7405420Z adding 'torch/include/ATen/native/cuda/PersistentSoftmax.cuh' 2025-08-14T20:48:15.7406410Z adding 'torch/include/ATen/native/cuda/Pow.cuh' 2025-08-14T20:48:15.7407600Z adding 'torch/include/ATen/native/cuda/Randperm.cuh' 2025-08-14T20:48:15.7417980Z adding 'torch/include/ATen/native/cuda/Reduce.cuh' 2025-08-14T20:48:15.7418770Z adding 'torch/include/ATen/native/cuda/ReduceOps.h' 2025-08-14T20:48:15.7419850Z adding 'torch/include/ATen/native/cuda/Resize.h' 2025-08-14T20:48:15.7420720Z adding 'torch/include/ATen/native/cuda/RowwiseScaledMM.h' 2025-08-14T20:48:15.7421560Z adding 'torch/include/ATen/native/cuda/ScaledGroupMM.h' 2025-08-14T20:48:15.7422400Z adding 'torch/include/ATen/native/cuda/ScanKernels.h' 2025-08-14T20:48:15.7426210Z adding 'torch/include/ATen/native/cuda/ScanUtils.cuh' 2025-08-14T20:48:15.7426980Z adding 'torch/include/ATen/native/cuda/Sort.h' 2025-08-14T20:48:15.7427830Z adding 'torch/include/ATen/native/cuda/SortStable.h' 2025-08-14T20:48:15.7430430Z adding 'torch/include/ATen/native/cuda/SortUtils.cuh' 2025-08-14T20:48:15.7431110Z adding 'torch/include/ATen/native/cuda/Sorting.h' 2025-08-14T20:48:15.7432840Z adding 'torch/include/ATen/native/cuda/SortingCommon.cuh' 2025-08-14T20:48:15.7435730Z adding 'torch/include/ATen/native/cuda/SortingRadixSelect.cuh' 2025-08-14T20:48:15.7439410Z adding 'torch/include/ATen/native/cuda/TensorModeKernel.cuh' 2025-08-14T20:48:15.7440760Z adding 'torch/include/ATen/native/cuda/TensorModeKernel.h' 2025-08-14T20:48:15.7441570Z adding 'torch/include/ATen/native/cuda/TensorTopK.h' 2025-08-14T20:48:15.7442370Z adding 'torch/include/ATen/native/cuda/UniqueCub.cuh' 2025-08-14T20:48:15.7445000Z adding 'torch/include/ATen/native/cuda/UpSample.cuh' 2025-08-14T20:48:15.7446080Z adding 'torch/include/ATen/native/cuda/block_reduce.cuh' 2025-08-14T20:48:15.7446970Z adding 'torch/include/ATen/native/cuda/cutlass_common.cuh' 2025-08-14T20:48:15.7447830Z adding 'torch/include/ATen/native/cuda/fused_adagrad_impl.cuh' 2025-08-14T20:48:15.7449270Z adding 'torch/include/ATen/native/cuda/fused_adagrad_utils.cuh' 2025-08-14T20:48:15.7450130Z adding 'torch/include/ATen/native/cuda/fused_adam_amsgrad_impl.cuh' 2025-08-14T20:48:15.7450960Z adding 'torch/include/ATen/native/cuda/fused_adam_impl.cuh' 2025-08-14T20:48:15.7453010Z adding 'torch/include/ATen/native/cuda/fused_adam_utils.cuh' 2025-08-14T20:48:15.7453610Z adding 'torch/include/ATen/native/cuda/fused_adamw_amsgrad_impl.cuh' 2025-08-14T20:48:15.7454430Z adding 'torch/include/ATen/native/cuda/fused_adamw_impl.cuh' 2025-08-14T20:48:15.7456710Z adding 'torch/include/ATen/native/cuda/im2col.cuh' 2025-08-14T20:48:15.7458440Z adding 'torch/include/ATen/native/cuda/jit_utils.h' 2025-08-14T20:48:15.7462750Z adding 'torch/include/ATen/native/cuda/reduction_template.cuh' 2025-08-14T20:48:15.7463440Z adding 'torch/include/ATen/native/cuda/thread_constants.h' 2025-08-14T20:48:15.7465890Z adding 'torch/include/ATen/native/cuda/vol2col.cuh' 2025-08-14T20:48:15.7466740Z adding 'torch/include/ATen/native/hip/ck_bgemm.h' 2025-08-14T20:48:15.7467640Z adding 'torch/include/ATen/native/hip/ck_gemm.h' 2025-08-14T20:48:15.7470290Z adding 'torch/include/ATen/native/hip/ck_gemm_template.h' 2025-08-14T20:48:15.7471110Z adding 'torch/include/ATen/native/hip/ck_types.h' 2025-08-14T20:48:15.7472590Z adding 'torch/include/ATen/native/hip/bgemm_kernels/bgemm_kernel_collection.h' 2025-08-14T20:48:15.7474560Z adding 'torch/include/ATen/native/hip/bgemm_kernels/bgemm_kernel_template.h' 2025-08-14T20:48:15.7475450Z adding 'torch/include/ATen/native/kleidiai/kai_kernels.h' 2025-08-14T20:48:15.7476520Z adding 'torch/include/ATen/native/kleidiai/kai_pack.h' 2025-08-14T20:48:15.7477810Z adding 'torch/include/ATen/native/kleidiai/kai_ukernel_interface.h' 2025-08-14T20:48:15.7479030Z adding 'torch/include/ATen/native/metal/MetalCommandBuffer.h' 2025-08-14T20:48:15.7479880Z adding 'torch/include/ATen/native/metal/MetalContext.h' 2025-08-14T20:48:15.7480860Z adding 'torch/include/ATen/native/metal/MetalConvParams.h' 2025-08-14T20:48:15.7481830Z adding 'torch/include/ATen/native/metal/MetalDevice.h' 2025-08-14T20:48:15.7482880Z adding 'torch/include/ATen/native/metal/MetalNeuronType.h' 2025-08-14T20:48:15.7484160Z adding 'torch/include/ATen/native/metal/MetalPrepackOpContext.h' 2025-08-14T20:48:15.7489900Z adding 'torch/include/ATen/native/metal/MetalShaders.h' 2025-08-14T20:48:15.7490760Z adding 'torch/include/ATen/native/metal/MetalTensorImpl.h' 2025-08-14T20:48:15.7491710Z adding 'torch/include/ATen/native/metal/MetalTensorImplStorage.h' 2025-08-14T20:48:15.7492830Z adding 'torch/include/ATen/native/metal/MetalTensorUtils.h' 2025-08-14T20:48:15.7494020Z adding 'torch/include/ATen/native/metal/mpscnn/MPSCNNClampOp.h' 2025-08-14T20:48:15.7494940Z adding 'torch/include/ATen/native/metal/mpscnn/MPSCNNConvOp.h' 2025-08-14T20:48:15.7495840Z adding 'torch/include/ATen/native/metal/mpscnn/MPSCNNFullyConnectedOp.h' 2025-08-14T20:48:15.7496690Z adding 'torch/include/ATen/native/metal/mpscnn/MPSCNNNeuronOp.h' 2025-08-14T20:48:15.7497510Z adding 'torch/include/ATen/native/metal/mpscnn/MPSCNNOp.h' 2025-08-14T20:48:15.7498810Z adding 'torch/include/ATen/native/metal/mpscnn/MPSCNNUtils.h' 2025-08-14T20:48:15.7499640Z adding 'torch/include/ATen/native/metal/mpscnn/MPSImage+Tensor.h' 2025-08-14T20:48:15.7500800Z adding 'torch/include/ATen/native/metal/mpscnn/MPSImageUtils.h' 2025-08-14T20:48:15.7501760Z adding 'torch/include/ATen/native/metal/mpscnn/MPSImageWrapper.h' 2025-08-14T20:48:15.7502990Z adding 'torch/include/ATen/native/metal/mpscnn/tests/MPSCNNTests.h' 2025-08-14T20:48:15.7503870Z adding 'torch/include/ATen/native/metal/mpscnn/tests/MetalOpTestRunner.h' 2025-08-14T20:48:15.7504890Z adding 'torch/include/ATen/native/metal/ops/MetalConvolution.h' 2025-08-14T20:48:15.7505700Z adding 'torch/include/ATen/native/metal/ops/MetalCopy.h' 2025-08-14T20:48:15.7507110Z adding 'torch/include/ATen/native/mkldnn/xpu/Conv.h' 2025-08-14T20:48:15.7508220Z adding 'torch/include/ATen/native/mkldnn/xpu/FusionUtils.h' 2025-08-14T20:48:15.7512240Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/Attr.h' 2025-08-14T20:48:15.7515650Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/DnnlExt.h' 2025-08-14T20:48:15.7516680Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/LRUCache.h' 2025-08-14T20:48:15.7518010Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/Utils.h' 2025-08-14T20:48:15.7519360Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/oneDNN.h' 2025-08-14T20:48:15.7520570Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/oneDNNContext.h' 2025-08-14T20:48:15.7521630Z adding 'torch/include/ATen/native/mps/Copy.h' 2025-08-14T20:48:15.7522700Z adding 'torch/include/ATen/native/mps/MPSGraphSequoiaOps.h' 2025-08-14T20:48:15.7523720Z adding 'torch/include/ATen/native/mps/MPSGraphSonomaOps.h' 2025-08-14T20:48:15.7525700Z adding 'torch/include/ATen/native/mps/MPSGraphVenturaOps.h' 2025-08-14T20:48:15.7527040Z adding 'torch/include/ATen/native/mps/MetalShaderLibrary.h' 2025-08-14T20:48:15.7531760Z adding 'torch/include/ATen/native/mps/OperationUtils.h' 2025-08-14T20:48:15.7532550Z adding 'torch/include/ATen/native/mps/TensorFactory.h' 2025-08-14T20:48:15.7533920Z adding 'torch/include/ATen/native/mps/kernels/Pooling.h' 2025-08-14T20:48:15.7534740Z adding 'torch/include/ATen/native/mps/kernels/UpSample.h' 2025-08-14T20:48:15.7535830Z adding 'torch/include/ATen/native/mps/operations/BinaryKernel.h' 2025-08-14T20:48:15.7536760Z adding 'torch/include/ATen/native/mps/operations/FusedAdamAmsgradKernelImpl.h' 2025-08-14T20:48:15.7537610Z adding 'torch/include/ATen/native/mps/operations/FusedAdamKernelImpl.h' 2025-08-14T20:48:15.7538480Z adding 'torch/include/ATen/native/mps/operations/FusedAdamWAmsgradKernelImpl.h' 2025-08-14T20:48:15.7539290Z adding 'torch/include/ATen/native/mps/operations/FusedAdamWKernelImpl.h' 2025-08-14T20:48:15.7542260Z adding 'torch/include/ATen/native/mps/operations/MultiTensorApply.h' 2025-08-14T20:48:15.7543120Z adding 'torch/include/ATen/native/mtia/EmptyTensor.h' 2025-08-14T20:48:15.7544230Z adding 'torch/include/ATen/native/nested/NestedTensorBinaryOps.h' 2025-08-14T20:48:15.7545380Z adding 'torch/include/ATen/native/nested/NestedTensorMath.h' 2025-08-14T20:48:15.7546600Z adding 'torch/include/ATen/native/nested/NestedTensorTransformerFunctions.h' 2025-08-14T20:48:15.7547510Z adding 'torch/include/ATen/native/nested/NestedTensorTransformerUtils.h' 2025-08-14T20:48:15.7551110Z adding 'torch/include/ATen/native/nested/NestedTensorUtils.h' 2025-08-14T20:48:15.7552310Z adding 'torch/include/ATen/native/quantized/AffineQuantizer.h' 2025-08-14T20:48:15.7553290Z adding 'torch/include/ATen/native/quantized/AffineQuantizerBase.h' 2025-08-14T20:48:15.7554300Z adding 'torch/include/ATen/native/quantized/ConvUtils.h' 2025-08-14T20:48:15.7555070Z adding 'torch/include/ATen/native/quantized/Copy.h' 2025-08-14T20:48:15.7556080Z adding 'torch/include/ATen/native/quantized/FakeQuantAffine.h' 2025-08-14T20:48:15.7556960Z adding 'torch/include/ATen/native/quantized/IndexKernel.h' 2025-08-14T20:48:15.7558120Z adding 'torch/include/ATen/native/quantized/PackedParams.h' 2025-08-14T20:48:15.7558910Z adding 'torch/include/ATen/native/quantized/library.h' 2025-08-14T20:48:15.7561420Z adding 'torch/include/ATen/native/quantized/cpu/ACLUtils.h' 2025-08-14T20:48:15.7562010Z adding 'torch/include/ATen/native/quantized/cpu/BinaryOps.h' 2025-08-14T20:48:15.7562950Z adding 'torch/include/ATen/native/quantized/cpu/EmbeddingPackedParams.h' 2025-08-14T20:48:15.7565840Z adding 'torch/include/ATen/native/quantized/cpu/OnednnUtils.h' 2025-08-14T20:48:15.7569130Z adding 'torch/include/ATen/native/quantized/cpu/QnnpackUtils.h' 2025-08-14T20:48:15.7571570Z adding 'torch/include/ATen/native/quantized/cpu/QuantUtils.h' 2025-08-14T20:48:15.7573060Z adding 'torch/include/ATen/native/quantized/cpu/QuantizedOps.h' 2025-08-14T20:48:15.7573870Z adding 'torch/include/ATen/native/quantized/cpu/RuyUtils.h' 2025-08-14T20:48:15.7576600Z adding 'torch/include/ATen/native/quantized/cpu/XnnpackUtils.h' 2025-08-14T20:48:15.7579170Z adding 'torch/include/ATen/native/quantized/cpu/conv_serialization.h' 2025-08-14T20:48:15.7581420Z adding 'torch/include/ATen/native/quantized/cpu/fbgemm_utils.h' 2025-08-14T20:48:15.7582010Z adding 'torch/include/ATen/native/quantized/cpu/init_qnnpack.h' 2025-08-14T20:48:15.7583070Z adding 'torch/include/ATen/native/quantized/cpu/qconv.h' 2025-08-14T20:48:15.7583920Z adding 'torch/include/ATen/native/quantized/cpu/qembeddingbag.h' 2025-08-14T20:48:15.7584750Z adding 'torch/include/ATen/native/quantized/cpu/qembeddingbag_prepack.h' 2025-08-14T20:48:15.7585730Z adding 'torch/include/ATen/native/quantized/cpu/qlinear.h' 2025-08-14T20:48:15.7588320Z adding 'torch/include/ATen/native/quantized/cudnn/utils.h' 2025-08-14T20:48:15.7589450Z adding 'torch/include/ATen/native/transformers/attention.h' 2025-08-14T20:48:15.7590640Z adding 'torch/include/ATen/native/transformers/sdp_utils.h' 2025-08-14T20:48:15.7594220Z adding 'torch/include/ATen/native/transformers/sdp_utils_cpp.h' 2025-08-14T20:48:15.7595200Z adding 'torch/include/ATen/native/transformers/cuda/sdp_utils.h' 2025-08-14T20:48:15.7597130Z adding 'torch/include/ATen/native/transformers/cuda/flash_attn/flash_api.h' 2025-08-14T20:48:15.7598020Z adding 'torch/include/ATen/native/transformers/cuda/flash_attn/static_switch.h' 2025-08-14T20:48:15.7600510Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/debug_utils.h' 2025-08-14T20:48:15.7602590Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm_kernel_utils.h' 2025-08-14T20:48:15.7620590Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernel_backward.h' 2025-08-14T20:48:15.7631970Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernel_forward.h' 2025-08-14T20:48:15.7633030Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/pytorch_utils.h' 2025-08-14T20:48:15.7637670Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue/epilogue_pipelined.h' 2025-08-14T20:48:15.7639750Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue/epilogue_rescale_output.h' 2025-08-14T20:48:15.7641230Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue/epilogue_thread_apply_logsumexp.h' 2025-08-14T20:48:15.7642640Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma.h' 2025-08-14T20:48:15.7644580Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_base.h' 2025-08-14T20:48:15.7649440Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_multistage.h' 2025-08-14T20:48:15.7652650Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_pipelined.h' 2025-08-14T20:48:15.7653950Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/find_default_mma.h' 2025-08-14T20:48:15.7656600Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/mma_accum_lambda_iterator.h' 2025-08-14T20:48:15.7668670Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/mma_from_smem.h' 2025-08-14T20:48:15.7670870Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/default_warp_iterator_from_smem.h' 2025-08-14T20:48:15.7674620Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/epilogue_predicated_tile_iterator.h' 2025-08-14T20:48:15.7675440Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/make_residual_last.h' 2025-08-14T20:48:15.7681900Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/predicated_tile_access_iterator_residual_last.h' 2025-08-14T20:48:15.7687690Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/predicated_tile_iterator_residual_last.h' 2025-08-14T20:48:15.7688640Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/transpose_warp_iterator.h' 2025-08-14T20:48:15.7691320Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/warp_iterator_from_smem.h' 2025-08-14T20:48:15.7698900Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernels/cutlassB.h' 2025-08-14T20:48:15.7701730Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernels/cutlassF.h' 2025-08-14T20:48:15.7703100Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/transform/tile_smem_loader.h' 2025-08-14T20:48:15.7704570Z adding 'torch/include/ATen/native/transformers/hip/aotriton_adapter.h' 2025-08-14T20:48:15.7707650Z adding 'torch/include/ATen/native/transformers/hip/flash_attn/flash_api.h' 2025-08-14T20:48:15.7708740Z adding 'torch/include/ATen/native/transformers/hip/flash_attn/ck/me_ck_api.h' 2025-08-14T20:48:15.7709740Z adding 'torch/include/ATen/native/utils/Factory.h' 2025-08-14T20:48:15.7710720Z adding 'torch/include/ATen/native/utils/ParamUtils.h' 2025-08-14T20:48:15.7711870Z adding 'torch/include/ATen/native/utils/ParamsHash.h' 2025-08-14T20:48:15.7770580Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d.h' 2025-08-14T20:48:15.7771400Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward.h' 2025-08-14T20:48:15.7772460Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.7773360Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_cpu_dispatch.h' 2025-08-14T20:48:15.7774220Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_cuda_dispatch.h' 2025-08-14T20:48:15.7775080Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_mps_dispatch.h' 2025-08-14T20:48:15.7775980Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_native.h' 2025-08-14T20:48:15.7776990Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_ops.h' 2025-08-14T20:48:15.7777980Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.7778810Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_cpu_dispatch.h' 2025-08-14T20:48:15.7779640Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_cuda_dispatch.h' 2025-08-14T20:48:15.7780460Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_mps_dispatch.h' 2025-08-14T20:48:15.7781330Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_native.h' 2025-08-14T20:48:15.7782320Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_ops.h' 2025-08-14T20:48:15.7783380Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d.h' 2025-08-14T20:48:15.7784330Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward.h' 2025-08-14T20:48:15.7785350Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.7786130Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_cpu_dispatch.h' 2025-08-14T20:48:15.7786950Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_cuda_dispatch.h' 2025-08-14T20:48:15.7787800Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_native.h' 2025-08-14T20:48:15.7788800Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_ops.h' 2025-08-14T20:48:15.7789740Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.7790500Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_cpu_dispatch.h' 2025-08-14T20:48:15.7791320Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_cuda_dispatch.h' 2025-08-14T20:48:15.7792170Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_native.h' 2025-08-14T20:48:15.7793150Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_ops.h' 2025-08-14T20:48:15.7794000Z adding 'torch/include/ATen/ops/_add_batch_dim.h' 2025-08-14T20:48:15.7794990Z adding 'torch/include/ATen/ops/_add_batch_dim_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.7795770Z adding 'torch/include/ATen/ops/_add_batch_dim_native.h' 2025-08-14T20:48:15.7796660Z adding 'torch/include/ATen/ops/_add_batch_dim_ops.h' 2025-08-14T20:48:15.7797670Z adding 'torch/include/ATen/ops/_add_relu.h' 2025-08-14T20:48:15.7798700Z adding 'torch/include/ATen/ops/_add_relu_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.7799580Z adding 'torch/include/ATen/ops/_add_relu_cpu_dispatch.h' 2025-08-14T20:48:15.7800450Z adding 'torch/include/ATen/ops/_add_relu_meta_dispatch.h' 2025-08-14T20:48:15.7801340Z adding 'torch/include/ATen/ops/_add_relu_native.h' 2025-08-14T20:48:15.7802480Z adding 'torch/include/ATen/ops/_add_relu_ops.h' 2025-08-14T20:48:15.7803470Z adding 'torch/include/ATen/ops/_addmm_activation.h' 2025-08-14T20:48:15.7804500Z adding 'torch/include/ATen/ops/_addmm_activation_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.7805290Z adding 'torch/include/ATen/ops/_addmm_activation_cpu_dispatch.h' 2025-08-14T20:48:15.7806180Z adding 'torch/include/ATen/ops/_addmm_activation_cuda_dispatch.h' 2025-08-14T20:48:15.7807020Z adding 'torch/include/ATen/ops/_addmm_activation_meta.h' 2025-08-14T20:48:15.7807890Z adding 'torch/include/ATen/ops/_addmm_activation_meta_dispatch.h' 2025-08-14T20:48:15.7808760Z adding 'torch/include/ATen/ops/_addmm_activation_native.h' 2025-08-14T20:48:15.7809740Z adding 'torch/include/ATen/ops/_addmm_activation_ops.h' 2025-08-14T20:48:15.7810690Z adding 'torch/include/ATen/ops/_aminmax.h' 2025-08-14T20:48:15.7811710Z adding 'torch/include/ATen/ops/_aminmax_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.7812500Z adding 'torch/include/ATen/ops/_aminmax_cpu_dispatch.h' 2025-08-14T20:48:15.7813350Z adding 'torch/include/ATen/ops/_aminmax_cuda_dispatch.h' 2025-08-14T20:48:15.7814200Z adding 'torch/include/ATen/ops/_aminmax_native.h' 2025-08-14T20:48:15.7815280Z adding 'torch/include/ATen/ops/_aminmax_ops.h' 2025-08-14T20:48:15.7816320Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale.h' 2025-08-14T20:48:15.7817340Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.7818150Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_cpu_dispatch.h' 2025-08-14T20:48:15.7818970Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_cuda_dispatch.h' 2025-08-14T20:48:15.7819790Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_mps_dispatch.h' 2025-08-14T20:48:15.7820680Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_native.h' 2025-08-14T20:48:15.7821720Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_ops.h' 2025-08-14T20:48:15.7822660Z adding 'torch/include/ATen/ops/_amp_update_scale.h' 2025-08-14T20:48:15.7823680Z adding 'torch/include/ATen/ops/_amp_update_scale_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.7824490Z adding 'torch/include/ATen/ops/_amp_update_scale_cpu_dispatch.h' 2025-08-14T20:48:15.7825310Z adding 'torch/include/ATen/ops/_amp_update_scale_cuda_dispatch.h' 2025-08-14T20:48:15.7826130Z adding 'torch/include/ATen/ops/_amp_update_scale_meta_dispatch.h' 2025-08-14T20:48:15.7826950Z adding 'torch/include/ATen/ops/_amp_update_scale_mps_dispatch.h' 2025-08-14T20:48:15.7827850Z adding 'torch/include/ATen/ops/_amp_update_scale_native.h' 2025-08-14T20:48:15.7828900Z adding 'torch/include/ATen/ops/_amp_update_scale_ops.h' 2025-08-14T20:48:15.7829760Z adding 'torch/include/ATen/ops/_assert_async.h' 2025-08-14T20:48:15.7830650Z adding 'torch/include/ATen/ops/_assert_async_cpu_dispatch.h' 2025-08-14T20:48:15.7831470Z adding 'torch/include/ATen/ops/_assert_async_cuda_dispatch.h' 2025-08-14T20:48:15.7832300Z adding 'torch/include/ATen/ops/_assert_async_native.h' 2025-08-14T20:48:15.7833230Z adding 'torch/include/ATen/ops/_assert_async_ops.h' 2025-08-14T20:48:15.7834110Z adding 'torch/include/ATen/ops/_assert_scalar.h' 2025-08-14T20:48:15.7835060Z adding 'torch/include/ATen/ops/_assert_scalar_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.7835830Z adding 'torch/include/ATen/ops/_assert_scalar_native.h' 2025-08-14T20:48:15.7836710Z adding 'torch/include/ATen/ops/_assert_scalar_ops.h' 2025-08-14T20:48:15.7837780Z adding 'torch/include/ATen/ops/_assert_tensor_metadata.h' 2025-08-14T20:48:15.7838800Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.7839660Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_meta_dispatch.h' 2025-08-14T20:48:15.7840540Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_native.h' 2025-08-14T20:48:15.7841490Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_ops.h' 2025-08-14T20:48:15.7842330Z adding 'torch/include/ATen/ops/_autocast_to_full_precision.h' 2025-08-14T20:48:15.7843310Z adding 'torch/include/ATen/ops/_autocast_to_full_precision_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.7844050Z adding 'torch/include/ATen/ops/_autocast_to_full_precision_native.h' 2025-08-14T20:48:15.7844960Z adding 'torch/include/ATen/ops/_autocast_to_full_precision_ops.h' 2025-08-14T20:48:15.7845770Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision.h' 2025-08-14T20:48:15.7846750Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.7847520Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision_native.h' 2025-08-14T20:48:15.7848430Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision_ops.h' 2025-08-14T20:48:15.7849200Z adding 'torch/include/ATen/ops/_backward.h' 2025-08-14T20:48:15.7850180Z adding 'torch/include/ATen/ops/_backward_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.7852100Z adding 'torch/include/ATen/ops/_backward_native.h' 2025-08-14T20:48:15.7852760Z adding 'torch/include/ATen/ops/_backward_ops.h' 2025-08-14T20:48:15.7853720Z adding 'torch/include/ATen/ops/_batch_norm_impl_index.h' 2025-08-14T20:48:15.7854690Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward.h' 2025-08-14T20:48:15.7855720Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.7856540Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward_native.h' 2025-08-14T20:48:15.7857550Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward_ops.h' 2025-08-14T20:48:15.7858550Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.7859360Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_native.h' 2025-08-14T20:48:15.7860320Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_ops.h' 2025-08-14T20:48:15.7861320Z adding 'torch/include/ATen/ops/_batch_norm_no_update.h' 2025-08-14T20:48:15.7862360Z adding 'torch/include/ATen/ops/_batch_norm_no_update_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.7863200Z adding 'torch/include/ATen/ops/_batch_norm_no_update_native.h' 2025-08-14T20:48:15.7864280Z adding 'torch/include/ATen/ops/_batch_norm_no_update_ops.h' 2025-08-14T20:48:15.7865340Z adding 'torch/include/ATen/ops/_batch_norm_with_update.h' 2025-08-14T20:48:15.7866350Z adding 'torch/include/ATen/ops/_batch_norm_with_update_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.7867300Z adding 'torch/include/ATen/ops/_batch_norm_with_update_cpu_dispatch.h' 2025-08-14T20:48:15.7868130Z adding 'torch/include/ATen/ops/_batch_norm_with_update_cuda_dispatch.h' 2025-08-14T20:48:15.7869000Z adding 'torch/include/ATen/ops/_batch_norm_with_update_mps_dispatch.h' 2025-08-14T20:48:15.7869970Z adding 'torch/include/ATen/ops/_batch_norm_with_update_native.h' 2025-08-14T20:48:15.7871150Z adding 'torch/include/ATen/ops/_batch_norm_with_update_ops.h' 2025-08-14T20:48:15.7872000Z adding 'torch/include/ATen/ops/_cast_Byte.h' 2025-08-14T20:48:15.7872970Z adding 'torch/include/ATen/ops/_cast_Byte_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.7873730Z adding 'torch/include/ATen/ops/_cast_Byte_native.h' 2025-08-14T20:48:15.7874620Z adding 'torch/include/ATen/ops/_cast_Byte_ops.h' 2025-08-14T20:48:15.7880390Z adding 'torch/include/ATen/ops/_cast_Char.h' 2025-08-14T20:48:15.7880700Z adding 'torch/include/ATen/ops/_cast_Char_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.7880840Z adding 'torch/include/ATen/ops/_cast_Char_native.h' 2025-08-14T20:48:15.7880920Z adding 'torch/include/ATen/ops/_cast_Char_ops.h' 2025-08-14T20:48:15.7880990Z adding 'torch/include/ATen/ops/_cast_Double.h' 2025-08-14T20:48:15.7881160Z adding 'torch/include/ATen/ops/_cast_Double_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.7881280Z adding 'torch/include/ATen/ops/_cast_Double_native.h' 2025-08-14T20:48:15.7881370Z adding 'torch/include/ATen/ops/_cast_Double_ops.h' 2025-08-14T20:48:15.7882160Z adding 'torch/include/ATen/ops/_cast_Float.h' 2025-08-14T20:48:15.7883100Z adding 'torch/include/ATen/ops/_cast_Float_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.7883840Z adding 'torch/include/ATen/ops/_cast_Float_native.h' 2025-08-14T20:48:15.7884700Z adding 'torch/include/ATen/ops/_cast_Float_ops.h' 2025-08-14T20:48:15.7885540Z adding 'torch/include/ATen/ops/_cast_Half.h' 2025-08-14T20:48:15.7886520Z adding 'torch/include/ATen/ops/_cast_Half_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.7887220Z adding 'torch/include/ATen/ops/_cast_Half_native.h' 2025-08-14T20:48:15.7888100Z adding 'torch/include/ATen/ops/_cast_Half_ops.h' 2025-08-14T20:48:15.7888940Z adding 'torch/include/ATen/ops/_cast_Int.h' 2025-08-14T20:48:15.7889900Z adding 'torch/include/ATen/ops/_cast_Int_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.7890630Z adding 'torch/include/ATen/ops/_cast_Int_native.h' 2025-08-14T20:48:15.7891510Z adding 'torch/include/ATen/ops/_cast_Int_ops.h' 2025-08-14T20:48:15.7892340Z adding 'torch/include/ATen/ops/_cast_Long.h' 2025-08-14T20:48:15.7893280Z adding 'torch/include/ATen/ops/_cast_Long_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.7894020Z adding 'torch/include/ATen/ops/_cast_Long_native.h' 2025-08-14T20:48:15.7894880Z adding 'torch/include/ATen/ops/_cast_Long_ops.h' 2025-08-14T20:48:15.7895700Z adding 'torch/include/ATen/ops/_cast_Short.h' 2025-08-14T20:48:15.7896640Z adding 'torch/include/ATen/ops/_cast_Short_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.7897400Z adding 'torch/include/ATen/ops/_cast_Short_native.h' 2025-08-14T20:48:15.7898240Z adding 'torch/include/ATen/ops/_cast_Short_ops.h' 2025-08-14T20:48:15.7899160Z adding 'torch/include/ATen/ops/_cdist_backward.h' 2025-08-14T20:48:15.7900130Z adding 'torch/include/ATen/ops/_cdist_backward_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.7900950Z adding 'torch/include/ATen/ops/_cdist_backward_cpu_dispatch.h' 2025-08-14T20:48:15.7901790Z adding 'torch/include/ATen/ops/_cdist_backward_cuda_dispatch.h' 2025-08-14T20:48:15.7902610Z adding 'torch/include/ATen/ops/_cdist_backward_native.h' 2025-08-14T20:48:15.7903600Z adding 'torch/include/ATen/ops/_cdist_backward_ops.h' 2025-08-14T20:48:15.7904510Z adding 'torch/include/ATen/ops/_cdist_forward.h' 2025-08-14T20:48:15.7905500Z adding 'torch/include/ATen/ops/_cdist_forward_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.7906280Z adding 'torch/include/ATen/ops/_cdist_forward_cpu_dispatch.h' 2025-08-14T20:48:15.7907100Z adding 'torch/include/ATen/ops/_cdist_forward_cuda_dispatch.h' 2025-08-14T20:48:15.7907950Z adding 'torch/include/ATen/ops/_cdist_forward_mps_dispatch.h' 2025-08-14T20:48:15.7908760Z adding 'torch/include/ATen/ops/_cdist_forward_native.h' 2025-08-14T20:48:15.7909710Z adding 'torch/include/ATen/ops/_cdist_forward_ops.h' 2025-08-14T20:48:15.7910620Z adding 'torch/include/ATen/ops/_cholesky_solve_helper.h' 2025-08-14T20:48:15.7911600Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.7912410Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_cpu_dispatch.h' 2025-08-14T20:48:15.7913220Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_cuda_dispatch.h' 2025-08-14T20:48:15.7914050Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_native.h' 2025-08-14T20:48:15.7915010Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_ops.h' 2025-08-14T20:48:15.7915890Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor.h' 2025-08-14T20:48:15.7916870Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.7917660Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor_native.h' 2025-08-14T20:48:15.7918570Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor_ops.h' 2025-08-14T20:48:15.7919440Z adding 'torch/include/ATen/ops/_chunk_cat.h' 2025-08-14T20:48:15.7920480Z adding 'torch/include/ATen/ops/_chunk_cat_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.7921260Z adding 'torch/include/ATen/ops/_chunk_cat_cuda_dispatch.h' 2025-08-14T20:48:15.7922100Z adding 'torch/include/ATen/ops/_chunk_cat_native.h' 2025-08-14T20:48:15.7923040Z adding 'torch/include/ATen/ops/_chunk_cat_ops.h' 2025-08-14T20:48:15.7923910Z adding 'torch/include/ATen/ops/_coalesce.h' 2025-08-14T20:48:15.7924880Z adding 'torch/include/ATen/ops/_coalesce_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.7925630Z adding 'torch/include/ATen/ops/_coalesce_native.h' 2025-08-14T20:48:15.7926570Z adding 'torch/include/ATen/ops/_coalesce_ops.h' 2025-08-14T20:48:15.7927460Z adding 'torch/include/ATen/ops/_coalesce_sparsemps_dispatch.h' 2025-08-14T20:48:15.7928280Z adding 'torch/include/ATen/ops/_coalesced.h' 2025-08-14T20:48:15.7929240Z adding 'torch/include/ATen/ops/_coalesced_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.7930040Z adding 'torch/include/ATen/ops/_coalesced_meta_dispatch.h' 2025-08-14T20:48:15.7930870Z adding 'torch/include/ATen/ops/_coalesced_native.h' 2025-08-14T20:48:15.7931830Z adding 'torch/include/ATen/ops/_coalesced_ops.h' 2025-08-14T20:48:15.7932750Z adding 'torch/include/ATen/ops/_coalesced_sparsemps_dispatch.h' 2025-08-14T20:48:15.7933670Z adding 'torch/include/ATen/ops/_compute_linear_combination.h' 2025-08-14T20:48:15.7934570Z adding 'torch/include/ATen/ops/_compute_linear_combination_cpu_dispatch.h' 2025-08-14T20:48:15.7935400Z adding 'torch/include/ATen/ops/_compute_linear_combination_cuda_dispatch.h' 2025-08-14T20:48:15.7936220Z adding 'torch/include/ATen/ops/_compute_linear_combination_native.h' 2025-08-14T20:48:15.7937160Z adding 'torch/include/ATen/ops/_compute_linear_combination_ops.h' 2025-08-14T20:48:15.7937970Z adding 'torch/include/ATen/ops/_conj.h' 2025-08-14T20:48:15.7938900Z adding 'torch/include/ATen/ops/_conj_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.7939700Z adding 'torch/include/ATen/ops/_conj_copy.h' 2025-08-14T20:48:15.7940660Z adding 'torch/include/ATen/ops/_conj_copy_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.7941550Z adding 'torch/include/ATen/ops/_conj_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.7942260Z adding 'torch/include/ATen/ops/_conj_copy_native.h' 2025-08-14T20:48:15.7943190Z adding 'torch/include/ATen/ops/_conj_copy_ops.h' 2025-08-14T20:48:15.7944000Z adding 'torch/include/ATen/ops/_conj_native.h' 2025-08-14T20:48:15.7944880Z adding 'torch/include/ATen/ops/_conj_ops.h' 2025-08-14T20:48:15.7945750Z adding 'torch/include/ATen/ops/_conj_physical.h' 2025-08-14T20:48:15.7946750Z adding 'torch/include/ATen/ops/_conj_physical_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.7947510Z adding 'torch/include/ATen/ops/_conj_physical_native.h' 2025-08-14T20:48:15.7948400Z adding 'torch/include/ATen/ops/_conj_physical_ops.h' 2025-08-14T20:48:15.7949620Z adding 'torch/include/ATen/ops/_conv_depthwise2d.h' 2025-08-14T20:48:15.7950640Z adding 'torch/include/ATen/ops/_conv_depthwise2d_cuda_dispatch.h' 2025-08-14T20:48:15.7951480Z adding 'torch/include/ATen/ops/_conv_depthwise2d_native.h' 2025-08-14T20:48:15.7952480Z adding 'torch/include/ATen/ops/_conv_depthwise2d_ops.h' 2025-08-14T20:48:15.7953440Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr.h' 2025-08-14T20:48:15.7954450Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.7955230Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_cpu_dispatch.h' 2025-08-14T20:48:15.7956070Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_cuda_dispatch.h' 2025-08-14T20:48:15.7956940Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_meta.h' 2025-08-14T20:48:15.7957790Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_meta_dispatch.h' 2025-08-14T20:48:15.7958640Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_native.h' 2025-08-14T20:48:15.7959650Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_ops.h' 2025-08-14T20:48:15.7960560Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo.h' 2025-08-14T20:48:15.7961570Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.7962360Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_cpu_dispatch.h' 2025-08-14T20:48:15.7963210Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_cuda_dispatch.h' 2025-08-14T20:48:15.7964050Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_meta.h' 2025-08-14T20:48:15.7964910Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_meta_dispatch.h' 2025-08-14T20:48:15.7965760Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_native.h' 2025-08-14T20:48:15.7966740Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_ops.h' 2025-08-14T20:48:15.7967580Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack.h' 2025-08-14T20:48:15.7968470Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_cuda_dispatch.h' 2025-08-14T20:48:15.7969340Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu.h' 2025-08-14T20:48:15.7970250Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_cpu_dispatch.h' 2025-08-14T20:48:15.7971020Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_native.h' 2025-08-14T20:48:15.7971950Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_ops.h' 2025-08-14T20:48:15.7972770Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_mps_dispatch.h' 2025-08-14T20:48:15.7973600Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_native.h' 2025-08-14T20:48:15.7974480Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_ops.h' 2025-08-14T20:48:15.7976060Z adding 'torch/include/ATen/ops/_convolution.h' 2025-08-14T20:48:15.7977070Z adding 'torch/include/ATen/ops/_convolution_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.7977980Z adding 'torch/include/ATen/ops/_convolution_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.7978990Z adding 'torch/include/ATen/ops/_convolution_double_backward.h' 2025-08-14T20:48:15.7980030Z adding 'torch/include/ATen/ops/_convolution_double_backward_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.7980820Z adding 'torch/include/ATen/ops/_convolution_double_backward_native.h' 2025-08-14T20:48:15.7981820Z adding 'torch/include/ATen/ops/_convolution_double_backward_ops.h' 2025-08-14T20:48:15.7982770Z adding 'torch/include/ATen/ops/_convolution_mode.h' 2025-08-14T20:48:15.7983770Z adding 'torch/include/ATen/ops/_convolution_mode_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.7984560Z adding 'torch/include/ATen/ops/_convolution_mode_native.h' 2025-08-14T20:48:15.7985470Z adding 'torch/include/ATen/ops/_convolution_mode_ops.h' 2025-08-14T20:48:15.7986360Z adding 'torch/include/ATen/ops/_convolution_native.h' 2025-08-14T20:48:15.7987500Z adding 'torch/include/ATen/ops/_convolution_ops.h' 2025-08-14T20:48:15.7988390Z adding 'torch/include/ATen/ops/_copy_from.h' 2025-08-14T20:48:15.7989360Z adding 'torch/include/ATen/ops/_copy_from_and_resize.h' 2025-08-14T20:48:15.7990270Z adding 'torch/include/ATen/ops/_copy_from_and_resize_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.7991100Z adding 'torch/include/ATen/ops/_copy_from_and_resize_mps_dispatch.h' 2025-08-14T20:48:15.7991880Z adding 'torch/include/ATen/ops/_copy_from_and_resize_native.h' 2025-08-14T20:48:15.7992830Z adding 'torch/include/ATen/ops/_copy_from_and_resize_ops.h' 2025-08-14T20:48:15.7993750Z adding 'torch/include/ATen/ops/_copy_from_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.7994570Z adding 'torch/include/ATen/ops/_copy_from_mps_dispatch.h' 2025-08-14T20:48:15.7995380Z adding 'torch/include/ATen/ops/_copy_from_native.h' 2025-08-14T20:48:15.7996340Z adding 'torch/include/ATen/ops/_copy_from_ops.h' 2025-08-14T20:48:15.7997200Z adding 'torch/include/ATen/ops/_cslt_compress.h' 2025-08-14T20:48:15.7998130Z adding 'torch/include/ATen/ops/_cslt_compress_cuda_dispatch.h' 2025-08-14T20:48:15.7998930Z adding 'torch/include/ATen/ops/_cslt_compress_native.h' 2025-08-14T20:48:15.7999800Z adding 'torch/include/ATen/ops/_cslt_compress_ops.h' 2025-08-14T20:48:15.8000720Z adding 'torch/include/ATen/ops/_cslt_sparse_mm.h' 2025-08-14T20:48:15.8001650Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_cuda_dispatch.h' 2025-08-14T20:48:15.8002490Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_native.h' 2025-08-14T20:48:15.8003430Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_ops.h' 2025-08-14T20:48:15.8004360Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search.h' 2025-08-14T20:48:15.8005290Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search_cuda_dispatch.h' 2025-08-14T20:48:15.8006160Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search_native.h' 2025-08-14T20:48:15.8007090Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search_ops.h' 2025-08-14T20:48:15.8008120Z adding 'torch/include/ATen/ops/_ctc_loss.h' 2025-08-14T20:48:15.8009180Z adding 'torch/include/ATen/ops/_ctc_loss_backward.h' 2025-08-14T20:48:15.8010190Z adding 'torch/include/ATen/ops/_ctc_loss_backward_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8011030Z adding 'torch/include/ATen/ops/_ctc_loss_backward_cpu_dispatch.h' 2025-08-14T20:48:15.8011880Z adding 'torch/include/ATen/ops/_ctc_loss_backward_cuda_dispatch.h' 2025-08-14T20:48:15.8012770Z adding 'torch/include/ATen/ops/_ctc_loss_backward_native.h' 2025-08-14T20:48:15.8013860Z adding 'torch/include/ATen/ops/_ctc_loss_backward_ops.h' 2025-08-14T20:48:15.8014860Z adding 'torch/include/ATen/ops/_ctc_loss_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8015690Z adding 'torch/include/ATen/ops/_ctc_loss_cpu_dispatch.h' 2025-08-14T20:48:15.8016520Z adding 'torch/include/ATen/ops/_ctc_loss_cuda_dispatch.h' 2025-08-14T20:48:15.8017390Z adding 'torch/include/ATen/ops/_ctc_loss_meta_dispatch.h' 2025-08-14T20:48:15.8018280Z adding 'torch/include/ATen/ops/_ctc_loss_native.h' 2025-08-14T20:48:15.8019410Z adding 'torch/include/ATen/ops/_ctc_loss_ops.h' 2025-08-14T20:48:15.8020550Z adding 'torch/include/ATen/ops/_cudnn_attention_backward.h' 2025-08-14T20:48:15.8021530Z adding 'torch/include/ATen/ops/_cudnn_attention_backward_cuda_dispatch.h' 2025-08-14T20:48:15.8022400Z adding 'torch/include/ATen/ops/_cudnn_attention_backward_native.h' 2025-08-14T20:48:15.8023420Z adding 'torch/include/ATen/ops/_cudnn_attention_backward_ops.h' 2025-08-14T20:48:15.8024540Z adding 'torch/include/ATen/ops/_cudnn_attention_forward.h' 2025-08-14T20:48:15.8025540Z adding 'torch/include/ATen/ops/_cudnn_attention_forward_cuda_dispatch.h' 2025-08-14T20:48:15.8026440Z adding 'torch/include/ATen/ops/_cudnn_attention_forward_native.h' 2025-08-14T20:48:15.8027420Z adding 'torch/include/ATen/ops/_cudnn_attention_forward_ops.h' 2025-08-14T20:48:15.8028450Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss.h' 2025-08-14T20:48:15.8029460Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8030300Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_cuda_dispatch.h' 2025-08-14T20:48:15.8031170Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_native.h' 2025-08-14T20:48:15.8032250Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_ops.h' 2025-08-14T20:48:15.8033280Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state.h' 2025-08-14T20:48:15.8034250Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8035110Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_cuda_dispatch.h' 2025-08-14T20:48:15.8035990Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_native.h' 2025-08-14T20:48:15.8036970Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_ops.h' 2025-08-14T20:48:15.8038850Z adding 'torch/include/ATen/ops/_cudnn_rnn.h' 2025-08-14T20:48:15.8040140Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward.h' 2025-08-14T20:48:15.8041370Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8042270Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_cuda_dispatch.h' 2025-08-14T20:48:15.8043200Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_native.h' 2025-08-14T20:48:15.8044420Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_ops.h' 2025-08-14T20:48:15.8045530Z adding 'torch/include/ATen/ops/_cudnn_rnn_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8046390Z adding 'torch/include/ATen/ops/_cudnn_rnn_cuda_dispatch.h' 2025-08-14T20:48:15.8047590Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight.h' 2025-08-14T20:48:15.8048660Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8049490Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_cuda_dispatch.h' 2025-08-14T20:48:15.8050340Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_native.h' 2025-08-14T20:48:15.8051370Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_ops.h' 2025-08-14T20:48:15.8052290Z adding 'torch/include/ATen/ops/_cudnn_rnn_native.h' 2025-08-14T20:48:15.8053420Z adding 'torch/include/ATen/ops/_cudnn_rnn_ops.h' 2025-08-14T20:48:15.8054310Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache.h' 2025-08-14T20:48:15.8055280Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.8056030Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache_native.h' 2025-08-14T20:48:15.8056920Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache_ops.h' 2025-08-14T20:48:15.8057790Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size.h' 2025-08-14T20:48:15.8058750Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.8059560Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size_native.h' 2025-08-14T20:48:15.8060510Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size_ops.h' 2025-08-14T20:48:15.8061380Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size.h' 2025-08-14T20:48:15.8062410Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.8081620Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size_native.h' 2025-08-14T20:48:15.8082740Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size_ops.h' 2025-08-14T20:48:15.8083620Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size.h' 2025-08-14T20:48:15.8084630Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.8085420Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size_native.h' 2025-08-14T20:48:15.8086420Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size_ops.h' 2025-08-14T20:48:15.8087200Z adding 'torch/include/ATen/ops/_cummax_helper.h' 2025-08-14T20:48:15.8088120Z adding 'torch/include/ATen/ops/_cummax_helper_cpu_dispatch.h' 2025-08-14T20:48:15.8088960Z adding 'torch/include/ATen/ops/_cummax_helper_cuda_dispatch.h' 2025-08-14T20:48:15.8089780Z adding 'torch/include/ATen/ops/_cummax_helper_mps_dispatch.h' 2025-08-14T20:48:15.8090600Z adding 'torch/include/ATen/ops/_cummax_helper_native.h' 2025-08-14T20:48:15.8091510Z adding 'torch/include/ATen/ops/_cummax_helper_ops.h' 2025-08-14T20:48:15.8092370Z adding 'torch/include/ATen/ops/_cummin_helper.h' 2025-08-14T20:48:15.8093260Z adding 'torch/include/ATen/ops/_cummin_helper_cpu_dispatch.h' 2025-08-14T20:48:15.8094100Z adding 'torch/include/ATen/ops/_cummin_helper_cuda_dispatch.h' 2025-08-14T20:48:15.8094920Z adding 'torch/include/ATen/ops/_cummin_helper_mps_dispatch.h' 2025-08-14T20:48:15.8095740Z adding 'torch/include/ATen/ops/_cummin_helper_native.h' 2025-08-14T20:48:15.8096660Z adding 'torch/include/ATen/ops/_cummin_helper_ops.h' 2025-08-14T20:48:15.8097540Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap.h' 2025-08-14T20:48:15.8098510Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.8099330Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap_native.h' 2025-08-14T20:48:15.8100170Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap_ops.h' 2025-08-14T20:48:15.8100950Z adding 'torch/include/ATen/ops/_dimI.h' 2025-08-14T20:48:15.8101800Z adding 'torch/include/ATen/ops/_dimI_native.h' 2025-08-14T20:48:15.8102680Z adding 'torch/include/ATen/ops/_dimI_ops.h' 2025-08-14T20:48:15.8103480Z adding 'torch/include/ATen/ops/_dimV.h' 2025-08-14T20:48:15.8104300Z adding 'torch/include/ATen/ops/_dimV_native.h' 2025-08-14T20:48:15.8105150Z adding 'torch/include/ATen/ops/_dimV_ops.h' 2025-08-14T20:48:15.8106040Z adding 'torch/include/ATen/ops/_dim_arange.h' 2025-08-14T20:48:15.8107020Z adding 'torch/include/ATen/ops/_dim_arange_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.8107800Z adding 'torch/include/ATen/ops/_dim_arange_native.h' 2025-08-14T20:48:15.8108690Z adding 'torch/include/ATen/ops/_dim_arange_ops.h' 2025-08-14T20:48:15.8109590Z adding 'torch/include/ATen/ops/_dirichlet_grad.h' 2025-08-14T20:48:15.8110600Z adding 'torch/include/ATen/ops/_dirichlet_grad_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8111380Z adding 'torch/include/ATen/ops/_dirichlet_grad_cpu_dispatch.h' 2025-08-14T20:48:15.8112200Z adding 'torch/include/ATen/ops/_dirichlet_grad_cuda_dispatch.h' 2025-08-14T20:48:15.8113040Z adding 'torch/include/ATen/ops/_dirichlet_grad_native.h' 2025-08-14T20:48:15.8114000Z adding 'torch/include/ATen/ops/_dirichlet_grad_ops.h' 2025-08-14T20:48:15.8114900Z adding 'torch/include/ATen/ops/_dyn_quant_matmul_4bit.h' 2025-08-14T20:48:15.8115810Z adding 'torch/include/ATen/ops/_dyn_quant_matmul_4bit_cpu_dispatch.h' 2025-08-14T20:48:15.8116620Z adding 'torch/include/ATen/ops/_dyn_quant_matmul_4bit_native.h' 2025-08-14T20:48:15.8117560Z adding 'torch/include/ATen/ops/_dyn_quant_matmul_4bit_ops.h' 2025-08-14T20:48:15.8118460Z adding 'torch/include/ATen/ops/_dyn_quant_pack_4bit_weight.h' 2025-08-14T20:48:15.8119410Z adding 'torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_cpu_dispatch.h' 2025-08-14T20:48:15.8120280Z adding 'torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_native.h' 2025-08-14T20:48:15.8121260Z adding 'torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_ops.h' 2025-08-14T20:48:15.8122520Z adding 'torch/include/ATen/ops/_efficient_attention_backward.h' 2025-08-14T20:48:15.8123580Z adding 'torch/include/ATen/ops/_efficient_attention_backward_cuda_dispatch.h' 2025-08-14T20:48:15.8124510Z adding 'torch/include/ATen/ops/_efficient_attention_backward_native.h' 2025-08-14T20:48:15.8125620Z adding 'torch/include/ATen/ops/_efficient_attention_backward_ops.h' 2025-08-14T20:48:15.8126830Z adding 'torch/include/ATen/ops/_efficient_attention_forward.h' 2025-08-14T20:48:15.8128000Z adding 'torch/include/ATen/ops/_efficient_attention_forward_cuda_dispatch.h' 2025-08-14T20:48:15.8128890Z adding 'torch/include/ATen/ops/_efficient_attention_forward_native.h' 2025-08-14T20:48:15.8129980Z adding 'torch/include/ATen/ops/_efficient_attention_forward_ops.h' 2025-08-14T20:48:15.8131210Z adding 'torch/include/ATen/ops/_efficientzerotensor.h' 2025-08-14T20:48:15.8132350Z adding 'torch/include/ATen/ops/_efficientzerotensor_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8133260Z adding 'torch/include/ATen/ops/_efficientzerotensor_cpu_dispatch.h' 2025-08-14T20:48:15.8134190Z adding 'torch/include/ATen/ops/_efficientzerotensor_cuda_dispatch.h' 2025-08-14T20:48:15.8135150Z adding 'torch/include/ATen/ops/_efficientzerotensor_meta_dispatch.h' 2025-08-14T20:48:15.8136000Z adding 'torch/include/ATen/ops/_efficientzerotensor_mps_dispatch.h' 2025-08-14T20:48:15.8136860Z adding 'torch/include/ATen/ops/_efficientzerotensor_native.h' 2025-08-14T20:48:15.8137850Z adding 'torch/include/ATen/ops/_efficientzerotensor_ops.h' 2025-08-14T20:48:15.8138880Z adding 'torch/include/ATen/ops/_embedding_bag.h' 2025-08-14T20:48:15.8139950Z adding 'torch/include/ATen/ops/_embedding_bag_backward.h' 2025-08-14T20:48:15.8140900Z adding 'torch/include/ATen/ops/_embedding_bag_backward_cpu_dispatch.h' 2025-08-14T20:48:15.8141810Z adding 'torch/include/ATen/ops/_embedding_bag_backward_cuda_dispatch.h' 2025-08-14T20:48:15.8142630Z adding 'torch/include/ATen/ops/_embedding_bag_backward_native.h' 2025-08-14T20:48:15.8143640Z adding 'torch/include/ATen/ops/_embedding_bag_backward_ops.h' 2025-08-14T20:48:15.8144650Z adding 'torch/include/ATen/ops/_embedding_bag_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8145480Z adding 'torch/include/ATen/ops/_embedding_bag_cpu_dispatch.h' 2025-08-14T20:48:15.8146350Z adding 'torch/include/ATen/ops/_embedding_bag_cuda_dispatch.h' 2025-08-14T20:48:15.8147670Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward.h' 2025-08-14T20:48:15.8148740Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8149590Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_cpu_dispatch.h' 2025-08-14T20:48:15.8150490Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_cuda_dispatch.h' 2025-08-14T20:48:15.8151380Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_native.h' 2025-08-14T20:48:15.8152450Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_ops.h' 2025-08-14T20:48:15.8153500Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only.h' 2025-08-14T20:48:15.8154560Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8155410Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_cpu_dispatch.h' 2025-08-14T20:48:15.8156270Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_cuda_dispatch.h' 2025-08-14T20:48:15.8157180Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_native.h' 2025-08-14T20:48:15.8158270Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_ops.h' 2025-08-14T20:48:15.8159150Z adding 'torch/include/ATen/ops/_embedding_bag_native.h' 2025-08-14T20:48:15.8160220Z adding 'torch/include/ATen/ops/_embedding_bag_ops.h' 2025-08-14T20:48:15.8161250Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward.h' 2025-08-14T20:48:15.8162270Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8163090Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_cpu_dispatch.h' 2025-08-14T20:48:15.8163940Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_cuda_dispatch.h' 2025-08-14T20:48:15.8164810Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_native.h' 2025-08-14T20:48:15.8165820Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_ops.h' 2025-08-14T20:48:15.8166820Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward.h' 2025-08-14T20:48:15.8167900Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.8168670Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward_native.h' 2025-08-14T20:48:15.8169640Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward_ops.h' 2025-08-14T20:48:15.8171000Z adding 'torch/include/ATen/ops/_empty_affine_quantized.h' 2025-08-14T20:48:15.8172050Z adding 'torch/include/ATen/ops/_empty_affine_quantized_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8172890Z adding 'torch/include/ATen/ops/_empty_affine_quantized_cpu_dispatch.h' 2025-08-14T20:48:15.8173780Z adding 'torch/include/ATen/ops/_empty_affine_quantized_native.h' 2025-08-14T20:48:15.8174820Z adding 'torch/include/ATen/ops/_empty_affine_quantized_ops.h' 2025-08-14T20:48:15.8176280Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized.h' 2025-08-14T20:48:15.8177330Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8178220Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_cpu_dispatch.h' 2025-08-14T20:48:15.8179120Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_native.h' 2025-08-14T20:48:15.8180220Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_ops.h' 2025-08-14T20:48:15.8181040Z adding 'torch/include/ATen/ops/_euclidean_dist.h' 2025-08-14T20:48:15.8182040Z adding 'torch/include/ATen/ops/_euclidean_dist_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8182790Z adding 'torch/include/ATen/ops/_euclidean_dist_native.h' 2025-08-14T20:48:15.8183720Z adding 'torch/include/ATen/ops/_euclidean_dist_ops.h' 2025-08-14T20:48:15.8184750Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine.h' 2025-08-14T20:48:15.8185700Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward.h' 2025-08-14T20:48:15.8186640Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_cpu_dispatch.h' 2025-08-14T20:48:15.8187500Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_cuda_dispatch.h' 2025-08-14T20:48:15.8188340Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_native.h' 2025-08-14T20:48:15.8189290Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_ops.h' 2025-08-14T20:48:15.8190270Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8191100Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_cpu_dispatch.h' 2025-08-14T20:48:15.8191930Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_cuda_dispatch.h' 2025-08-14T20:48:15.8192790Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_native.h' 2025-08-14T20:48:15.8193790Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_ops.h' 2025-08-14T20:48:15.8194750Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine.h' 2025-08-14T20:48:15.8195680Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward.h' 2025-08-14T20:48:15.8196610Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_cpu_dispatch.h' 2025-08-14T20:48:15.8197480Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_cuda_dispatch.h' 2025-08-14T20:48:15.8198330Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_native.h' 2025-08-14T20:48:15.8199290Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_ops.h' 2025-08-14T20:48:15.8200270Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8201100Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_cpu_dispatch.h' 2025-08-14T20:48:15.8201980Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_cuda_dispatch.h' 2025-08-14T20:48:15.8202780Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_native.h' 2025-08-14T20:48:15.8203780Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_ops.h' 2025-08-14T20:48:15.8204800Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams.h' 2025-08-14T20:48:15.8205830Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8206650Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cpu_dispatch.h' 2025-08-14T20:48:15.8207510Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cuda_dispatch.h' 2025-08-14T20:48:15.8208360Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_native.h' 2025-08-14T20:48:15.8209410Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_ops.h' 2025-08-14T20:48:15.8210340Z adding 'torch/include/ATen/ops/_fft_c2c.h' 2025-08-14T20:48:15.8211350Z adding 'torch/include/ATen/ops/_fft_c2c_cpu_dispatch.h' 2025-08-14T20:48:15.8212240Z adding 'torch/include/ATen/ops/_fft_c2c_cuda_dispatch.h' 2025-08-14T20:48:15.8213070Z adding 'torch/include/ATen/ops/_fft_c2c_mps_dispatch.h' 2025-08-14T20:48:15.8213950Z adding 'torch/include/ATen/ops/_fft_c2c_native.h' 2025-08-14T20:48:15.8215030Z adding 'torch/include/ATen/ops/_fft_c2c_ops.h' 2025-08-14T20:48:15.8216040Z adding 'torch/include/ATen/ops/_fft_c2r.h' 2025-08-14T20:48:15.8217030Z adding 'torch/include/ATen/ops/_fft_c2r_cpu_dispatch.h' 2025-08-14T20:48:15.8217970Z adding 'torch/include/ATen/ops/_fft_c2r_cuda_dispatch.h' 2025-08-14T20:48:15.8218890Z adding 'torch/include/ATen/ops/_fft_c2r_mps_dispatch.h' 2025-08-14T20:48:15.8219710Z adding 'torch/include/ATen/ops/_fft_c2r_native.h' 2025-08-14T20:48:15.8220680Z adding 'torch/include/ATen/ops/_fft_c2r_ops.h' 2025-08-14T20:48:15.8221640Z adding 'torch/include/ATen/ops/_fft_r2c.h' 2025-08-14T20:48:15.8222560Z adding 'torch/include/ATen/ops/_fft_r2c_cpu_dispatch.h' 2025-08-14T20:48:15.8223410Z adding 'torch/include/ATen/ops/_fft_r2c_cuda_dispatch.h' 2025-08-14T20:48:15.8224240Z adding 'torch/include/ATen/ops/_fft_r2c_mps_dispatch.h' 2025-08-14T20:48:15.8225110Z adding 'torch/include/ATen/ops/_fft_r2c_native.h' 2025-08-14T20:48:15.8226130Z adding 'torch/include/ATen/ops/_fft_r2c_ops.h' 2025-08-14T20:48:15.8227070Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask.h' 2025-08-14T20:48:15.8227990Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_cuda_dispatch.h' 2025-08-14T20:48:15.8228820Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_meta_dispatch.h' 2025-08-14T20:48:15.8229650Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_native.h' 2025-08-14T20:48:15.8230570Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_ops.h' 2025-08-14T20:48:15.8231680Z adding 'torch/include/ATen/ops/_flash_attention_backward.h' 2025-08-14T20:48:15.8232670Z adding 'torch/include/ATen/ops/_flash_attention_backward_cuda_dispatch.h' 2025-08-14T20:48:15.8233550Z adding 'torch/include/ATen/ops/_flash_attention_backward_native.h' 2025-08-14T20:48:15.8234560Z adding 'torch/include/ATen/ops/_flash_attention_backward_ops.h' 2025-08-14T20:48:15.8235700Z adding 'torch/include/ATen/ops/_flash_attention_forward.h' 2025-08-14T20:48:15.8236720Z adding 'torch/include/ATen/ops/_flash_attention_forward_cuda_dispatch.h' 2025-08-14T20:48:15.8237580Z adding 'torch/include/ATen/ops/_flash_attention_forward_native.h' 2025-08-14T20:48:15.8238640Z adding 'torch/include/ATen/ops/_flash_attention_forward_ops.h' 2025-08-14T20:48:15.8239510Z adding 'torch/include/ATen/ops/_foobar.h' 2025-08-14T20:48:15.8240490Z adding 'torch/include/ATen/ops/_foobar_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8241290Z adding 'torch/include/ATen/ops/_foobar_cpu_dispatch.h' 2025-08-14T20:48:15.8242150Z adding 'torch/include/ATen/ops/_foobar_native.h' 2025-08-14T20:48:15.8243090Z adding 'torch/include/ATen/ops/_foobar_ops.h' 2025-08-14T20:48:15.8243980Z adding 'torch/include/ATen/ops/_foreach_abs.h' 2025-08-14T20:48:15.8244970Z adding 'torch/include/ATen/ops/_foreach_abs_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8245790Z adding 'torch/include/ATen/ops/_foreach_abs_cuda_dispatch.h' 2025-08-14T20:48:15.8246610Z adding 'torch/include/ATen/ops/_foreach_abs_native.h' 2025-08-14T20:48:15.8247600Z adding 'torch/include/ATen/ops/_foreach_abs_ops.h' 2025-08-14T20:48:15.8248510Z adding 'torch/include/ATen/ops/_foreach_acos.h' 2025-08-14T20:48:15.8249510Z adding 'torch/include/ATen/ops/_foreach_acos_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8250320Z adding 'torch/include/ATen/ops/_foreach_acos_cuda_dispatch.h' 2025-08-14T20:48:15.8251140Z adding 'torch/include/ATen/ops/_foreach_acos_native.h' 2025-08-14T20:48:15.8252120Z adding 'torch/include/ATen/ops/_foreach_acos_ops.h' 2025-08-14T20:48:15.8253280Z adding 'torch/include/ATen/ops/_foreach_add.h' 2025-08-14T20:48:15.8254380Z adding 'torch/include/ATen/ops/_foreach_add_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8255230Z adding 'torch/include/ATen/ops/_foreach_add_cuda_dispatch.h' 2025-08-14T20:48:15.8256240Z adding 'torch/include/ATen/ops/_foreach_add_native.h' 2025-08-14T20:48:15.8257820Z adding 'torch/include/ATen/ops/_foreach_add_ops.h' 2025-08-14T20:48:15.8258830Z adding 'torch/include/ATen/ops/_foreach_addcdiv.h' 2025-08-14T20:48:15.8259930Z adding 'torch/include/ATen/ops/_foreach_addcdiv_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8260770Z adding 'torch/include/ATen/ops/_foreach_addcdiv_cuda_dispatch.h' 2025-08-14T20:48:15.8261750Z adding 'torch/include/ATen/ops/_foreach_addcdiv_native.h' 2025-08-14T20:48:15.8263100Z adding 'torch/include/ATen/ops/_foreach_addcdiv_ops.h' 2025-08-14T20:48:15.8264210Z adding 'torch/include/ATen/ops/_foreach_addcmul.h' 2025-08-14T20:48:15.8265280Z adding 'torch/include/ATen/ops/_foreach_addcmul_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8266140Z adding 'torch/include/ATen/ops/_foreach_addcmul_cuda_dispatch.h' 2025-08-14T20:48:15.8267130Z adding 'torch/include/ATen/ops/_foreach_addcmul_native.h' 2025-08-14T20:48:15.8268460Z adding 'torch/include/ATen/ops/_foreach_addcmul_ops.h' 2025-08-14T20:48:15.8269370Z adding 'torch/include/ATen/ops/_foreach_asin.h' 2025-08-14T20:48:15.8270330Z adding 'torch/include/ATen/ops/_foreach_asin_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8271120Z adding 'torch/include/ATen/ops/_foreach_asin_cuda_dispatch.h' 2025-08-14T20:48:15.8271950Z adding 'torch/include/ATen/ops/_foreach_asin_native.h' 2025-08-14T20:48:15.8272910Z adding 'torch/include/ATen/ops/_foreach_asin_ops.h' 2025-08-14T20:48:15.8273780Z adding 'torch/include/ATen/ops/_foreach_atan.h' 2025-08-14T20:48:15.8274740Z adding 'torch/include/ATen/ops/_foreach_atan_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8275510Z adding 'torch/include/ATen/ops/_foreach_atan_cuda_dispatch.h' 2025-08-14T20:48:15.8276340Z adding 'torch/include/ATen/ops/_foreach_atan_native.h' 2025-08-14T20:48:15.8277270Z adding 'torch/include/ATen/ops/_foreach_atan_ops.h' 2025-08-14T20:48:15.8278170Z adding 'torch/include/ATen/ops/_foreach_ceil.h' 2025-08-14T20:48:15.8279100Z adding 'torch/include/ATen/ops/_foreach_ceil_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8279910Z adding 'torch/include/ATen/ops/_foreach_ceil_cuda_dispatch.h' 2025-08-14T20:48:15.8280710Z adding 'torch/include/ATen/ops/_foreach_ceil_native.h' 2025-08-14T20:48:15.8281650Z adding 'torch/include/ATen/ops/_foreach_ceil_ops.h' 2025-08-14T20:48:15.8282720Z adding 'torch/include/ATen/ops/_foreach_clamp_max.h' 2025-08-14T20:48:15.8283770Z adding 'torch/include/ATen/ops/_foreach_clamp_max_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8284590Z adding 'torch/include/ATen/ops/_foreach_clamp_max_cuda_dispatch.h' 2025-08-14T20:48:15.8285520Z adding 'torch/include/ATen/ops/_foreach_clamp_max_native.h' 2025-08-14T20:48:15.8286770Z adding 'torch/include/ATen/ops/_foreach_clamp_max_ops.h' 2025-08-14T20:48:15.8287800Z adding 'torch/include/ATen/ops/_foreach_clamp_min.h' 2025-08-14T20:48:15.8288840Z adding 'torch/include/ATen/ops/_foreach_clamp_min_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8289660Z adding 'torch/include/ATen/ops/_foreach_clamp_min_cuda_dispatch.h' 2025-08-14T20:48:15.8290570Z adding 'torch/include/ATen/ops/_foreach_clamp_min_native.h' 2025-08-14T20:48:15.8291790Z adding 'torch/include/ATen/ops/_foreach_clamp_min_ops.h' 2025-08-14T20:48:15.8292710Z adding 'torch/include/ATen/ops/_foreach_copy.h' 2025-08-14T20:48:15.8293670Z adding 'torch/include/ATen/ops/_foreach_copy_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8294500Z adding 'torch/include/ATen/ops/_foreach_copy_cuda_dispatch.h' 2025-08-14T20:48:15.8295390Z adding 'torch/include/ATen/ops/_foreach_copy_native.h' 2025-08-14T20:48:15.8296380Z adding 'torch/include/ATen/ops/_foreach_copy_ops.h' 2025-08-14T20:48:15.8297260Z adding 'torch/include/ATen/ops/_foreach_cos.h' 2025-08-14T20:48:15.8298210Z adding 'torch/include/ATen/ops/_foreach_cos_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8299330Z adding 'torch/include/ATen/ops/_foreach_cos_cuda_dispatch.h' 2025-08-14T20:48:15.8300200Z adding 'torch/include/ATen/ops/_foreach_cos_native.h' 2025-08-14T20:48:15.8301090Z adding 'torch/include/ATen/ops/_foreach_cos_ops.h' 2025-08-14T20:48:15.8301990Z adding 'torch/include/ATen/ops/_foreach_cosh.h' 2025-08-14T20:48:15.8302910Z adding 'torch/include/ATen/ops/_foreach_cosh_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8303690Z adding 'torch/include/ATen/ops/_foreach_cosh_cuda_dispatch.h' 2025-08-14T20:48:15.8304500Z adding 'torch/include/ATen/ops/_foreach_cosh_native.h' 2025-08-14T20:48:15.8305420Z adding 'torch/include/ATen/ops/_foreach_cosh_ops.h' 2025-08-14T20:48:15.8306560Z adding 'torch/include/ATen/ops/_foreach_div.h' 2025-08-14T20:48:15.8307630Z adding 'torch/include/ATen/ops/_foreach_div_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8308470Z adding 'torch/include/ATen/ops/_foreach_div_cuda_dispatch.h' 2025-08-14T20:48:15.8309430Z adding 'torch/include/ATen/ops/_foreach_div_native.h' 2025-08-14T20:48:15.8310800Z adding 'torch/include/ATen/ops/_foreach_div_ops.h' 2025-08-14T20:48:15.8311800Z adding 'torch/include/ATen/ops/_foreach_erf.h' 2025-08-14T20:48:15.8312750Z adding 'torch/include/ATen/ops/_foreach_erf_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8313550Z adding 'torch/include/ATen/ops/_foreach_erf_cuda_dispatch.h' 2025-08-14T20:48:15.8314360Z adding 'torch/include/ATen/ops/_foreach_erf_native.h' 2025-08-14T20:48:15.8316350Z adding 'torch/include/ATen/ops/_foreach_erf_ops.h' 2025-08-14T20:48:15.8317220Z adding 'torch/include/ATen/ops/_foreach_erfc.h' 2025-08-14T20:48:15.8318140Z adding 'torch/include/ATen/ops/_foreach_erfc_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8318970Z adding 'torch/include/ATen/ops/_foreach_erfc_cuda_dispatch.h' 2025-08-14T20:48:15.8319800Z adding 'torch/include/ATen/ops/_foreach_erfc_native.h' 2025-08-14T20:48:15.8320750Z adding 'torch/include/ATen/ops/_foreach_erfc_ops.h' 2025-08-14T20:48:15.8321640Z adding 'torch/include/ATen/ops/_foreach_exp.h' 2025-08-14T20:48:15.8322580Z adding 'torch/include/ATen/ops/_foreach_exp_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8323360Z adding 'torch/include/ATen/ops/_foreach_exp_cuda_dispatch.h' 2025-08-14T20:48:15.8324180Z adding 'torch/include/ATen/ops/_foreach_exp_native.h' 2025-08-14T20:48:15.8325120Z adding 'torch/include/ATen/ops/_foreach_exp_ops.h' 2025-08-14T20:48:15.8325970Z adding 'torch/include/ATen/ops/_foreach_expm1.h' 2025-08-14T20:48:15.8326920Z adding 'torch/include/ATen/ops/_foreach_expm1_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8327730Z adding 'torch/include/ATen/ops/_foreach_expm1_cuda_dispatch.h' 2025-08-14T20:48:15.8328540Z adding 'torch/include/ATen/ops/_foreach_expm1_native.h' 2025-08-14T20:48:15.8329480Z adding 'torch/include/ATen/ops/_foreach_expm1_ops.h' 2025-08-14T20:48:15.8330360Z adding 'torch/include/ATen/ops/_foreach_floor.h' 2025-08-14T20:48:15.8331290Z adding 'torch/include/ATen/ops/_foreach_floor_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8332090Z adding 'torch/include/ATen/ops/_foreach_floor_cuda_dispatch.h' 2025-08-14T20:48:15.8332910Z adding 'torch/include/ATen/ops/_foreach_floor_native.h' 2025-08-14T20:48:15.8333840Z adding 'torch/include/ATen/ops/_foreach_floor_ops.h' 2025-08-14T20:48:15.8334690Z adding 'torch/include/ATen/ops/_foreach_frac.h' 2025-08-14T20:48:15.8335650Z adding 'torch/include/ATen/ops/_foreach_frac_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8336410Z adding 'torch/include/ATen/ops/_foreach_frac_cuda_dispatch.h' 2025-08-14T20:48:15.8337240Z adding 'torch/include/ATen/ops/_foreach_frac_native.h' 2025-08-14T20:48:15.8338160Z adding 'torch/include/ATen/ops/_foreach_frac_ops.h' 2025-08-14T20:48:15.8339230Z adding 'torch/include/ATen/ops/_foreach_lerp.h' 2025-08-14T20:48:15.8340300Z adding 'torch/include/ATen/ops/_foreach_lerp_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8341140Z adding 'torch/include/ATen/ops/_foreach_lerp_cuda_dispatch.h' 2025-08-14T20:48:15.8342080Z adding 'torch/include/ATen/ops/_foreach_lerp_native.h' 2025-08-14T20:48:15.8343320Z adding 'torch/include/ATen/ops/_foreach_lerp_ops.h' 2025-08-14T20:48:15.8344240Z adding 'torch/include/ATen/ops/_foreach_lgamma.h' 2025-08-14T20:48:15.8345170Z adding 'torch/include/ATen/ops/_foreach_lgamma_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8345970Z adding 'torch/include/ATen/ops/_foreach_lgamma_cuda_dispatch.h' 2025-08-14T20:48:15.8346780Z adding 'torch/include/ATen/ops/_foreach_lgamma_native.h' 2025-08-14T20:48:15.8347740Z adding 'torch/include/ATen/ops/_foreach_lgamma_ops.h' 2025-08-14T20:48:15.8348580Z adding 'torch/include/ATen/ops/_foreach_log.h' 2025-08-14T20:48:15.8349470Z adding 'torch/include/ATen/ops/_foreach_log10.h' 2025-08-14T20:48:15.8350430Z adding 'torch/include/ATen/ops/_foreach_log10_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8351240Z adding 'torch/include/ATen/ops/_foreach_log10_cuda_dispatch.h' 2025-08-14T20:48:15.8352040Z adding 'torch/include/ATen/ops/_foreach_log10_native.h' 2025-08-14T20:48:15.8352970Z adding 'torch/include/ATen/ops/_foreach_log10_ops.h' 2025-08-14T20:48:15.8353850Z adding 'torch/include/ATen/ops/_foreach_log1p.h' 2025-08-14T20:48:15.8354770Z adding 'torch/include/ATen/ops/_foreach_log1p_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8355570Z adding 'torch/include/ATen/ops/_foreach_log1p_cuda_dispatch.h' 2025-08-14T20:48:15.8356390Z adding 'torch/include/ATen/ops/_foreach_log1p_native.h' 2025-08-14T20:48:15.8357360Z adding 'torch/include/ATen/ops/_foreach_log1p_ops.h' 2025-08-14T20:48:15.8358210Z adding 'torch/include/ATen/ops/_foreach_log2.h' 2025-08-14T20:48:15.8359160Z adding 'torch/include/ATen/ops/_foreach_log2_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8359950Z adding 'torch/include/ATen/ops/_foreach_log2_cuda_dispatch.h' 2025-08-14T20:48:15.8360810Z adding 'torch/include/ATen/ops/_foreach_log2_native.h' 2025-08-14T20:48:15.8361710Z adding 'torch/include/ATen/ops/_foreach_log2_ops.h' 2025-08-14T20:48:15.8362670Z adding 'torch/include/ATen/ops/_foreach_log_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8363460Z adding 'torch/include/ATen/ops/_foreach_log_cuda_dispatch.h' 2025-08-14T20:48:15.8364290Z adding 'torch/include/ATen/ops/_foreach_log_native.h' 2025-08-14T20:48:15.8365240Z adding 'torch/include/ATen/ops/_foreach_log_ops.h' 2025-08-14T20:48:15.8366100Z adding 'torch/include/ATen/ops/_foreach_max.h' 2025-08-14T20:48:15.8367040Z adding 'torch/include/ATen/ops/_foreach_max_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8367840Z adding 'torch/include/ATen/ops/_foreach_max_cuda_dispatch.h' 2025-08-14T20:48:15.8368690Z adding 'torch/include/ATen/ops/_foreach_max_native.h' 2025-08-14T20:48:15.8369590Z adding 'torch/include/ATen/ops/_foreach_max_ops.h' 2025-08-14T20:48:15.8370670Z adding 'torch/include/ATen/ops/_foreach_maximum.h' 2025-08-14T20:48:15.8371790Z adding 'torch/include/ATen/ops/_foreach_maximum_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8372590Z adding 'torch/include/ATen/ops/_foreach_maximum_cuda_dispatch.h' 2025-08-14T20:48:15.8373510Z adding 'torch/include/ATen/ops/_foreach_maximum_native.h' 2025-08-14T20:48:15.8374740Z adding 'torch/include/ATen/ops/_foreach_maximum_ops.h' 2025-08-14T20:48:15.8375790Z adding 'torch/include/ATen/ops/_foreach_minimum.h' 2025-08-14T20:48:15.8376810Z adding 'torch/include/ATen/ops/_foreach_minimum_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8377640Z adding 'torch/include/ATen/ops/_foreach_minimum_cuda_dispatch.h' 2025-08-14T20:48:15.8378580Z adding 'torch/include/ATen/ops/_foreach_minimum_native.h' 2025-08-14T20:48:15.8379770Z adding 'torch/include/ATen/ops/_foreach_minimum_ops.h' 2025-08-14T20:48:15.8380890Z adding 'torch/include/ATen/ops/_foreach_mul.h' 2025-08-14T20:48:15.8381950Z adding 'torch/include/ATen/ops/_foreach_mul_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8382790Z adding 'torch/include/ATen/ops/_foreach_mul_cuda_dispatch.h' 2025-08-14T20:48:15.8383740Z adding 'torch/include/ATen/ops/_foreach_mul_native.h' 2025-08-14T20:48:15.8385060Z adding 'torch/include/ATen/ops/_foreach_mul_ops.h' 2025-08-14T20:48:15.8386010Z adding 'torch/include/ATen/ops/_foreach_neg.h' 2025-08-14T20:48:15.8386950Z adding 'torch/include/ATen/ops/_foreach_neg_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8387690Z adding 'torch/include/ATen/ops/_foreach_neg_cuda_dispatch.h' 2025-08-14T20:48:15.8388530Z adding 'torch/include/ATen/ops/_foreach_neg_native.h' 2025-08-14T20:48:15.8389450Z adding 'torch/include/ATen/ops/_foreach_neg_ops.h' 2025-08-14T20:48:15.8390400Z adding 'torch/include/ATen/ops/_foreach_norm.h' 2025-08-14T20:48:15.8391370Z adding 'torch/include/ATen/ops/_foreach_norm_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8392190Z adding 'torch/include/ATen/ops/_foreach_norm_cuda_dispatch.h' 2025-08-14T20:48:15.8393020Z adding 'torch/include/ATen/ops/_foreach_norm_native.h' 2025-08-14T20:48:15.8393970Z adding 'torch/include/ATen/ops/_foreach_norm_ops.h' 2025-08-14T20:48:15.8395010Z adding 'torch/include/ATen/ops/_foreach_pow.h' 2025-08-14T20:48:15.8396040Z adding 'torch/include/ATen/ops/_foreach_pow_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8396870Z adding 'torch/include/ATen/ops/_foreach_pow_cuda_dispatch.h' 2025-08-14T20:48:15.8397800Z adding 'torch/include/ATen/ops/_foreach_pow_native.h' 2025-08-14T20:48:15.8399030Z adding 'torch/include/ATen/ops/_foreach_pow_ops.h' 2025-08-14T20:48:15.8399950Z adding 'torch/include/ATen/ops/_foreach_reciprocal.h' 2025-08-14T20:48:15.8400920Z adding 'torch/include/ATen/ops/_foreach_reciprocal_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8401690Z adding 'torch/include/ATen/ops/_foreach_reciprocal_cuda_dispatch.h' 2025-08-14T20:48:15.8402530Z adding 'torch/include/ATen/ops/_foreach_reciprocal_native.h' 2025-08-14T20:48:15.8403460Z adding 'torch/include/ATen/ops/_foreach_reciprocal_ops.h' 2025-08-14T20:48:15.8404320Z adding 'torch/include/ATen/ops/_foreach_round.h' 2025-08-14T20:48:15.8405270Z adding 'torch/include/ATen/ops/_foreach_round_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8406060Z adding 'torch/include/ATen/ops/_foreach_round_cuda_dispatch.h' 2025-08-14T20:48:15.8406870Z adding 'torch/include/ATen/ops/_foreach_round_native.h' 2025-08-14T20:48:15.8407800Z adding 'torch/include/ATen/ops/_foreach_round_ops.h' 2025-08-14T20:48:15.8408670Z adding 'torch/include/ATen/ops/_foreach_rsqrt.h' 2025-08-14T20:48:15.8409620Z adding 'torch/include/ATen/ops/_foreach_rsqrt_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8410400Z adding 'torch/include/ATen/ops/_foreach_rsqrt_cuda_dispatch.h' 2025-08-14T20:48:15.8411240Z adding 'torch/include/ATen/ops/_foreach_rsqrt_native.h' 2025-08-14T20:48:15.8417100Z adding 'torch/include/ATen/ops/_foreach_rsqrt_ops.h' 2025-08-14T20:48:15.8417310Z adding 'torch/include/ATen/ops/_foreach_sigmoid.h' 2025-08-14T20:48:15.8417580Z adding 'torch/include/ATen/ops/_foreach_sigmoid_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8417710Z adding 'torch/include/ATen/ops/_foreach_sigmoid_cuda_dispatch.h' 2025-08-14T20:48:15.8417810Z adding 'torch/include/ATen/ops/_foreach_sigmoid_native.h' 2025-08-14T20:48:15.8417900Z adding 'torch/include/ATen/ops/_foreach_sigmoid_ops.h' 2025-08-14T20:48:15.8417980Z adding 'torch/include/ATen/ops/_foreach_sign.h' 2025-08-14T20:48:15.8418150Z adding 'torch/include/ATen/ops/_foreach_sign_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8418960Z adding 'torch/include/ATen/ops/_foreach_sign_cuda_dispatch.h' 2025-08-14T20:48:15.8419750Z adding 'torch/include/ATen/ops/_foreach_sign_native.h' 2025-08-14T20:48:15.8420680Z adding 'torch/include/ATen/ops/_foreach_sign_ops.h' 2025-08-14T20:48:15.8421520Z adding 'torch/include/ATen/ops/_foreach_sin.h' 2025-08-14T20:48:15.8422470Z adding 'torch/include/ATen/ops/_foreach_sin_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8423240Z adding 'torch/include/ATen/ops/_foreach_sin_cuda_dispatch.h' 2025-08-14T20:48:15.8424040Z adding 'torch/include/ATen/ops/_foreach_sin_native.h' 2025-08-14T20:48:15.8424970Z adding 'torch/include/ATen/ops/_foreach_sin_ops.h' 2025-08-14T20:48:15.8425830Z adding 'torch/include/ATen/ops/_foreach_sinh.h' 2025-08-14T20:48:15.8426800Z adding 'torch/include/ATen/ops/_foreach_sinh_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8427550Z adding 'torch/include/ATen/ops/_foreach_sinh_cuda_dispatch.h' 2025-08-14T20:48:15.8428360Z adding 'torch/include/ATen/ops/_foreach_sinh_native.h' 2025-08-14T20:48:15.8429300Z adding 'torch/include/ATen/ops/_foreach_sinh_ops.h' 2025-08-14T20:48:15.8430170Z adding 'torch/include/ATen/ops/_foreach_sqrt.h' 2025-08-14T20:48:15.8431110Z adding 'torch/include/ATen/ops/_foreach_sqrt_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8431910Z adding 'torch/include/ATen/ops/_foreach_sqrt_cuda_dispatch.h' 2025-08-14T20:48:15.8432730Z adding 'torch/include/ATen/ops/_foreach_sqrt_native.h' 2025-08-14T20:48:15.8433650Z adding 'torch/include/ATen/ops/_foreach_sqrt_ops.h' 2025-08-14T20:48:15.8434700Z adding 'torch/include/ATen/ops/_foreach_sub.h' 2025-08-14T20:48:15.8435720Z adding 'torch/include/ATen/ops/_foreach_sub_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8436550Z adding 'torch/include/ATen/ops/_foreach_sub_cuda_dispatch.h' 2025-08-14T20:48:15.8437480Z adding 'torch/include/ATen/ops/_foreach_sub_native.h' 2025-08-14T20:48:15.8438680Z adding 'torch/include/ATen/ops/_foreach_sub_ops.h' 2025-08-14T20:48:15.8439600Z adding 'torch/include/ATen/ops/_foreach_tan.h' 2025-08-14T20:48:15.8440560Z adding 'torch/include/ATen/ops/_foreach_tan_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8441340Z adding 'torch/include/ATen/ops/_foreach_tan_cuda_dispatch.h' 2025-08-14T20:48:15.8442160Z adding 'torch/include/ATen/ops/_foreach_tan_native.h' 2025-08-14T20:48:15.8443080Z adding 'torch/include/ATen/ops/_foreach_tan_ops.h' 2025-08-14T20:48:15.8443970Z adding 'torch/include/ATen/ops/_foreach_tanh.h' 2025-08-14T20:48:15.8444910Z adding 'torch/include/ATen/ops/_foreach_tanh_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8445690Z adding 'torch/include/ATen/ops/_foreach_tanh_cuda_dispatch.h' 2025-08-14T20:48:15.8446500Z adding 'torch/include/ATen/ops/_foreach_tanh_native.h' 2025-08-14T20:48:15.8447430Z adding 'torch/include/ATen/ops/_foreach_tanh_ops.h' 2025-08-14T20:48:15.8448300Z adding 'torch/include/ATen/ops/_foreach_trunc.h' 2025-08-14T20:48:15.8449260Z adding 'torch/include/ATen/ops/_foreach_trunc_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8450040Z adding 'torch/include/ATen/ops/_foreach_trunc_cuda_dispatch.h' 2025-08-14T20:48:15.8450860Z adding 'torch/include/ATen/ops/_foreach_trunc_native.h' 2025-08-14T20:48:15.8451770Z adding 'torch/include/ATen/ops/_foreach_trunc_ops.h' 2025-08-14T20:48:15.8452660Z adding 'torch/include/ATen/ops/_foreach_zero.h' 2025-08-14T20:48:15.8453600Z adding 'torch/include/ATen/ops/_foreach_zero_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8454430Z adding 'torch/include/ATen/ops/_foreach_zero_cuda_dispatch.h' 2025-08-14T20:48:15.8455230Z adding 'torch/include/ATen/ops/_foreach_zero_native.h' 2025-08-14T20:48:15.8456170Z adding 'torch/include/ATen/ops/_foreach_zero_ops.h' 2025-08-14T20:48:15.8457060Z adding 'torch/include/ATen/ops/_functional_assert_async.h' 2025-08-14T20:48:15.8457990Z adding 'torch/include/ATen/ops/_functional_assert_async_cpu_dispatch.h' 2025-08-14T20:48:15.8458800Z adding 'torch/include/ATen/ops/_functional_assert_async_native.h' 2025-08-14T20:48:15.8459710Z adding 'torch/include/ATen/ops/_functional_assert_async_ops.h' 2025-08-14T20:48:15.8460570Z adding 'torch/include/ATen/ops/_functional_assert_scalar.h' 2025-08-14T20:48:15.8461530Z adding 'torch/include/ATen/ops/_functional_assert_scalar_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8462310Z adding 'torch/include/ATen/ops/_functional_assert_scalar_native.h' 2025-08-14T20:48:15.8463200Z adding 'torch/include/ATen/ops/_functional_assert_scalar_ops.h' 2025-08-14T20:48:15.8464080Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range.h' 2025-08-14T20:48:15.8465060Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8465890Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size.h' 2025-08-14T20:48:15.8466840Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8467590Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size_native.h' 2025-08-14T20:48:15.8468510Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size_ops.h' 2025-08-14T20:48:15.8469350Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_native.h' 2025-08-14T20:48:15.8470260Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_ops.h' 2025-08-14T20:48:15.8471420Z adding 'torch/include/ATen/ops/_fused_adagrad.h' 2025-08-14T20:48:15.8472510Z adding 'torch/include/ATen/ops/_fused_adagrad_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8473360Z adding 'torch/include/ATen/ops/_fused_adagrad_cpu_dispatch.h' 2025-08-14T20:48:15.8474210Z adding 'torch/include/ATen/ops/_fused_adagrad_cuda_dispatch.h' 2025-08-14T20:48:15.8475170Z adding 'torch/include/ATen/ops/_fused_adagrad_native.h' 2025-08-14T20:48:15.8476590Z adding 'torch/include/ATen/ops/_fused_adagrad_ops.h' 2025-08-14T20:48:15.8477970Z adding 'torch/include/ATen/ops/_fused_adam.h' 2025-08-14T20:48:15.8479100Z adding 'torch/include/ATen/ops/_fused_adam_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8479960Z adding 'torch/include/ATen/ops/_fused_adam_cpu_dispatch.h' 2025-08-14T20:48:15.8480820Z adding 'torch/include/ATen/ops/_fused_adam_cuda_dispatch.h' 2025-08-14T20:48:15.8481670Z adding 'torch/include/ATen/ops/_fused_adam_mps_dispatch.h' 2025-08-14T20:48:15.8482690Z adding 'torch/include/ATen/ops/_fused_adam_native.h' 2025-08-14T20:48:15.8484280Z adding 'torch/include/ATen/ops/_fused_adam_ops.h' 2025-08-14T20:48:15.8485480Z adding 'torch/include/ATen/ops/_fused_adamw.h' 2025-08-14T20:48:15.8486570Z adding 'torch/include/ATen/ops/_fused_adamw_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8487390Z adding 'torch/include/ATen/ops/_fused_adamw_cpu_dispatch.h' 2025-08-14T20:48:15.8488250Z adding 'torch/include/ATen/ops/_fused_adamw_cuda_dispatch.h' 2025-08-14T20:48:15.8489110Z adding 'torch/include/ATen/ops/_fused_adamw_mps_dispatch.h' 2025-08-14T20:48:15.8490130Z adding 'torch/include/ATen/ops/_fused_adamw_native.h' 2025-08-14T20:48:15.8491720Z adding 'torch/include/ATen/ops/_fused_adamw_ops.h' 2025-08-14T20:48:15.8492530Z adding 'torch/include/ATen/ops/_fused_dropout.h' 2025-08-14T20:48:15.8493520Z adding 'torch/include/ATen/ops/_fused_dropout_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8494340Z adding 'torch/include/ATen/ops/_fused_dropout_cuda_dispatch.h' 2025-08-14T20:48:15.8495200Z adding 'torch/include/ATen/ops/_fused_dropout_native.h' 2025-08-14T20:48:15.8496190Z adding 'torch/include/ATen/ops/_fused_dropout_ops.h' 2025-08-14T20:48:15.8497380Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper.h' 2025-08-14T20:48:15.8498460Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8499320Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_cpu_dispatch.h' 2025-08-14T20:48:15.8500180Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_cuda_dispatch.h' 2025-08-14T20:48:15.8501120Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_native.h' 2025-08-14T20:48:15.8502360Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_ops.h' 2025-08-14T20:48:15.8503190Z adding 'torch/include/ATen/ops/_fused_rms_norm.h' 2025-08-14T20:48:15.8504130Z adding 'torch/include/ATen/ops/_fused_rms_norm_backward.h' 2025-08-14T20:48:15.8505050Z adding 'torch/include/ATen/ops/_fused_rms_norm_backward_cuda_dispatch.h' 2025-08-14T20:48:15.8505880Z adding 'torch/include/ATen/ops/_fused_rms_norm_backward_native.h' 2025-08-14T20:48:15.8506850Z adding 'torch/include/ATen/ops/_fused_rms_norm_backward_ops.h' 2025-08-14T20:48:15.8507800Z adding 'torch/include/ATen/ops/_fused_rms_norm_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.8508610Z adding 'torch/include/ATen/ops/_fused_rms_norm_cuda_dispatch.h' 2025-08-14T20:48:15.8509470Z adding 'torch/include/ATen/ops/_fused_rms_norm_mps_dispatch.h' 2025-08-14T20:48:15.8510300Z adding 'torch/include/ATen/ops/_fused_rms_norm_native.h' 2025-08-14T20:48:15.8511230Z adding 'torch/include/ATen/ops/_fused_rms_norm_ops.h' 2025-08-14T20:48:15.8512480Z adding 'torch/include/ATen/ops/_fused_sdp_choice.h' 2025-08-14T20:48:15.8513400Z adding 'torch/include/ATen/ops/_fused_sdp_choice_cpu_dispatch.h' 2025-08-14T20:48:15.8514240Z adding 'torch/include/ATen/ops/_fused_sdp_choice_cuda_dispatch.h' 2025-08-14T20:48:15.8515080Z adding 'torch/include/ATen/ops/_fused_sdp_choice_meta_dispatch.h' 2025-08-14T20:48:15.8515930Z adding 'torch/include/ATen/ops/_fused_sdp_choice_native.h' 2025-08-14T20:48:15.8516880Z adding 'torch/include/ATen/ops/_fused_sdp_choice_ops.h' 2025-08-14T20:48:15.8518090Z adding 'torch/include/ATen/ops/_fused_sgd.h' 2025-08-14T20:48:15.8519190Z adding 'torch/include/ATen/ops/_fused_sgd_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8520040Z adding 'torch/include/ATen/ops/_fused_sgd_cpu_dispatch.h' 2025-08-14T20:48:15.8520870Z adding 'torch/include/ATen/ops/_fused_sgd_cuda_dispatch.h' 2025-08-14T20:48:15.8521750Z adding 'torch/include/ATen/ops/_fused_sgd_mps_dispatch.h' 2025-08-14T20:48:15.8522750Z adding 'torch/include/ATen/ops/_fused_sgd_native.h' 2025-08-14T20:48:15.8524350Z adding 'torch/include/ATen/ops/_fused_sgd_ops.h' 2025-08-14T20:48:15.8525000Z adding 'torch/include/ATen/ops/_fw_primal.h' 2025-08-14T20:48:15.8525970Z adding 'torch/include/ATen/ops/_fw_primal_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8526770Z adding 'torch/include/ATen/ops/_fw_primal_copy.h' 2025-08-14T20:48:15.8527780Z adding 'torch/include/ATen/ops/_fw_primal_copy_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8528660Z adding 'torch/include/ATen/ops/_fw_primal_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.8529390Z adding 'torch/include/ATen/ops/_fw_primal_copy_native.h' 2025-08-14T20:48:15.8530310Z adding 'torch/include/ATen/ops/_fw_primal_copy_ops.h' 2025-08-14T20:48:15.8531140Z adding 'torch/include/ATen/ops/_fw_primal_native.h' 2025-08-14T20:48:15.8532030Z adding 'torch/include/ATen/ops/_fw_primal_ops.h' 2025-08-14T20:48:15.8532910Z adding 'torch/include/ATen/ops/_gather_sparse_backward.h' 2025-08-14T20:48:15.8533880Z adding 'torch/include/ATen/ops/_gather_sparse_backward_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.8534640Z adding 'torch/include/ATen/ops/_gather_sparse_backward_native.h' 2025-08-14T20:48:15.8535540Z adding 'torch/include/ATen/ops/_gather_sparse_backward_ops.h' 2025-08-14T20:48:15.8536480Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback.h' 2025-08-14T20:48:15.8537430Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward.h' 2025-08-14T20:48:15.8538390Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.8539170Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_native.h' 2025-08-14T20:48:15.8540100Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_ops.h' 2025-08-14T20:48:15.8541070Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8541850Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_native.h' 2025-08-14T20:48:15.8542820Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_ops.h' 2025-08-14T20:48:15.8543670Z adding 'torch/include/ATen/ops/_grouped_mm.h' 2025-08-14T20:48:15.8544550Z adding 'torch/include/ATen/ops/_grouped_mm_cuda_dispatch.h' 2025-08-14T20:48:15.8545380Z adding 'torch/include/ATen/ops/_grouped_mm_native.h' 2025-08-14T20:48:15.8546310Z adding 'torch/include/ATen/ops/_grouped_mm_ops.h' 2025-08-14T20:48:15.8547210Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type.h' 2025-08-14T20:48:15.8548180Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.8548960Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type_native.h' 2025-08-14T20:48:15.8549820Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type_ops.h' 2025-08-14T20:48:15.8550640Z adding 'torch/include/ATen/ops/_has_same_storage_numel.h' 2025-08-14T20:48:15.8551590Z adding 'torch/include/ATen/ops/_has_same_storage_numel_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8552340Z adding 'torch/include/ATen/ops/_has_same_storage_numel_native.h' 2025-08-14T20:48:15.8553240Z adding 'torch/include/ATen/ops/_has_same_storage_numel_ops.h' 2025-08-14T20:48:15.8554200Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges.h' 2025-08-14T20:48:15.8555190Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8556000Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_cpu_dispatch.h' 2025-08-14T20:48:15.8556840Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_mps_dispatch.h' 2025-08-14T20:48:15.8558010Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_native.h' 2025-08-14T20:48:15.8558720Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_ops.h' 2025-08-14T20:48:15.8559630Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts.h' 2025-08-14T20:48:15.8560620Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8561430Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_cpu_dispatch.h' 2025-08-14T20:48:15.8562250Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_mps_dispatch.h' 2025-08-14T20:48:15.8563090Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_native.h' 2025-08-14T20:48:15.8564080Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_ops.h' 2025-08-14T20:48:15.8565050Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors.h' 2025-08-14T20:48:15.8566020Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8566840Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_cpu_dispatch.h' 2025-08-14T20:48:15.8567670Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_mps_dispatch.h' 2025-08-14T20:48:15.8568510Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_native.h' 2025-08-14T20:48:15.8569500Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_ops.h' 2025-08-14T20:48:15.8570440Z adding 'torch/include/ATen/ops/_index_put_impl.h' 2025-08-14T20:48:15.8571440Z adding 'torch/include/ATen/ops/_index_put_impl_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8572260Z adding 'torch/include/ATen/ops/_index_put_impl_cpu_dispatch.h' 2025-08-14T20:48:15.8573110Z adding 'torch/include/ATen/ops/_index_put_impl_cuda_dispatch.h' 2025-08-14T20:48:15.8573950Z adding 'torch/include/ATen/ops/_index_put_impl_meta_dispatch.h' 2025-08-14T20:48:15.8574730Z adding 'torch/include/ATen/ops/_index_put_impl_mps_dispatch.h' 2025-08-14T20:48:15.8575610Z adding 'torch/include/ATen/ops/_index_put_impl_native.h' 2025-08-14T20:48:15.8576660Z adding 'torch/include/ATen/ops/_index_put_impl_ops.h' 2025-08-14T20:48:15.8577500Z adding 'torch/include/ATen/ops/_indices.h' 2025-08-14T20:48:15.8578410Z adding 'torch/include/ATen/ops/_indices_copy.h' 2025-08-14T20:48:15.8579370Z adding 'torch/include/ATen/ops/_indices_copy_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8580260Z adding 'torch/include/ATen/ops/_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.8581000Z adding 'torch/include/ATen/ops/_indices_copy_native.h' 2025-08-14T20:48:15.8581900Z adding 'torch/include/ATen/ops/_indices_copy_ops.h' 2025-08-14T20:48:15.8582750Z adding 'torch/include/ATen/ops/_indices_native.h' 2025-08-14T20:48:15.8583620Z adding 'torch/include/ATen/ops/_indices_ops.h' 2025-08-14T20:48:15.8584510Z adding 'torch/include/ATen/ops/_indices_sparsemps_dispatch.h' 2025-08-14T20:48:15.8585340Z adding 'torch/include/ATen/ops/_int_mm.h' 2025-08-14T20:48:15.8586270Z adding 'torch/include/ATen/ops/_int_mm_cpu_dispatch.h' 2025-08-14T20:48:15.8587120Z adding 'torch/include/ATen/ops/_int_mm_cuda_dispatch.h' 2025-08-14T20:48:15.8587940Z adding 'torch/include/ATen/ops/_int_mm_native.h' 2025-08-14T20:48:15.8588880Z adding 'torch/include/ATen/ops/_int_mm_ops.h' 2025-08-14T20:48:15.8589740Z adding 'torch/include/ATen/ops/_is_all_true.h' 2025-08-14T20:48:15.8590700Z adding 'torch/include/ATen/ops/_is_all_true_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8591440Z adding 'torch/include/ATen/ops/_is_all_true_native.h' 2025-08-14T20:48:15.8592320Z adding 'torch/include/ATen/ops/_is_all_true_ops.h' 2025-08-14T20:48:15.8593160Z adding 'torch/include/ATen/ops/_is_any_true.h' 2025-08-14T20:48:15.8594090Z adding 'torch/include/ATen/ops/_is_any_true_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8594850Z adding 'torch/include/ATen/ops/_is_any_true_native.h' 2025-08-14T20:48:15.8595700Z adding 'torch/include/ATen/ops/_is_any_true_ops.h' 2025-08-14T20:48:15.8596530Z adding 'torch/include/ATen/ops/_is_zerotensor.h' 2025-08-14T20:48:15.8597480Z adding 'torch/include/ATen/ops/_is_zerotensor_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.8598220Z adding 'torch/include/ATen/ops/_is_zerotensor_native.h' 2025-08-14T20:48:15.8599100Z adding 'torch/include/ATen/ops/_is_zerotensor_ops.h' 2025-08-14T20:48:15.8600080Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward.h' 2025-08-14T20:48:15.8601000Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_cpu_dispatch.h' 2025-08-14T20:48:15.8601860Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_cuda_dispatch.h' 2025-08-14T20:48:15.8602690Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_native.h' 2025-08-14T20:48:15.8603610Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_ops.h' 2025-08-14T20:48:15.8604390Z adding 'torch/include/ATen/ops/_lazy_clone.h' 2025-08-14T20:48:15.8605340Z adding 'torch/include/ATen/ops/_lazy_clone_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8606090Z adding 'torch/include/ATen/ops/_lazy_clone_native.h' 2025-08-14T20:48:15.8606980Z adding 'torch/include/ATen/ops/_lazy_clone_ops.h' 2025-08-14T20:48:15.8607830Z adding 'torch/include/ATen/ops/_linalg_check_errors.h' 2025-08-14T20:48:15.8608780Z adding 'torch/include/ATen/ops/_linalg_check_errors_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8609520Z adding 'torch/include/ATen/ops/_linalg_check_errors_native.h' 2025-08-14T20:48:15.8610400Z adding 'torch/include/ATen/ops/_linalg_check_errors_ops.h' 2025-08-14T20:48:15.8611290Z adding 'torch/include/ATen/ops/_linalg_det.h' 2025-08-14T20:48:15.8612280Z adding 'torch/include/ATen/ops/_linalg_det_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.8613080Z adding 'torch/include/ATen/ops/_linalg_det_cpu_dispatch.h' 2025-08-14T20:48:15.8613900Z adding 'torch/include/ATen/ops/_linalg_det_cuda_dispatch.h' 2025-08-14T20:48:15.8614720Z adding 'torch/include/ATen/ops/_linalg_det_meta.h' 2025-08-14T20:48:15.8615580Z adding 'torch/include/ATen/ops/_linalg_det_meta_dispatch.h' 2025-08-14T20:48:15.8616400Z adding 'torch/include/ATen/ops/_linalg_det_mps_dispatch.h' 2025-08-14T20:48:15.8617240Z adding 'torch/include/ATen/ops/_linalg_det_native.h' 2025-08-14T20:48:15.8618180Z adding 'torch/include/ATen/ops/_linalg_det_ops.h' 2025-08-14T20:48:15.8619120Z adding 'torch/include/ATen/ops/_linalg_eigh.h' 2025-08-14T20:48:15.8620140Z adding 'torch/include/ATen/ops/_linalg_eigh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.8620930Z adding 'torch/include/ATen/ops/_linalg_eigh_cpu_dispatch.h' 2025-08-14T20:48:15.8621780Z adding 'torch/include/ATen/ops/_linalg_eigh_cuda_dispatch.h' 2025-08-14T20:48:15.8622580Z adding 'torch/include/ATen/ops/_linalg_eigh_meta.h' 2025-08-14T20:48:15.8623460Z adding 'torch/include/ATen/ops/_linalg_eigh_meta_dispatch.h' 2025-08-14T20:48:15.8624280Z adding 'torch/include/ATen/ops/_linalg_eigh_native.h' 2025-08-14T20:48:15.8625270Z adding 'torch/include/ATen/ops/_linalg_eigh_ops.h' 2025-08-14T20:48:15.8626100Z adding 'torch/include/ATen/ops/_linalg_eigvals.h' 2025-08-14T20:48:15.8627040Z adding 'torch/include/ATen/ops/_linalg_eigvals_cpu_dispatch.h' 2025-08-14T20:48:15.8627820Z adding 'torch/include/ATen/ops/_linalg_eigvals_cuda_dispatch.h' 2025-08-14T20:48:15.8628640Z adding 'torch/include/ATen/ops/_linalg_eigvals_native.h' 2025-08-14T20:48:15.8629500Z adding 'torch/include/ATen/ops/_linalg_eigvals_ops.h' 2025-08-14T20:48:15.8630410Z adding 'torch/include/ATen/ops/_linalg_slogdet.h' 2025-08-14T20:48:15.8631410Z adding 'torch/include/ATen/ops/_linalg_slogdet_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.8632200Z adding 'torch/include/ATen/ops/_linalg_slogdet_cpu_dispatch.h' 2025-08-14T20:48:15.8633040Z adding 'torch/include/ATen/ops/_linalg_slogdet_cuda_dispatch.h' 2025-08-14T20:48:15.8633860Z adding 'torch/include/ATen/ops/_linalg_slogdet_meta.h' 2025-08-14T20:48:15.8634720Z adding 'torch/include/ATen/ops/_linalg_slogdet_meta_dispatch.h' 2025-08-14T20:48:15.8635610Z adding 'torch/include/ATen/ops/_linalg_slogdet_mps_dispatch.h' 2025-08-14T20:48:15.8636440Z adding 'torch/include/ATen/ops/_linalg_slogdet_native.h' 2025-08-14T20:48:15.8637390Z adding 'torch/include/ATen/ops/_linalg_slogdet_ops.h' 2025-08-14T20:48:15.8638350Z adding 'torch/include/ATen/ops/_linalg_solve_ex.h' 2025-08-14T20:48:15.8639370Z adding 'torch/include/ATen/ops/_linalg_solve_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.8640140Z adding 'torch/include/ATen/ops/_linalg_solve_ex_cpu_dispatch.h' 2025-08-14T20:48:15.8641000Z adding 'torch/include/ATen/ops/_linalg_solve_ex_cuda_dispatch.h' 2025-08-14T20:48:15.8641830Z adding 'torch/include/ATen/ops/_linalg_solve_ex_meta.h' 2025-08-14T20:48:15.8642700Z adding 'torch/include/ATen/ops/_linalg_solve_ex_meta_dispatch.h' 2025-08-14T20:48:15.8643550Z adding 'torch/include/ATen/ops/_linalg_solve_ex_mps_dispatch.h' 2025-08-14T20:48:15.8644410Z adding 'torch/include/ATen/ops/_linalg_solve_ex_native.h' 2025-08-14T20:48:15.8645400Z adding 'torch/include/ATen/ops/_linalg_solve_ex_ops.h' 2025-08-14T20:48:15.8646340Z adding 'torch/include/ATen/ops/_linalg_svd.h' 2025-08-14T20:48:15.8647360Z adding 'torch/include/ATen/ops/_linalg_svd_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.8648150Z adding 'torch/include/ATen/ops/_linalg_svd_cpu_dispatch.h' 2025-08-14T20:48:15.8649020Z adding 'torch/include/ATen/ops/_linalg_svd_cuda_dispatch.h' 2025-08-14T20:48:15.8649850Z adding 'torch/include/ATen/ops/_linalg_svd_meta.h' 2025-08-14T20:48:15.8650710Z adding 'torch/include/ATen/ops/_linalg_svd_meta_dispatch.h' 2025-08-14T20:48:15.8651540Z adding 'torch/include/ATen/ops/_linalg_svd_native.h' 2025-08-14T20:48:15.8652550Z adding 'torch/include/ATen/ops/_linalg_svd_ops.h' 2025-08-14T20:48:15.8653420Z adding 'torch/include/ATen/ops/_local_scalar_dense.h' 2025-08-14T20:48:15.8654310Z adding 'torch/include/ATen/ops/_local_scalar_dense_cpu_dispatch.h' 2025-08-14T20:48:15.8655120Z adding 'torch/include/ATen/ops/_local_scalar_dense_cuda_dispatch.h' 2025-08-14T20:48:15.8655930Z adding 'torch/include/ATen/ops/_local_scalar_dense_mps_dispatch.h' 2025-08-14T20:48:15.8656740Z adding 'torch/include/ATen/ops/_local_scalar_dense_native.h' 2025-08-14T20:48:15.8657630Z adding 'torch/include/ATen/ops/_local_scalar_dense_ops.h' 2025-08-14T20:48:15.8658490Z adding 'torch/include/ATen/ops/_log_softmax.h' 2025-08-14T20:48:15.8659460Z adding 'torch/include/ATen/ops/_log_softmax_backward_data.h' 2025-08-14T20:48:15.8660490Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.8661290Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_cpu_dispatch.h' 2025-08-14T20:48:15.8662140Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_cuda_dispatch.h' 2025-08-14T20:48:15.8663000Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_meta.h' 2025-08-14T20:48:15.8663880Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_meta_dispatch.h' 2025-08-14T20:48:15.8664690Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_mps_dispatch.h' 2025-08-14T20:48:15.8665590Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_native.h' 2025-08-14T20:48:15.8666550Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_ops.h' 2025-08-14T20:48:15.8667530Z adding 'torch/include/ATen/ops/_log_softmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.8668300Z adding 'torch/include/ATen/ops/_log_softmax_cpu_dispatch.h' 2025-08-14T20:48:15.8669160Z adding 'torch/include/ATen/ops/_log_softmax_cuda_dispatch.h' 2025-08-14T20:48:15.8669970Z adding 'torch/include/ATen/ops/_log_softmax_meta.h' 2025-08-14T20:48:15.8670830Z adding 'torch/include/ATen/ops/_log_softmax_meta_dispatch.h' 2025-08-14T20:48:15.8671640Z adding 'torch/include/ATen/ops/_log_softmax_mps_dispatch.h' 2025-08-14T20:48:15.8672510Z adding 'torch/include/ATen/ops/_log_softmax_native.h' 2025-08-14T20:48:15.8673460Z adding 'torch/include/ATen/ops/_log_softmax_ops.h' 2025-08-14T20:48:15.8674350Z adding 'torch/include/ATen/ops/_logcumsumexp.h' 2025-08-14T20:48:15.8675230Z adding 'torch/include/ATen/ops/_logcumsumexp_cpu_dispatch.h' 2025-08-14T20:48:15.8676050Z adding 'torch/include/ATen/ops/_logcumsumexp_cuda_dispatch.h' 2025-08-14T20:48:15.8676890Z adding 'torch/include/ATen/ops/_logcumsumexp_mps_dispatch.h' 2025-08-14T20:48:15.8677720Z adding 'torch/include/ATen/ops/_logcumsumexp_native.h' 2025-08-14T20:48:15.8678640Z adding 'torch/include/ATen/ops/_logcumsumexp_ops.h' 2025-08-14T20:48:15.8679680Z adding 'torch/include/ATen/ops/_lstm_mps.h' 2025-08-14T20:48:15.8680710Z adding 'torch/include/ATen/ops/_lstm_mps_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8681530Z adding 'torch/include/ATen/ops/_lstm_mps_mps_dispatch.h' 2025-08-14T20:48:15.8682390Z adding 'torch/include/ATen/ops/_lstm_mps_native.h' 2025-08-14T20:48:15.8683480Z adding 'torch/include/ATen/ops/_lstm_mps_ops.h' 2025-08-14T20:48:15.8684350Z adding 'torch/include/ATen/ops/_lu_with_info.h' 2025-08-14T20:48:15.8685330Z adding 'torch/include/ATen/ops/_lu_with_info_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.8686080Z adding 'torch/include/ATen/ops/_lu_with_info_native.h' 2025-08-14T20:48:15.8687020Z adding 'torch/include/ATen/ops/_lu_with_info_ops.h' 2025-08-14T20:48:15.8687970Z adding 'torch/include/ATen/ops/_make_dep_token.h' 2025-08-14T20:48:15.8688900Z adding 'torch/include/ATen/ops/_make_dep_token_cpu_dispatch.h' 2025-08-14T20:48:15.8689750Z adding 'torch/include/ATen/ops/_make_dep_token_native.h' 2025-08-14T20:48:15.8690690Z adding 'torch/include/ATen/ops/_make_dep_token_ops.h' 2025-08-14T20:48:15.8691530Z adding 'torch/include/ATen/ops/_make_dual.h' 2025-08-14T20:48:15.8692490Z adding 'torch/include/ATen/ops/_make_dual_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8693370Z adding 'torch/include/ATen/ops/_make_dual_copy.h' 2025-08-14T20:48:15.8694320Z adding 'torch/include/ATen/ops/_make_dual_copy_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8695230Z adding 'torch/include/ATen/ops/_make_dual_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.8695980Z adding 'torch/include/ATen/ops/_make_dual_copy_native.h' 2025-08-14T20:48:15.8696920Z adding 'torch/include/ATen/ops/_make_dual_copy_ops.h' 2025-08-14T20:48:15.8697730Z adding 'torch/include/ATen/ops/_make_dual_native.h' 2025-08-14T20:48:15.8698630Z adding 'torch/include/ATen/ops/_make_dual_ops.h' 2025-08-14T20:48:15.8699610Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor.h' 2025-08-14T20:48:15.8700610Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8701420Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_cpu_dispatch.h' 2025-08-14T20:48:15.8702240Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_cuda_dispatch.h' 2025-08-14T20:48:15.8703090Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_native.h' 2025-08-14T20:48:15.8704050Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_ops.h' 2025-08-14T20:48:15.8705000Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor.h' 2025-08-14T20:48:15.8705960Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8706760Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_cpu_dispatch.h' 2025-08-14T20:48:15.8707570Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_cuda_dispatch.h' 2025-08-14T20:48:15.8708400Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_native.h' 2025-08-14T20:48:15.8709380Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_ops.h' 2025-08-14T20:48:15.8710200Z adding 'torch/include/ATen/ops/_masked_scale.h' 2025-08-14T20:48:15.8711180Z adding 'torch/include/ATen/ops/_masked_scale_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8711990Z adding 'torch/include/ATen/ops/_masked_scale_cuda_dispatch.h' 2025-08-14T20:48:15.8712800Z adding 'torch/include/ATen/ops/_masked_scale_native.h' 2025-08-14T20:48:15.8713750Z adding 'torch/include/ATen/ops/_masked_scale_ops.h' 2025-08-14T20:48:15.8714680Z adding 'torch/include/ATen/ops/_masked_softmax.h' 2025-08-14T20:48:15.8715640Z adding 'torch/include/ATen/ops/_masked_softmax_backward.h' 2025-08-14T20:48:15.8716990Z adding 'torch/include/ATen/ops/_masked_softmax_backward_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8717800Z adding 'torch/include/ATen/ops/_masked_softmax_backward_cpu_dispatch.h' 2025-08-14T20:48:15.8718630Z adding 'torch/include/ATen/ops/_masked_softmax_backward_cuda_dispatch.h' 2025-08-14T20:48:15.8719460Z adding 'torch/include/ATen/ops/_masked_softmax_backward_native.h' 2025-08-14T20:48:15.8720430Z adding 'torch/include/ATen/ops/_masked_softmax_backward_ops.h' 2025-08-14T20:48:15.8721390Z adding 'torch/include/ATen/ops/_masked_softmax_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8722190Z adding 'torch/include/ATen/ops/_masked_softmax_cpu_dispatch.h' 2025-08-14T20:48:15.8723010Z adding 'torch/include/ATen/ops/_masked_softmax_cuda_dispatch.h' 2025-08-14T20:48:15.8723840Z adding 'torch/include/ATen/ops/_masked_softmax_native.h' 2025-08-14T20:48:15.8724820Z adding 'torch/include/ATen/ops/_masked_softmax_ops.h' 2025-08-14T20:48:15.8725690Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear.h' 2025-08-14T20:48:15.8726620Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear_cuda_dispatch.h' 2025-08-14T20:48:15.8727450Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear_native.h' 2025-08-14T20:48:15.8728370Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear_ops.h' 2025-08-14T20:48:15.8729250Z adding 'torch/include/ATen/ops/_mkldnn_reshape.h' 2025-08-14T20:48:15.8730210Z adding 'torch/include/ATen/ops/_mkldnn_reshape_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8731000Z adding 'torch/include/ATen/ops/_mkldnn_reshape_native.h' 2025-08-14T20:48:15.8731910Z adding 'torch/include/ATen/ops/_mkldnn_reshape_ops.h' 2025-08-14T20:48:15.8732810Z adding 'torch/include/ATen/ops/_mkldnn_transpose.h' 2025-08-14T20:48:15.8733760Z adding 'torch/include/ATen/ops/_mkldnn_transpose_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8734550Z adding 'torch/include/ATen/ops/_mkldnn_transpose_meta_dispatch.h' 2025-08-14T20:48:15.8735360Z adding 'torch/include/ATen/ops/_mkldnn_transpose_native.h' 2025-08-14T20:48:15.8736340Z adding 'torch/include/ATen/ops/_mkldnn_transpose_ops.h' 2025-08-14T20:48:15.8737520Z adding 'torch/include/ATen/ops/_mps_convolution.h' 2025-08-14T20:48:15.8738560Z adding 'torch/include/ATen/ops/_mps_convolution_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8739370Z adding 'torch/include/ATen/ops/_mps_convolution_mps_dispatch.h' 2025-08-14T20:48:15.8740240Z adding 'torch/include/ATen/ops/_mps_convolution_native.h' 2025-08-14T20:48:15.8741230Z adding 'torch/include/ATen/ops/_mps_convolution_ops.h' 2025-08-14T20:48:15.8742450Z adding 'torch/include/ATen/ops/_mps_convolution_transpose.h' 2025-08-14T20:48:15.8743510Z adding 'torch/include/ATen/ops/_mps_convolution_transpose_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8744370Z adding 'torch/include/ATen/ops/_mps_convolution_transpose_mps_dispatch.h' 2025-08-14T20:48:15.8745200Z adding 'torch/include/ATen/ops/_mps_convolution_transpose_native.h' 2025-08-14T20:48:15.8746200Z adding 'torch/include/ATen/ops/_mps_convolution_transpose_ops.h' 2025-08-14T20:48:15.8747330Z adding 'torch/include/ATen/ops/_native_batch_norm_legit.h' 2025-08-14T20:48:15.8748340Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8749230Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_cpu_dispatch.h' 2025-08-14T20:48:15.8750150Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_cuda_dispatch.h' 2025-08-14T20:48:15.8751030Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_mps_dispatch.h' 2025-08-14T20:48:15.8752080Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_native.h' 2025-08-14T20:48:15.8753090Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training.h' 2025-08-14T20:48:15.8754110Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8754920Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training_native.h' 2025-08-14T20:48:15.8755990Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training_ops.h' 2025-08-14T20:48:15.8757260Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_ops.h' 2025-08-14T20:48:15.8758290Z adding 'torch/include/ATen/ops/_native_multi_head_attention.h' 2025-08-14T20:48:15.8759360Z adding 'torch/include/ATen/ops/_native_multi_head_attention_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8760220Z adding 'torch/include/ATen/ops/_native_multi_head_attention_cpu_dispatch.h' 2025-08-14T20:48:15.8761090Z adding 'torch/include/ATen/ops/_native_multi_head_attention_cuda_dispatch.h' 2025-08-14T20:48:15.8762000Z adding 'torch/include/ATen/ops/_native_multi_head_attention_native.h' 2025-08-14T20:48:15.8763120Z adding 'torch/include/ATen/ops/_native_multi_head_attention_ops.h' 2025-08-14T20:48:15.8763940Z adding 'torch/include/ATen/ops/_neg_view.h' 2025-08-14T20:48:15.8764910Z adding 'torch/include/ATen/ops/_neg_view_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8765710Z adding 'torch/include/ATen/ops/_neg_view_copy.h' 2025-08-14T20:48:15.8766680Z adding 'torch/include/ATen/ops/_neg_view_copy_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8767590Z adding 'torch/include/ATen/ops/_neg_view_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.8768310Z adding 'torch/include/ATen/ops/_neg_view_copy_native.h' 2025-08-14T20:48:15.8769250Z adding 'torch/include/ATen/ops/_neg_view_copy_ops.h' 2025-08-14T20:48:15.8770080Z adding 'torch/include/ATen/ops/_neg_view_native.h' 2025-08-14T20:48:15.8771010Z adding 'torch/include/ATen/ops/_neg_view_ops.h' 2025-08-14T20:48:15.8771930Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets.h' 2025-08-14T20:48:15.8772820Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_cpu_dispatch.h' 2025-08-14T20:48:15.8773660Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_cuda_dispatch.h' 2025-08-14T20:48:15.8774460Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_native.h' 2025-08-14T20:48:15.8775380Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_ops.h' 2025-08-14T20:48:15.8776240Z adding 'torch/include/ATen/ops/_nested_from_padded.h' 2025-08-14T20:48:15.8777220Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example.h' 2025-08-14T20:48:15.8778200Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8778970Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example_native.h' 2025-08-14T20:48:15.8779930Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example_ops.h' 2025-08-14T20:48:15.8780850Z adding 'torch/include/ATen/ops/_nested_from_padded_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8781690Z adding 'torch/include/ATen/ops/_nested_from_padded_cpu_dispatch.h' 2025-08-14T20:48:15.8782480Z adding 'torch/include/ATen/ops/_nested_from_padded_cuda_dispatch.h' 2025-08-14T20:48:15.8783310Z adding 'torch/include/ATen/ops/_nested_from_padded_native.h' 2025-08-14T20:48:15.8784260Z adding 'torch/include/ATen/ops/_nested_from_padded_ops.h' 2025-08-14T20:48:15.8785300Z adding 'torch/include/ATen/ops/_nested_from_padded_tensor.h' 2025-08-14T20:48:15.8786160Z adding 'torch/include/ATen/ops/_nested_from_padded_tensor_native.h' 2025-08-14T20:48:15.8787100Z adding 'torch/include/ATen/ops/_nested_from_padded_tensor_ops.h' 2025-08-14T20:48:15.8787930Z adding 'torch/include/ATen/ops/_nested_get_jagged_dummy.h' 2025-08-14T20:48:15.8788740Z adding 'torch/include/ATen/ops/_nested_get_jagged_dummy_native.h' 2025-08-14T20:48:15.8789640Z adding 'torch/include/ATen/ops/_nested_get_jagged_dummy_ops.h' 2025-08-14T20:48:15.8790440Z adding 'torch/include/ATen/ops/_nested_get_lengths.h' 2025-08-14T20:48:15.8791230Z adding 'torch/include/ATen/ops/_nested_get_lengths_native.h' 2025-08-14T20:48:15.8792110Z adding 'torch/include/ATen/ops/_nested_get_lengths_ops.h' 2025-08-14T20:48:15.8792950Z adding 'torch/include/ATen/ops/_nested_get_max_seqlen.h' 2025-08-14T20:48:15.8793730Z adding 'torch/include/ATen/ops/_nested_get_max_seqlen_native.h' 2025-08-14T20:48:15.8794600Z adding 'torch/include/ATen/ops/_nested_get_max_seqlen_ops.h' 2025-08-14T20:48:15.8795410Z adding 'torch/include/ATen/ops/_nested_get_min_seqlen.h' 2025-08-14T20:48:15.8796200Z adding 'torch/include/ATen/ops/_nested_get_min_seqlen_native.h' 2025-08-14T20:48:15.8797040Z adding 'torch/include/ATen/ops/_nested_get_min_seqlen_ops.h' 2025-08-14T20:48:15.8797850Z adding 'torch/include/ATen/ops/_nested_get_offsets.h' 2025-08-14T20:48:15.8798620Z adding 'torch/include/ATen/ops/_nested_get_offsets_native.h' 2025-08-14T20:48:15.8799600Z adding 'torch/include/ATen/ops/_nested_get_offsets_ops.h' 2025-08-14T20:48:15.8800430Z adding 'torch/include/ATen/ops/_nested_get_ragged_idx.h' 2025-08-14T20:48:15.8801200Z adding 'torch/include/ATen/ops/_nested_get_ragged_idx_native.h' 2025-08-14T20:48:15.8802070Z adding 'torch/include/ATen/ops/_nested_get_ragged_idx_ops.h' 2025-08-14T20:48:15.8802900Z adding 'torch/include/ATen/ops/_nested_get_values.h' 2025-08-14T20:48:15.8803780Z adding 'torch/include/ATen/ops/_nested_get_values_copy.h' 2025-08-14T20:48:15.8804760Z adding 'torch/include/ATen/ops/_nested_get_values_copy_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8805650Z adding 'torch/include/ATen/ops/_nested_get_values_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.8806370Z adding 'torch/include/ATen/ops/_nested_get_values_copy_native.h' 2025-08-14T20:48:15.8807290Z adding 'torch/include/ATen/ops/_nested_get_values_copy_ops.h' 2025-08-14T20:48:15.8808040Z adding 'torch/include/ATen/ops/_nested_get_values_native.h' 2025-08-14T20:48:15.8808920Z adding 'torch/include/ATen/ops/_nested_get_values_ops.h' 2025-08-14T20:48:15.8809830Z adding 'torch/include/ATen/ops/_nested_select_backward.h' 2025-08-14T20:48:15.8810710Z adding 'torch/include/ATen/ops/_nested_select_backward_native.h' 2025-08-14T20:48:15.8811600Z adding 'torch/include/ATen/ops/_nested_select_backward_ops.h' 2025-08-14T20:48:15.8812420Z adding 'torch/include/ATen/ops/_nested_sum_backward.h' 2025-08-14T20:48:15.8813270Z adding 'torch/include/ATen/ops/_nested_sum_backward_native.h' 2025-08-14T20:48:15.8814150Z adding 'torch/include/ATen/ops/_nested_sum_backward_ops.h' 2025-08-14T20:48:15.8815040Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask.h' 2025-08-14T20:48:15.8816040Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8816840Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_cpu_dispatch.h' 2025-08-14T20:48:15.8817650Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_cuda_dispatch.h' 2025-08-14T20:48:15.8818500Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned.h' 2025-08-14T20:48:15.8819400Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_cpu_dispatch.h' 2025-08-14T20:48:15.8820210Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_cuda_dispatch.h' 2025-08-14T20:48:15.8821010Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_native.h' 2025-08-14T20:48:15.8821920Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_ops.h' 2025-08-14T20:48:15.8822770Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_native.h' 2025-08-14T20:48:15.8823700Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_ops.h' 2025-08-14T20:48:15.8824690Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list.h' 2025-08-14T20:48:15.8825720Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8826550Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list_native.h' 2025-08-14T20:48:15.8827580Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list_ops.h' 2025-08-14T20:48:15.8828420Z adding 'torch/include/ATen/ops/_nested_tensor_size.h' 2025-08-14T20:48:15.8829380Z adding 'torch/include/ATen/ops/_nested_tensor_size_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8830160Z adding 'torch/include/ATen/ops/_nested_tensor_size_native.h' 2025-08-14T20:48:15.8831070Z adding 'torch/include/ATen/ops/_nested_tensor_size_ops.h' 2025-08-14T20:48:15.8831950Z adding 'torch/include/ATen/ops/_nested_tensor_softmax_with_shape.h' 2025-08-14T20:48:15.8832800Z adding 'torch/include/ATen/ops/_nested_tensor_softmax_with_shape_native.h' 2025-08-14T20:48:15.8833690Z adding 'torch/include/ATen/ops/_nested_tensor_softmax_with_shape_ops.h' 2025-08-14T20:48:15.8834540Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets.h' 2025-08-14T20:48:15.8835530Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8836280Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets_native.h' 2025-08-14T20:48:15.8837200Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets_ops.h' 2025-08-14T20:48:15.8838030Z adding 'torch/include/ATen/ops/_nested_tensor_strides.h' 2025-08-14T20:48:15.8839000Z adding 'torch/include/ATen/ops/_nested_tensor_strides_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8839770Z adding 'torch/include/ATen/ops/_nested_tensor_strides_native.h' 2025-08-14T20:48:15.8840690Z adding 'torch/include/ATen/ops/_nested_tensor_strides_ops.h' 2025-08-14T20:48:15.8841570Z adding 'torch/include/ATen/ops/_nested_view_from_buffer.h' 2025-08-14T20:48:15.8842490Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy.h' 2025-08-14T20:48:15.8843520Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8844390Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.8845140Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_native.h' 2025-08-14T20:48:15.8846100Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_ops.h' 2025-08-14T20:48:15.8846970Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_cpu_dispatch.h' 2025-08-14T20:48:15.8847800Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_cuda_dispatch.h' 2025-08-14T20:48:15.8848590Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_native.h' 2025-08-14T20:48:15.8849520Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_ops.h' 2025-08-14T20:48:15.8850420Z adding 'torch/include/ATen/ops/_nested_view_from_jagged.h' 2025-08-14T20:48:15.8851400Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy.h' 2025-08-14T20:48:15.8852430Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8853370Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.8854150Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_native.h' 2025-08-14T20:48:15.8855230Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_ops.h' 2025-08-14T20:48:15.8856030Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_native.h' 2025-08-14T20:48:15.8857980Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_ops.h' 2025-08-14T20:48:15.8858620Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta.h' 2025-08-14T20:48:15.8859640Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8860420Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta_native.h' 2025-08-14T20:48:15.8861370Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta_ops.h' 2025-08-14T20:48:15.8862170Z adding 'torch/include/ATen/ops/_nnpack_available.h' 2025-08-14T20:48:15.8863130Z adding 'torch/include/ATen/ops/_nnpack_available_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.8863910Z adding 'torch/include/ATen/ops/_nnpack_available_native.h' 2025-08-14T20:48:15.8864760Z adding 'torch/include/ATen/ops/_nnpack_available_ops.h' 2025-08-14T20:48:15.8865920Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution.h' 2025-08-14T20:48:15.8867000Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8867810Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution_native.h' 2025-08-14T20:48:15.8868780Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution_ops.h' 2025-08-14T20:48:15.8869580Z adding 'torch/include/ATen/ops/_nnz.h' 2025-08-14T20:48:15.8870410Z adding 'torch/include/ATen/ops/_nnz_native.h' 2025-08-14T20:48:15.8871300Z adding 'torch/include/ATen/ops/_nnz_ops.h' 2025-08-14T20:48:15.8872220Z adding 'torch/include/ATen/ops/_nnz_sparsecsrmps_dispatch.h' 2025-08-14T20:48:15.8873050Z adding 'torch/include/ATen/ops/_nnz_sparsemps_dispatch.h' 2025-08-14T20:48:15.8874000Z adding 'torch/include/ATen/ops/_pack_padded_sequence.h' 2025-08-14T20:48:15.8874990Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward.h' 2025-08-14T20:48:15.8876000Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.8876790Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward_native.h' 2025-08-14T20:48:15.8877720Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward_ops.h' 2025-08-14T20:48:15.8878670Z adding 'torch/include/ATen/ops/_pack_padded_sequence_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8879450Z adding 'torch/include/ATen/ops/_pack_padded_sequence_native.h' 2025-08-14T20:48:15.8880430Z adding 'torch/include/ATen/ops/_pack_padded_sequence_ops.h' 2025-08-14T20:48:15.8881300Z adding 'torch/include/ATen/ops/_pad_circular.h' 2025-08-14T20:48:15.8882310Z adding 'torch/include/ATen/ops/_pad_circular_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.8883040Z adding 'torch/include/ATen/ops/_pad_circular_native.h' 2025-08-14T20:48:15.8883920Z adding 'torch/include/ATen/ops/_pad_circular_ops.h' 2025-08-14T20:48:15.8884850Z adding 'torch/include/ATen/ops/_pad_enum.h' 2025-08-14T20:48:15.8885850Z adding 'torch/include/ATen/ops/_pad_enum_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.8886600Z adding 'torch/include/ATen/ops/_pad_enum_native.h' 2025-08-14T20:48:15.8887510Z adding 'torch/include/ATen/ops/_pad_enum_ops.h' 2025-08-14T20:48:15.8888410Z adding 'torch/include/ATen/ops/_pad_packed_sequence.h' 2025-08-14T20:48:15.8889380Z adding 'torch/include/ATen/ops/_pad_packed_sequence_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.8890150Z adding 'torch/include/ATen/ops/_pad_packed_sequence_native.h' 2025-08-14T20:48:15.8891050Z adding 'torch/include/ATen/ops/_pad_packed_sequence_ops.h' 2025-08-14T20:48:15.8892050Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward.h' 2025-08-14T20:48:15.8892980Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_cpu_dispatch.h' 2025-08-14T20:48:15.8893830Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_cuda_dispatch.h' 2025-08-14T20:48:15.8894700Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_native.h' 2025-08-14T20:48:15.8895590Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_ops.h' 2025-08-14T20:48:15.8896440Z adding 'torch/include/ATen/ops/_pdist_backward.h' 2025-08-14T20:48:15.8897410Z adding 'torch/include/ATen/ops/_pdist_backward_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8898220Z adding 'torch/include/ATen/ops/_pdist_backward_cpu_dispatch.h' 2025-08-14T20:48:15.8899020Z adding 'torch/include/ATen/ops/_pdist_backward_cuda_dispatch.h' 2025-08-14T20:48:15.8899830Z adding 'torch/include/ATen/ops/_pdist_backward_native.h' 2025-08-14T20:48:15.8900790Z adding 'torch/include/ATen/ops/_pdist_backward_ops.h' 2025-08-14T20:48:15.8901670Z adding 'torch/include/ATen/ops/_pdist_forward.h' 2025-08-14T20:48:15.8902620Z adding 'torch/include/ATen/ops/_pdist_forward_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8903420Z adding 'torch/include/ATen/ops/_pdist_forward_cpu_dispatch.h' 2025-08-14T20:48:15.8904230Z adding 'torch/include/ATen/ops/_pdist_forward_cuda_dispatch.h' 2025-08-14T20:48:15.8905040Z adding 'torch/include/ATen/ops/_pdist_forward_native.h' 2025-08-14T20:48:15.8905980Z adding 'torch/include/ATen/ops/_pdist_forward_ops.h' 2025-08-14T20:48:15.8906840Z adding 'torch/include/ATen/ops/_pin_memory.h' 2025-08-14T20:48:15.8907820Z adding 'torch/include/ATen/ops/_pin_memory_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8908620Z adding 'torch/include/ATen/ops/_pin_memory_native.h' 2025-08-14T20:48:15.8909550Z adding 'torch/include/ATen/ops/_pin_memory_ops.h' 2025-08-14T20:48:15.8910410Z adding 'torch/include/ATen/ops/_prelu_kernel.h' 2025-08-14T20:48:15.8911280Z adding 'torch/include/ATen/ops/_prelu_kernel_backward.h' 2025-08-14T20:48:15.8912170Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_cpu_dispatch.h' 2025-08-14T20:48:15.8913000Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_cuda_dispatch.h' 2025-08-14T20:48:15.8913810Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_mps_dispatch.h' 2025-08-14T20:48:15.8919440Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_native.h' 2025-08-14T20:48:15.8919840Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_ops.h' 2025-08-14T20:48:15.8919960Z adding 'torch/include/ATen/ops/_prelu_kernel_cpu_dispatch.h' 2025-08-14T20:48:15.8920070Z adding 'torch/include/ATen/ops/_prelu_kernel_cuda_dispatch.h' 2025-08-14T20:48:15.8920180Z adding 'torch/include/ATen/ops/_prelu_kernel_mps_dispatch.h' 2025-08-14T20:48:15.8920270Z adding 'torch/include/ATen/ops/_prelu_kernel_native.h' 2025-08-14T20:48:15.8920350Z adding 'torch/include/ATen/ops/_prelu_kernel_ops.h' 2025-08-14T20:48:15.8920420Z adding 'torch/include/ATen/ops/_print.h' 2025-08-14T20:48:15.8921410Z adding 'torch/include/ATen/ops/_print_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8922120Z adding 'torch/include/ATen/ops/_print_native.h' 2025-08-14T20:48:15.8923350Z adding 'torch/include/ATen/ops/_print_ops.h' 2025-08-14T20:48:15.8924240Z adding 'torch/include/ATen/ops/_propagate_xla_data.h' 2025-08-14T20:48:15.8925170Z adding 'torch/include/ATen/ops/_propagate_xla_data_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.8925930Z adding 'torch/include/ATen/ops/_propagate_xla_data_native.h' 2025-08-14T20:48:15.8926830Z adding 'torch/include/ATen/ops/_propagate_xla_data_ops.h' 2025-08-14T20:48:15.8927740Z adding 'torch/include/ATen/ops/_remove_batch_dim.h' 2025-08-14T20:48:15.8928750Z adding 'torch/include/ATen/ops/_remove_batch_dim_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.8929500Z adding 'torch/include/ATen/ops/_remove_batch_dim_native.h' 2025-08-14T20:48:15.8930410Z adding 'torch/include/ATen/ops/_remove_batch_dim_ops.h' 2025-08-14T20:48:15.8931330Z adding 'torch/include/ATen/ops/_reshape_alias.h' 2025-08-14T20:48:15.8932410Z adding 'torch/include/ATen/ops/_reshape_alias_copy.h' 2025-08-14T20:48:15.8933460Z adding 'torch/include/ATen/ops/_reshape_alias_copy_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8934440Z adding 'torch/include/ATen/ops/_reshape_alias_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.8935100Z adding 'torch/include/ATen/ops/_reshape_alias_copy_native.h' 2025-08-14T20:48:15.8936060Z adding 'torch/include/ATen/ops/_reshape_alias_copy_ops.h' 2025-08-14T20:48:15.8936990Z adding 'torch/include/ATen/ops/_reshape_alias_cpu_dispatch.h' 2025-08-14T20:48:15.8937880Z adding 'torch/include/ATen/ops/_reshape_alias_cuda_dispatch.h' 2025-08-14T20:48:15.8938690Z adding 'torch/include/ATen/ops/_reshape_alias_meta_dispatch.h' 2025-08-14T20:48:15.8939530Z adding 'torch/include/ATen/ops/_reshape_alias_mps_dispatch.h' 2025-08-14T20:48:15.8940400Z adding 'torch/include/ATen/ops/_reshape_alias_native.h' 2025-08-14T20:48:15.8941360Z adding 'torch/include/ATen/ops/_reshape_alias_ops.h' 2025-08-14T20:48:15.8942330Z adding 'torch/include/ATen/ops/_reshape_copy.h' 2025-08-14T20:48:15.8943280Z adding 'torch/include/ATen/ops/_reshape_copy_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8944010Z adding 'torch/include/ATen/ops/_reshape_copy_native.h' 2025-08-14T20:48:15.8944890Z adding 'torch/include/ATen/ops/_reshape_copy_ops.h' 2025-08-14T20:48:15.8945740Z adding 'torch/include/ATen/ops/_reshape_from_tensor.h' 2025-08-14T20:48:15.8946700Z adding 'torch/include/ATen/ops/_reshape_from_tensor_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.8947450Z adding 'torch/include/ATen/ops/_reshape_from_tensor_native.h' 2025-08-14T20:48:15.8948320Z adding 'torch/include/ATen/ops/_reshape_from_tensor_ops.h' 2025-08-14T20:48:15.8949410Z adding 'torch/include/ATen/ops/_resize_output.h' 2025-08-14T20:48:15.8950440Z adding 'torch/include/ATen/ops/_resize_output_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8951230Z adding 'torch/include/ATen/ops/_resize_output_meta_dispatch.h' 2025-08-14T20:48:15.8952070Z adding 'torch/include/ATen/ops/_resize_output_native.h' 2025-08-14T20:48:15.8953060Z adding 'torch/include/ATen/ops/_resize_output_ops.h' 2025-08-14T20:48:15.8953910Z adding 'torch/include/ATen/ops/_rowwise_prune.h' 2025-08-14T20:48:15.8954900Z adding 'torch/include/ATen/ops/_rowwise_prune_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.8955670Z adding 'torch/include/ATen/ops/_rowwise_prune_native.h' 2025-08-14T20:48:15.8956570Z adding 'torch/include/ATen/ops/_rowwise_prune_ops.h' 2025-08-14T20:48:15.8957450Z adding 'torch/include/ATen/ops/_safe_softmax.h' 2025-08-14T20:48:15.8958410Z adding 'torch/include/ATen/ops/_safe_softmax_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8959150Z adding 'torch/include/ATen/ops/_safe_softmax_native.h' 2025-08-14T20:48:15.8960030Z adding 'torch/include/ATen/ops/_safe_softmax_ops.h' 2025-08-14T20:48:15.8960950Z adding 'torch/include/ATen/ops/_sample_dirichlet.h' 2025-08-14T20:48:15.8961940Z adding 'torch/include/ATen/ops/_sample_dirichlet_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.8962720Z adding 'torch/include/ATen/ops/_sample_dirichlet_cpu_dispatch.h' 2025-08-14T20:48:15.8963540Z adding 'torch/include/ATen/ops/_sample_dirichlet_cuda_dispatch.h' 2025-08-14T20:48:15.8964370Z adding 'torch/include/ATen/ops/_sample_dirichlet_native.h' 2025-08-14T20:48:15.8965330Z adding 'torch/include/ATen/ops/_sample_dirichlet_ops.h' 2025-08-14T20:48:15.8966190Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16.h' 2025-08-14T20:48:15.8967170Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.8967920Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16_native.h' 2025-08-14T20:48:15.8968840Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16_ops.h' 2025-08-14T20:48:15.8969750Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math.h' 2025-08-14T20:48:15.8970790Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.8971640Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps.h' 2025-08-14T20:48:15.8972550Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps_mps_dispatch.h' 2025-08-14T20:48:15.8973440Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps_native.h' 2025-08-14T20:48:15.8974370Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps_ops.h' 2025-08-14T20:48:15.8975210Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_native.h' 2025-08-14T20:48:15.8976160Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_ops.h' 2025-08-14T20:48:15.8977130Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention.h' 2025-08-14T20:48:15.8978230Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward.h' 2025-08-14T20:48:15.8979230Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_cuda_dispatch.h' 2025-08-14T20:48:15.8980140Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_native.h' 2025-08-14T20:48:15.8981150Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_ops.h' 2025-08-14T20:48:15.8982070Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_cuda_dispatch.h' 2025-08-14T20:48:15.8982940Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_native.h' 2025-08-14T20:48:15.8983950Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_ops.h' 2025-08-14T20:48:15.8984850Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention.h' 2025-08-14T20:48:15.8985810Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward.h' 2025-08-14T20:48:15.8986760Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_cuda_dispatch.h' 2025-08-14T20:48:15.8987630Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_native.h' 2025-08-14T20:48:15.8988610Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_ops.h' 2025-08-14T20:48:15.8989510Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_cuda_dispatch.h' 2025-08-14T20:48:15.8990380Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_native.h' 2025-08-14T20:48:15.8991340Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_ops.h' 2025-08-14T20:48:15.8992220Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention.h' 2025-08-14T20:48:15.8993320Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward.h' 2025-08-14T20:48:15.8994300Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_cuda_dispatch.h' 2025-08-14T20:48:15.8995180Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_native.h' 2025-08-14T20:48:15.8996180Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_ops.h' 2025-08-14T20:48:15.8997120Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_cuda_dispatch.h' 2025-08-14T20:48:15.8997950Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu.h' 2025-08-14T20:48:15.8998890Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward.h' 2025-08-14T20:48:15.8999850Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_cpu_dispatch.h' 2025-08-14T20:48:15.9000680Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_native.h' 2025-08-14T20:48:15.9001650Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_ops.h' 2025-08-14T20:48:15.9002550Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_cpu_dispatch.h' 2025-08-14T20:48:15.9003370Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_native.h' 2025-08-14T20:48:15.9004320Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_ops.h' 2025-08-14T20:48:15.9005190Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_native.h' 2025-08-14T20:48:15.9006140Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_ops.h' 2025-08-14T20:48:15.9007130Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable.h' 2025-08-14T20:48:15.9008220Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward.h' 2025-08-14T20:48:15.9009320Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9010120Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_native.h' 2025-08-14T20:48:15.9011140Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_ops.h' 2025-08-14T20:48:15.9012130Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9012910Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_native.h' 2025-08-14T20:48:15.9013870Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_ops.h' 2025-08-14T20:48:15.9014710Z adding 'torch/include/ATen/ops/_scaled_grouped_mm.h' 2025-08-14T20:48:15.9015640Z adding 'torch/include/ATen/ops/_scaled_grouped_mm_cuda_dispatch.h' 2025-08-14T20:48:15.9016470Z adding 'torch/include/ATen/ops/_scaled_grouped_mm_native.h' 2025-08-14T20:48:15.9017420Z adding 'torch/include/ATen/ops/_scaled_grouped_mm_ops.h' 2025-08-14T20:48:15.9018400Z adding 'torch/include/ATen/ops/_scaled_mm.h' 2025-08-14T20:48:15.9019360Z adding 'torch/include/ATen/ops/_scaled_mm_cpu_dispatch.h' 2025-08-14T20:48:15.9020230Z adding 'torch/include/ATen/ops/_scaled_mm_cuda_dispatch.h' 2025-08-14T20:48:15.9021160Z adding 'torch/include/ATen/ops/_scaled_mm_native.h' 2025-08-14T20:48:15.9022180Z adding 'torch/include/ATen/ops/_scaled_mm_ops.h' 2025-08-14T20:48:15.9023170Z adding 'torch/include/ATen/ops/_segment_reduce_backward.h' 2025-08-14T20:48:15.9024190Z adding 'torch/include/ATen/ops/_segment_reduce_backward_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9025070Z adding 'torch/include/ATen/ops/_segment_reduce_backward_cpu_dispatch.h' 2025-08-14T20:48:15.9025910Z adding 'torch/include/ATen/ops/_segment_reduce_backward_cuda_dispatch.h' 2025-08-14T20:48:15.9026760Z adding 'torch/include/ATen/ops/_segment_reduce_backward_native.h' 2025-08-14T20:48:15.9027810Z adding 'torch/include/ATen/ops/_segment_reduce_backward_ops.h' 2025-08-14T20:48:15.9028600Z adding 'torch/include/ATen/ops/_shape_as_tensor.h' 2025-08-14T20:48:15.9029560Z adding 'torch/include/ATen/ops/_shape_as_tensor_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9030320Z adding 'torch/include/ATen/ops/_shape_as_tensor_native.h' 2025-08-14T20:48:15.9031190Z adding 'torch/include/ATen/ops/_shape_as_tensor_ops.h' 2025-08-14T20:48:15.9033160Z adding 'torch/include/ATen/ops/_slow_conv2d_backward.h' 2025-08-14T20:48:15.9033850Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9034750Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_cpu_dispatch.h' 2025-08-14T20:48:15.9035690Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_cuda_dispatch.h' 2025-08-14T20:48:15.9036580Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_native.h' 2025-08-14T20:48:15.9037710Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_ops.h' 2025-08-14T20:48:15.9038900Z adding 'torch/include/ATen/ops/_slow_conv2d_forward.h' 2025-08-14T20:48:15.9039900Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_cpu_dispatch.h' 2025-08-14T20:48:15.9040830Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_cuda_dispatch.h' 2025-08-14T20:48:15.9041670Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_native.h' 2025-08-14T20:48:15.9042670Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_ops.h' 2025-08-14T20:48:15.9043570Z adding 'torch/include/ATen/ops/_sobol_engine_draw.h' 2025-08-14T20:48:15.9044540Z adding 'torch/include/ATen/ops/_sobol_engine_draw_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9045330Z adding 'torch/include/ATen/ops/_sobol_engine_draw_native.h' 2025-08-14T20:48:15.9046270Z adding 'torch/include/ATen/ops/_sobol_engine_draw_ops.h' 2025-08-14T20:48:15.9047100Z adding 'torch/include/ATen/ops/_sobol_engine_ff.h' 2025-08-14T20:48:15.9048070Z adding 'torch/include/ATen/ops/_sobol_engine_ff_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9048810Z adding 'torch/include/ATen/ops/_sobol_engine_ff_native.h' 2025-08-14T20:48:15.9049740Z adding 'torch/include/ATen/ops/_sobol_engine_ff_ops.h' 2025-08-14T20:48:15.9050620Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state.h' 2025-08-14T20:48:15.9051580Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9052350Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state_native.h' 2025-08-14T20:48:15.9053240Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state_ops.h' 2025-08-14T20:48:15.9054060Z adding 'torch/include/ATen/ops/_sobol_engine_scramble.h' 2025-08-14T20:48:15.9055020Z adding 'torch/include/ATen/ops/_sobol_engine_scramble_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9055790Z adding 'torch/include/ATen/ops/_sobol_engine_scramble_native.h' 2025-08-14T20:48:15.9056690Z adding 'torch/include/ATen/ops/_sobol_engine_scramble_ops.h' 2025-08-14T20:48:15.9057530Z adding 'torch/include/ATen/ops/_softmax.h' 2025-08-14T20:48:15.9058470Z adding 'torch/include/ATen/ops/_softmax_backward_data.h' 2025-08-14T20:48:15.9059530Z adding 'torch/include/ATen/ops/_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.9060270Z adding 'torch/include/ATen/ops/_softmax_backward_data_cpu_dispatch.h' 2025-08-14T20:48:15.9061130Z adding 'torch/include/ATen/ops/_softmax_backward_data_cuda_dispatch.h' 2025-08-14T20:48:15.9062000Z adding 'torch/include/ATen/ops/_softmax_backward_data_meta.h' 2025-08-14T20:48:15.9062840Z adding 'torch/include/ATen/ops/_softmax_backward_data_meta_dispatch.h' 2025-08-14T20:48:15.9063650Z adding 'torch/include/ATen/ops/_softmax_backward_data_mps_dispatch.h' 2025-08-14T20:48:15.9064540Z adding 'torch/include/ATen/ops/_softmax_backward_data_native.h' 2025-08-14T20:48:15.9065500Z adding 'torch/include/ATen/ops/_softmax_backward_data_ops.h' 2025-08-14T20:48:15.9066460Z adding 'torch/include/ATen/ops/_softmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.9067220Z adding 'torch/include/ATen/ops/_softmax_cpu_dispatch.h' 2025-08-14T20:48:15.9068030Z adding 'torch/include/ATen/ops/_softmax_cuda_dispatch.h' 2025-08-14T20:48:15.9068850Z adding 'torch/include/ATen/ops/_softmax_meta.h' 2025-08-14T20:48:15.9069710Z adding 'torch/include/ATen/ops/_softmax_meta_dispatch.h' 2025-08-14T20:48:15.9070490Z adding 'torch/include/ATen/ops/_softmax_mps_dispatch.h' 2025-08-14T20:48:15.9071350Z adding 'torch/include/ATen/ops/_softmax_native.h' 2025-08-14T20:48:15.9072350Z adding 'torch/include/ATen/ops/_softmax_ops.h' 2025-08-14T20:48:15.9073240Z adding 'torch/include/ATen/ops/_sparse_addmm.h' 2025-08-14T20:48:15.9074230Z adding 'torch/include/ATen/ops/_sparse_addmm_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9075010Z adding 'torch/include/ATen/ops/_sparse_addmm_native.h' 2025-08-14T20:48:15.9075980Z adding 'torch/include/ATen/ops/_sparse_addmm_ops.h' 2025-08-14T20:48:15.9076860Z adding 'torch/include/ATen/ops/_sparse_broadcast_to.h' 2025-08-14T20:48:15.9077770Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy.h' 2025-08-14T20:48:15.9078730Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9079630Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.9080350Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_native.h' 2025-08-14T20:48:15.9081290Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_ops.h' 2025-08-14T20:48:15.9082110Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_native.h' 2025-08-14T20:48:15.9083010Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_ops.h' 2025-08-14T20:48:15.9083950Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe.h' 2025-08-14T20:48:15.9084990Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9085740Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_native.h' 2025-08-14T20:48:15.9086690Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_ops.h' 2025-08-14T20:48:15.9087640Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe.h' 2025-08-14T20:48:15.9088630Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9089400Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_native.h' 2025-08-14T20:48:15.9090360Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_ops.h' 2025-08-14T20:48:15.9091500Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe.h' 2025-08-14T20:48:15.9092580Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9093380Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_native.h' 2025-08-14T20:48:15.9094330Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_ops.h' 2025-08-14T20:48:15.9095310Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims.h' 2025-08-14T20:48:15.9096340Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9097130Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_native.h' 2025-08-14T20:48:15.9098090Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_ops.h' 2025-08-14T20:48:15.9099200Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe.h' 2025-08-14T20:48:15.9100240Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9101030Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe_native.h' 2025-08-14T20:48:15.9101970Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe_ops.h' 2025-08-14T20:48:15.9102980Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims.h' 2025-08-14T20:48:15.9104410Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors.h' 2025-08-14T20:48:15.9105510Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9106430Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_meta_dispatch.h' 2025-08-14T20:48:15.9107370Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_native.h' 2025-08-14T20:48:15.9108490Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_ops.h' 2025-08-14T20:48:15.9109550Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_sparsemps_dispatch.h' 2025-08-14T20:48:15.9110740Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9111610Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_meta_dispatch.h' 2025-08-14T20:48:15.9112530Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_native.h' 2025-08-14T20:48:15.9113600Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_ops.h' 2025-08-14T20:48:15.9114740Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_sparsemps_dispatch.h' 2025-08-14T20:48:15.9115680Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe.h' 2025-08-14T20:48:15.9116670Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9117470Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe_native.h' 2025-08-14T20:48:15.9118440Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe_ops.h' 2025-08-14T20:48:15.9119390Z adding 'torch/include/ATen/ops/_sparse_csr_prod.h' 2025-08-14T20:48:15.9120420Z adding 'torch/include/ATen/ops/_sparse_csr_prod_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9121270Z adding 'torch/include/ATen/ops/_sparse_csr_prod_native.h' 2025-08-14T20:48:15.9122200Z adding 'torch/include/ATen/ops/_sparse_csr_prod_ops.h' 2025-08-14T20:48:15.9123230Z adding 'torch/include/ATen/ops/_sparse_csr_sum.h' 2025-08-14T20:48:15.9124180Z adding 'torch/include/ATen/ops/_sparse_csr_sum_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9125000Z adding 'torch/include/ATen/ops/_sparse_csr_sum_native.h' 2025-08-14T20:48:15.9126000Z adding 'torch/include/ATen/ops/_sparse_csr_sum_ops.h' 2025-08-14T20:48:15.9126990Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe.h' 2025-08-14T20:48:15.9127940Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9128740Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe_native.h' 2025-08-14T20:48:15.9129670Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe_ops.h' 2025-08-14T20:48:15.9130780Z adding 'torch/include/ATen/ops/_sparse_log_softmax.h' 2025-08-14T20:48:15.9131880Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data.h' 2025-08-14T20:48:15.9132860Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9133660Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data_native.h' 2025-08-14T20:48:15.9134630Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data_ops.h' 2025-08-14T20:48:15.9135570Z adding 'torch/include/ATen/ops/_sparse_log_softmax_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9136780Z adding 'torch/include/ATen/ops/_sparse_log_softmax_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9137640Z adding 'torch/include/ATen/ops/_sparse_log_softmax_native.h' 2025-08-14T20:48:15.9138720Z adding 'torch/include/ATen/ops/_sparse_log_softmax_ops.h' 2025-08-14T20:48:15.9139700Z adding 'torch/include/ATen/ops/_sparse_mask_projection.h' 2025-08-14T20:48:15.9140660Z adding 'torch/include/ATen/ops/_sparse_mask_projection_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9141420Z adding 'torch/include/ATen/ops/_sparse_mask_projection_native.h' 2025-08-14T20:48:15.9142380Z adding 'torch/include/ATen/ops/_sparse_mask_projection_ops.h' 2025-08-14T20:48:15.9143220Z adding 'torch/include/ATen/ops/_sparse_mm.h' 2025-08-14T20:48:15.9144300Z adding 'torch/include/ATen/ops/_sparse_mm_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9144960Z adding 'torch/include/ATen/ops/_sparse_mm_native.h' 2025-08-14T20:48:15.9145950Z adding 'torch/include/ATen/ops/_sparse_mm_ops.h' 2025-08-14T20:48:15.9146870Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl.h' 2025-08-14T20:48:15.9147750Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_backward.h' 2025-08-14T20:48:15.9148620Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_backward_native.h' 2025-08-14T20:48:15.9149720Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_backward_ops.h' 2025-08-14T20:48:15.9150460Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_native.h' 2025-08-14T20:48:15.9151390Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_ops.h' 2025-08-14T20:48:15.9152300Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm.h' 2025-08-14T20:48:15.9153230Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm_cuda_dispatch.h' 2025-08-14T20:48:15.9154060Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm_native.h' 2025-08-14T20:48:15.9154980Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm_ops.h' 2025-08-14T20:48:15.9155830Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply.h' 2025-08-14T20:48:15.9156740Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_cuda_dispatch.h' 2025-08-14T20:48:15.9157560Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense.h' 2025-08-14T20:48:15.9158710Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense_cuda_dispatch.h' 2025-08-14T20:48:15.9159310Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense_native.h' 2025-08-14T20:48:15.9160300Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense_ops.h' 2025-08-14T20:48:15.9161190Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_native.h' 2025-08-14T20:48:15.9162050Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_ops.h' 2025-08-14T20:48:15.9162930Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear.h' 2025-08-14T20:48:15.9163850Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear_cuda_dispatch.h' 2025-08-14T20:48:15.9164690Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear_native.h' 2025-08-14T20:48:15.9165610Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear_ops.h' 2025-08-14T20:48:15.9166470Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm.h' 2025-08-14T20:48:15.9167380Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm_cuda_dispatch.h' 2025-08-14T20:48:15.9168210Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm_native.h' 2025-08-14T20:48:15.9169140Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm_ops.h' 2025-08-14T20:48:15.9170030Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile.h' 2025-08-14T20:48:15.9170950Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile_cuda_dispatch.h' 2025-08-14T20:48:15.9171750Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile_native.h' 2025-08-14T20:48:15.9172670Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile_ops.h' 2025-08-14T20:48:15.9173620Z adding 'torch/include/ATen/ops/_sparse_softmax.h' 2025-08-14T20:48:15.9174580Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data.h' 2025-08-14T20:48:15.9175570Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9176350Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data_native.h' 2025-08-14T20:48:15.9177350Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data_ops.h' 2025-08-14T20:48:15.9178280Z adding 'torch/include/ATen/ops/_sparse_softmax_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9179170Z adding 'torch/include/ATen/ops/_sparse_softmax_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9179980Z adding 'torch/include/ATen/ops/_sparse_softmax_native.h' 2025-08-14T20:48:15.9181040Z adding 'torch/include/ATen/ops/_sparse_softmax_ops.h' 2025-08-14T20:48:15.9181940Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul.h' 2025-08-14T20:48:15.9182920Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9183680Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul_native.h' 2025-08-14T20:48:15.9184650Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul_ops.h' 2025-08-14T20:48:15.9185560Z adding 'torch/include/ATen/ops/_sparse_sum.h' 2025-08-14T20:48:15.9186480Z adding 'torch/include/ATen/ops/_sparse_sum_backward.h' 2025-08-14T20:48:15.9187490Z adding 'torch/include/ATen/ops/_sparse_sum_backward_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9188240Z adding 'torch/include/ATen/ops/_sparse_sum_backward_native.h' 2025-08-14T20:48:15.9189190Z adding 'torch/include/ATen/ops/_sparse_sum_backward_ops.h' 2025-08-14T20:48:15.9190120Z adding 'torch/include/ATen/ops/_sparse_sum_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9191000Z adding 'torch/include/ATen/ops/_sparse_sum_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9191770Z adding 'torch/include/ATen/ops/_sparse_sum_native.h' 2025-08-14T20:48:15.9192810Z adding 'torch/include/ATen/ops/_sparse_sum_ops.h' 2025-08-14T20:48:15.9193710Z adding 'torch/include/ATen/ops/_spdiags.h' 2025-08-14T20:48:15.9194680Z adding 'torch/include/ATen/ops/_spdiags_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9195480Z adding 'torch/include/ATen/ops/_spdiags_cpu_dispatch.h' 2025-08-14T20:48:15.9196310Z adding 'torch/include/ATen/ops/_spdiags_native.h' 2025-08-14T20:48:15.9197290Z adding 'torch/include/ATen/ops/_spdiags_ops.h' 2025-08-14T20:48:15.9198140Z adding 'torch/include/ATen/ops/_spsolve.h' 2025-08-14T20:48:15.9198970Z adding 'torch/include/ATen/ops/_spsolve_native.h' 2025-08-14T20:48:15.9199840Z adding 'torch/include/ATen/ops/_spsolve_ops.h' 2025-08-14T20:48:15.9200750Z adding 'torch/include/ATen/ops/_stack.h' 2025-08-14T20:48:15.9201690Z adding 'torch/include/ATen/ops/_stack_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9202500Z adding 'torch/include/ATen/ops/_stack_cpu_dispatch.h' 2025-08-14T20:48:15.9203320Z adding 'torch/include/ATen/ops/_stack_native.h' 2025-08-14T20:48:15.9204250Z adding 'torch/include/ATen/ops/_stack_ops.h' 2025-08-14T20:48:15.9205150Z adding 'torch/include/ATen/ops/_standard_gamma.h' 2025-08-14T20:48:15.9206160Z adding 'torch/include/ATen/ops/_standard_gamma_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9206960Z adding 'torch/include/ATen/ops/_standard_gamma_cpu_dispatch.h' 2025-08-14T20:48:15.9207750Z adding 'torch/include/ATen/ops/_standard_gamma_cuda_dispatch.h' 2025-08-14T20:48:15.9208590Z adding 'torch/include/ATen/ops/_standard_gamma_grad.h' 2025-08-14T20:48:15.9209600Z adding 'torch/include/ATen/ops/_standard_gamma_grad_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9210380Z adding 'torch/include/ATen/ops/_standard_gamma_grad_cpu_dispatch.h' 2025-08-14T20:48:15.9211200Z adding 'torch/include/ATen/ops/_standard_gamma_grad_cuda_dispatch.h' 2025-08-14T20:48:15.9212010Z adding 'torch/include/ATen/ops/_standard_gamma_grad_native.h' 2025-08-14T20:48:15.9212940Z adding 'torch/include/ATen/ops/_standard_gamma_grad_ops.h' 2025-08-14T20:48:15.9213770Z adding 'torch/include/ATen/ops/_standard_gamma_native.h' 2025-08-14T20:48:15.9214710Z adding 'torch/include/ATen/ops/_standard_gamma_ops.h' 2025-08-14T20:48:15.9215620Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults.h' 2025-08-14T20:48:15.9216600Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9217390Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults_native.h' 2025-08-14T20:48:15.9218320Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults_ops.h' 2025-08-14T20:48:15.9219270Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch.h' 2025-08-14T20:48:15.9220250Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9221120Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9221910Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_native.h' 2025-08-14T20:48:15.9222890Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_ops.h' 2025-08-14T20:48:15.9223760Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view.h' 2025-08-14T20:48:15.9224710Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9225570Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy.h' 2025-08-14T20:48:15.9226520Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9227450Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.9228140Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_native.h' 2025-08-14T20:48:15.9229060Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_ops.h' 2025-08-14T20:48:15.9229880Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_native.h' 2025-08-14T20:48:15.9230750Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_ops.h' 2025-08-14T20:48:15.9231560Z adding 'torch/include/ATen/ops/_test_check_tensor.h' 2025-08-14T20:48:15.9232530Z adding 'torch/include/ATen/ops/_test_check_tensor_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9233280Z adding 'torch/include/ATen/ops/_test_check_tensor_native.h' 2025-08-14T20:48:15.9234140Z adding 'torch/include/ATen/ops/_test_check_tensor_ops.h' 2025-08-14T20:48:15.9235030Z adding 'torch/include/ATen/ops/_test_functorch_fallback.h' 2025-08-14T20:48:15.9236060Z adding 'torch/include/ATen/ops/_test_functorch_fallback_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9236810Z adding 'torch/include/ATen/ops/_test_functorch_fallback_cpu_dispatch.h' 2025-08-14T20:48:15.9237630Z adding 'torch/include/ATen/ops/_test_functorch_fallback_native.h' 2025-08-14T20:48:15.9238570Z adding 'torch/include/ATen/ops/_test_functorch_fallback_ops.h' 2025-08-14T20:48:15.9239460Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist.h' 2025-08-14T20:48:15.9240440Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9241250Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_cpu_dispatch.h' 2025-08-14T20:48:15.9242060Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_native.h' 2025-08-14T20:48:15.9242990Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_ops.h' 2025-08-14T20:48:15.9243880Z adding 'torch/include/ATen/ops/_test_optional_floatlist.h' 2025-08-14T20:48:15.9244860Z adding 'torch/include/ATen/ops/_test_optional_floatlist_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9245640Z adding 'torch/include/ATen/ops/_test_optional_floatlist_cpu_dispatch.h' 2025-08-14T20:48:15.9246460Z adding 'torch/include/ATen/ops/_test_optional_floatlist_native.h' 2025-08-14T20:48:15.9247380Z adding 'torch/include/ATen/ops/_test_optional_floatlist_ops.h' 2025-08-14T20:48:15.9248280Z adding 'torch/include/ATen/ops/_test_optional_intlist.h' 2025-08-14T20:48:15.9249240Z adding 'torch/include/ATen/ops/_test_optional_intlist_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9250020Z adding 'torch/include/ATen/ops/_test_optional_intlist_cpu_dispatch.h' 2025-08-14T20:48:15.9250830Z adding 'torch/include/ATen/ops/_test_optional_intlist_native.h' 2025-08-14T20:48:15.9251760Z adding 'torch/include/ATen/ops/_test_optional_intlist_ops.h' 2025-08-14T20:48:15.9252620Z adding 'torch/include/ATen/ops/_test_parallel_materialize.h' 2025-08-14T20:48:15.9253590Z adding 'torch/include/ATen/ops/_test_parallel_materialize_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9254350Z adding 'torch/include/ATen/ops/_test_parallel_materialize_native.h' 2025-08-14T20:48:15.9255240Z adding 'torch/include/ATen/ops/_test_parallel_materialize_ops.h' 2025-08-14T20:48:15.9256090Z adding 'torch/include/ATen/ops/_test_serialization_subcmul.h' 2025-08-14T20:48:15.9257040Z adding 'torch/include/ATen/ops/_test_serialization_subcmul_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9257790Z adding 'torch/include/ATen/ops/_test_serialization_subcmul_native.h' 2025-08-14T20:48:15.9258670Z adding 'torch/include/ATen/ops/_test_serialization_subcmul_ops.h' 2025-08-14T20:48:15.9259510Z adding 'torch/include/ATen/ops/_test_string_default.h' 2025-08-14T20:48:15.9260530Z adding 'torch/include/ATen/ops/_test_string_default_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9261270Z adding 'torch/include/ATen/ops/_test_string_default_native.h' 2025-08-14T20:48:15.9262160Z adding 'torch/include/ATen/ops/_test_string_default_ops.h' 2025-08-14T20:48:15.9263040Z adding 'torch/include/ATen/ops/_test_warn_in_autograd.h' 2025-08-14T20:48:15.9264000Z adding 'torch/include/ATen/ops/_test_warn_in_autograd_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9264740Z adding 'torch/include/ATen/ops/_test_warn_in_autograd_native.h' 2025-08-14T20:48:15.9265660Z adding 'torch/include/ATen/ops/_test_warn_in_autograd_ops.h' 2025-08-14T20:48:15.9266630Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward.h' 2025-08-14T20:48:15.9267630Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9268410Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_native.h' 2025-08-14T20:48:15.9269370Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_ops.h' 2025-08-14T20:48:15.9270250Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward.h' 2025-08-14T20:48:15.9271230Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9272040Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_native.h' 2025-08-14T20:48:15.9272970Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_ops.h' 2025-08-14T20:48:15.9273900Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell.h' 2025-08-14T20:48:15.9274900Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward.h' 2025-08-14T20:48:15.9275900Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9276710Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_cuda_dispatch.h' 2025-08-14T20:48:15.9277580Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_native.h' 2025-08-14T20:48:15.9278610Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_ops.h' 2025-08-14T20:48:15.9279610Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9280430Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_cuda_dispatch.h' 2025-08-14T20:48:15.9281260Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_native.h' 2025-08-14T20:48:15.9282260Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_ops.h' 2025-08-14T20:48:15.9283240Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell.h' 2025-08-14T20:48:15.9284180Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward.h' 2025-08-14T20:48:15.9285150Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9286040Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl.h' 2025-08-14T20:48:15.9287050Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9287870Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_cuda_dispatch.h' 2025-08-14T20:48:15.9288720Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_native.h' 2025-08-14T20:48:15.9289750Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_ops.h' 2025-08-14T20:48:15.9290630Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_native.h' 2025-08-14T20:48:15.9291600Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_ops.h' 2025-08-14T20:48:15.9292580Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9293420Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_cuda_dispatch.h' 2025-08-14T20:48:15.9294270Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_native.h' 2025-08-14T20:48:15.9295310Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_ops.h' 2025-08-14T20:48:15.9296330Z adding 'torch/include/ATen/ops/_to_copy.h' 2025-08-14T20:48:15.9297390Z adding 'torch/include/ATen/ops/_to_copy_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9298150Z adding 'torch/include/ATen/ops/_to_copy_native.h' 2025-08-14T20:48:15.9299170Z adding 'torch/include/ATen/ops/_to_copy_ops.h' 2025-08-14T20:48:15.9300010Z adding 'torch/include/ATen/ops/_to_cpu.h' 2025-08-14T20:48:15.9300990Z adding 'torch/include/ATen/ops/_to_cpu_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9301760Z adding 'torch/include/ATen/ops/_to_cpu_native.h' 2025-08-14T20:48:15.9302680Z adding 'torch/include/ATen/ops/_to_cpu_ops.h' 2025-08-14T20:48:15.9303600Z adding 'torch/include/ATen/ops/_to_dense.h' 2025-08-14T20:48:15.9304590Z adding 'torch/include/ATen/ops/_to_dense_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9305400Z adding 'torch/include/ATen/ops/_to_dense_native.h' 2025-08-14T20:48:15.9306340Z adding 'torch/include/ATen/ops/_to_dense_ops.h' 2025-08-14T20:48:15.9307300Z adding 'torch/include/ATen/ops/_to_sparse.h' 2025-08-14T20:48:15.9308220Z adding 'torch/include/ATen/ops/_to_sparse_bsc.h' 2025-08-14T20:48:15.9309190Z adding 'torch/include/ATen/ops/_to_sparse_bsc_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9310000Z adding 'torch/include/ATen/ops/_to_sparse_bsc_cpu_dispatch.h' 2025-08-14T20:48:15.9310890Z adding 'torch/include/ATen/ops/_to_sparse_bsc_cuda_dispatch.h' 2025-08-14T20:48:15.9311670Z adding 'torch/include/ATen/ops/_to_sparse_bsc_native.h' 2025-08-14T20:48:15.9312630Z adding 'torch/include/ATen/ops/_to_sparse_bsc_ops.h' 2025-08-14T20:48:15.9313480Z adding 'torch/include/ATen/ops/_to_sparse_bsr.h' 2025-08-14T20:48:15.9314440Z adding 'torch/include/ATen/ops/_to_sparse_bsr_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9315210Z adding 'torch/include/ATen/ops/_to_sparse_bsr_cpu_dispatch.h' 2025-08-14T20:48:15.9316020Z adding 'torch/include/ATen/ops/_to_sparse_bsr_cuda_dispatch.h' 2025-08-14T20:48:15.9316850Z adding 'torch/include/ATen/ops/_to_sparse_bsr_native.h' 2025-08-14T20:48:15.9317800Z adding 'torch/include/ATen/ops/_to_sparse_bsr_ops.h' 2025-08-14T20:48:15.9318790Z adding 'torch/include/ATen/ops/_to_sparse_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9319600Z adding 'torch/include/ATen/ops/_to_sparse_cpu_dispatch.h' 2025-08-14T20:48:15.9320480Z adding 'torch/include/ATen/ops/_to_sparse_csc.h' 2025-08-14T20:48:15.9321430Z adding 'torch/include/ATen/ops/_to_sparse_csc_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9322220Z adding 'torch/include/ATen/ops/_to_sparse_csc_cpu_dispatch.h' 2025-08-14T20:48:15.9323030Z adding 'torch/include/ATen/ops/_to_sparse_csc_cuda_dispatch.h' 2025-08-14T20:48:15.9323870Z adding 'torch/include/ATen/ops/_to_sparse_csc_native.h' 2025-08-14T20:48:15.9324820Z adding 'torch/include/ATen/ops/_to_sparse_csc_ops.h' 2025-08-14T20:48:15.9325670Z adding 'torch/include/ATen/ops/_to_sparse_csr.h' 2025-08-14T20:48:15.9326620Z adding 'torch/include/ATen/ops/_to_sparse_csr_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9327420Z adding 'torch/include/ATen/ops/_to_sparse_csr_cpu_dispatch.h' 2025-08-14T20:48:15.9328240Z adding 'torch/include/ATen/ops/_to_sparse_csr_cuda_dispatch.h' 2025-08-14T20:48:15.9329070Z adding 'torch/include/ATen/ops/_to_sparse_csr_native.h' 2025-08-14T20:48:15.9329990Z adding 'torch/include/ATen/ops/_to_sparse_csr_ops.h' 2025-08-14T20:48:15.9330890Z adding 'torch/include/ATen/ops/_to_sparse_cuda_dispatch.h' 2025-08-14T20:48:15.9331720Z adding 'torch/include/ATen/ops/_to_sparse_mps_dispatch.h' 2025-08-14T20:48:15.9332610Z adding 'torch/include/ATen/ops/_to_sparse_native.h' 2025-08-14T20:48:15.9333670Z adding 'torch/include/ATen/ops/_to_sparse_ops.h' 2025-08-14T20:48:15.9334590Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured.h' 2025-08-14T20:48:15.9335470Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured_cuda_dispatch.h' 2025-08-14T20:48:15.9336300Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured_native.h' 2025-08-14T20:48:15.9337180Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured_ops.h' 2025-08-14T20:48:15.9338090Z adding 'torch/include/ATen/ops/_to_sparse_sparsecsrmps_dispatch.h' 2025-08-14T20:48:15.9338910Z adding 'torch/include/ATen/ops/_to_sparse_sparsemps_dispatch.h' 2025-08-14T20:48:15.9339850Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv.h' 2025-08-14T20:48:15.9340870Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9341680Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_cpu_dispatch.h' 2025-08-14T20:48:15.9342850Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_cuda_dispatch.h' 2025-08-14T20:48:15.9343700Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_native.h' 2025-08-14T20:48:15.9344700Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_ops.h' 2025-08-14T20:48:15.9345800Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd.h' 2025-08-14T20:48:15.9346900Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9347770Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_cpu_dispatch.h' 2025-08-14T20:48:15.9348660Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_cuda_dispatch.h' 2025-08-14T20:48:15.9349550Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_native.h' 2025-08-14T20:48:15.9350740Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_ops.h' 2025-08-14T20:48:15.9351630Z adding 'torch/include/ATen/ops/_trilinear.h' 2025-08-14T20:48:15.9352660Z adding 'torch/include/ATen/ops/_trilinear_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9353600Z adding 'torch/include/ATen/ops/_trilinear_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.9354330Z adding 'torch/include/ATen/ops/_trilinear_native.h' 2025-08-14T20:48:15.9355340Z adding 'torch/include/ATen/ops/_trilinear_ops.h' 2025-08-14T20:48:15.9356380Z adding 'torch/include/ATen/ops/_triton_multi_head_attention.h' 2025-08-14T20:48:15.9357420Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9358240Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_cuda_dispatch.h' 2025-08-14T20:48:15.9359130Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_native.h' 2025-08-14T20:48:15.9360150Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_ops.h' 2025-08-14T20:48:15.9361070Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention.h' 2025-08-14T20:48:15.9362060Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9362880Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_cuda_dispatch.h' 2025-08-14T20:48:15.9363690Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_native.h' 2025-08-14T20:48:15.9364670Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_ops.h' 2025-08-14T20:48:15.9365540Z adding 'torch/include/ATen/ops/_unique.h' 2025-08-14T20:48:15.9366480Z adding 'torch/include/ATen/ops/_unique2.h' 2025-08-14T20:48:15.9367450Z adding 'torch/include/ATen/ops/_unique2_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9368260Z adding 'torch/include/ATen/ops/_unique2_cpu_dispatch.h' 2025-08-14T20:48:15.9369100Z adding 'torch/include/ATen/ops/_unique2_cuda_dispatch.h' 2025-08-14T20:48:15.9369910Z adding 'torch/include/ATen/ops/_unique2_mps_dispatch.h' 2025-08-14T20:48:15.9370770Z adding 'torch/include/ATen/ops/_unique2_native.h' 2025-08-14T20:48:15.9371780Z adding 'torch/include/ATen/ops/_unique2_ops.h' 2025-08-14T20:48:15.9372760Z adding 'torch/include/ATen/ops/_unique_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9373550Z adding 'torch/include/ATen/ops/_unique_cpu_dispatch.h' 2025-08-14T20:48:15.9374350Z adding 'torch/include/ATen/ops/_unique_cuda_dispatch.h' 2025-08-14T20:48:15.9375190Z adding 'torch/include/ATen/ops/_unique_native.h' 2025-08-14T20:48:15.9376160Z adding 'torch/include/ATen/ops/_unique_ops.h' 2025-08-14T20:48:15.9377030Z adding 'torch/include/ATen/ops/_unpack_dual.h' 2025-08-14T20:48:15.9378030Z adding 'torch/include/ATen/ops/_unpack_dual_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9378730Z adding 'torch/include/ATen/ops/_unpack_dual_native.h' 2025-08-14T20:48:15.9379620Z adding 'torch/include/ATen/ops/_unpack_dual_ops.h' 2025-08-14T20:48:15.9380500Z adding 'torch/include/ATen/ops/_unsafe_index.h' 2025-08-14T20:48:15.9381440Z adding 'torch/include/ATen/ops/_unsafe_index_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9382210Z adding 'torch/include/ATen/ops/_unsafe_index_native.h' 2025-08-14T20:48:15.9383110Z adding 'torch/include/ATen/ops/_unsafe_index_ops.h' 2025-08-14T20:48:15.9383970Z adding 'torch/include/ATen/ops/_unsafe_index_put.h' 2025-08-14T20:48:15.9384930Z adding 'torch/include/ATen/ops/_unsafe_index_put_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9385700Z adding 'torch/include/ATen/ops/_unsafe_index_put_native.h' 2025-08-14T20:48:15.9386610Z adding 'torch/include/ATen/ops/_unsafe_index_put_ops.h' 2025-08-14T20:48:15.9387460Z adding 'torch/include/ATen/ops/_unsafe_masked_index.h' 2025-08-14T20:48:15.9388430Z adding 'torch/include/ATen/ops/_unsafe_masked_index_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9389200Z adding 'torch/include/ATen/ops/_unsafe_masked_index_native.h' 2025-08-14T20:48:15.9390120Z adding 'torch/include/ATen/ops/_unsafe_masked_index_ops.h' 2025-08-14T20:48:15.9391010Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate.h' 2025-08-14T20:48:15.9391990Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9392740Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_native.h' 2025-08-14T20:48:15.9393660Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_ops.h' 2025-08-14T20:48:15.9394620Z adding 'torch/include/ATen/ops/_unsafe_view.h' 2025-08-14T20:48:15.9395630Z adding 'torch/include/ATen/ops/_unsafe_view_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9396400Z adding 'torch/include/ATen/ops/_unsafe_view_native.h' 2025-08-14T20:48:15.9397340Z adding 'torch/include/ATen/ops/_unsafe_view_ops.h' 2025-08-14T20:48:15.9398610Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa.h' 2025-08-14T20:48:15.9399880Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward.h' 2025-08-14T20:48:15.9400980Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.9401820Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_cpu_dispatch.h' 2025-08-14T20:48:15.9402740Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_cuda_dispatch.h' 2025-08-14T20:48:15.9403600Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_meta.h' 2025-08-14T20:48:15.9404510Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_meta_dispatch.h' 2025-08-14T20:48:15.9405380Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_native.h' 2025-08-14T20:48:15.9406370Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_ops.h' 2025-08-14T20:48:15.9407370Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.9408220Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9409080Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_cpu_dispatch.h' 2025-08-14T20:48:15.9410010Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_cuda_dispatch.h' 2025-08-14T20:48:15.9410850Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_meta.h' 2025-08-14T20:48:15.9411760Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_meta_dispatch.h' 2025-08-14T20:48:15.9412610Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_mps_dispatch.h' 2025-08-14T20:48:15.9413510Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_native.h' 2025-08-14T20:48:15.9414540Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_ops.h' 2025-08-14T20:48:15.9415820Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa.h' 2025-08-14T20:48:15.9417120Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward.h' 2025-08-14T20:48:15.9418190Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.9419010Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_cpu_dispatch.h' 2025-08-14T20:48:15.9419940Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_cuda_dispatch.h' 2025-08-14T20:48:15.9420790Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_meta.h' 2025-08-14T20:48:15.9421720Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_meta_dispatch.h' 2025-08-14T20:48:15.9427230Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_native.h' 2025-08-14T20:48:15.9427490Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_ops.h' 2025-08-14T20:48:15.9427740Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.9427970Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9428110Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_cpu_dispatch.h' 2025-08-14T20:48:15.9428270Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_cuda_dispatch.h' 2025-08-14T20:48:15.9428390Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_meta.h' 2025-08-14T20:48:15.9428980Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_meta_dispatch.h' 2025-08-14T20:48:15.9429670Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_mps_dispatch.h' 2025-08-14T20:48:15.9430580Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_native.h' 2025-08-14T20:48:15.9431650Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_ops.h' 2025-08-14T20:48:15.9432860Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d.h' 2025-08-14T20:48:15.9434100Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward.h' 2025-08-14T20:48:15.9435170Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.9435980Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_cpu_dispatch.h' 2025-08-14T20:48:15.9436890Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_cuda_dispatch.h' 2025-08-14T20:48:15.9437730Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_meta.h' 2025-08-14T20:48:15.9438640Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_meta_dispatch.h' 2025-08-14T20:48:15.9439510Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_mps_dispatch.h' 2025-08-14T20:48:15.9440400Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_native.h' 2025-08-14T20:48:15.9441390Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_ops.h' 2025-08-14T20:48:15.9442380Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.9443220Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9444080Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_cpu_dispatch.h' 2025-08-14T20:48:15.9444960Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_cuda_dispatch.h' 2025-08-14T20:48:15.9445790Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_meta.h' 2025-08-14T20:48:15.9446670Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_meta_dispatch.h' 2025-08-14T20:48:15.9447500Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_mps_dispatch.h' 2025-08-14T20:48:15.9448480Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_native.h' 2025-08-14T20:48:15.9449500Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_ops.h' 2025-08-14T20:48:15.9450740Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d.h' 2025-08-14T20:48:15.9451980Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward.h' 2025-08-14T20:48:15.9453130Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.9453910Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_cpu_dispatch.h' 2025-08-14T20:48:15.9454800Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_cuda_dispatch.h' 2025-08-14T20:48:15.9455660Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_meta.h' 2025-08-14T20:48:15.9456590Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_meta_dispatch.h' 2025-08-14T20:48:15.9457460Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_mps_dispatch.h' 2025-08-14T20:48:15.9458350Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_native.h' 2025-08-14T20:48:15.9459350Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_ops.h' 2025-08-14T20:48:15.9460360Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.9461190Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9462050Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_cpu_dispatch.h' 2025-08-14T20:48:15.9462980Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_cuda_dispatch.h' 2025-08-14T20:48:15.9463770Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_meta.h' 2025-08-14T20:48:15.9464690Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_meta_dispatch.h' 2025-08-14T20:48:15.9465550Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_mps_dispatch.h' 2025-08-14T20:48:15.9466460Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_native.h' 2025-08-14T20:48:15.9467530Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_ops.h' 2025-08-14T20:48:15.9468770Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d.h' 2025-08-14T20:48:15.9470080Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward.h' 2025-08-14T20:48:15.9471390Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.9472240Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_cpu_dispatch.h' 2025-08-14T20:48:15.9473210Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_cuda_dispatch.h' 2025-08-14T20:48:15.9474070Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_meta.h' 2025-08-14T20:48:15.9474990Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_meta_dispatch.h' 2025-08-14T20:48:15.9475980Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_mps_dispatch.h' 2025-08-14T20:48:15.9476890Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_native.h' 2025-08-14T20:48:15.9477890Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_ops.h' 2025-08-14T20:48:15.9478920Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.9479750Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9480620Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_cpu_dispatch.h' 2025-08-14T20:48:15.9481520Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_cuda_dispatch.h' 2025-08-14T20:48:15.9482370Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_meta.h' 2025-08-14T20:48:15.9483290Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_meta_dispatch.h' 2025-08-14T20:48:15.9484150Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_mps_dispatch.h' 2025-08-14T20:48:15.9485090Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_native.h' 2025-08-14T20:48:15.9486140Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_ops.h' 2025-08-14T20:48:15.9487050Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss.h' 2025-08-14T20:48:15.9487990Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss_cuda_dispatch.h' 2025-08-14T20:48:15.9488850Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss_native.h' 2025-08-14T20:48:15.9489850Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss_ops.h' 2025-08-14T20:48:15.9490740Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight.h' 2025-08-14T20:48:15.9491710Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9492460Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_native.h' 2025-08-14T20:48:15.9493360Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_ops.h' 2025-08-14T20:48:15.9494270Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices.h' 2025-08-14T20:48:15.9495190Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_cpu_dispatch.h' 2025-08-14T20:48:15.9496070Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_cuda_dispatch.h' 2025-08-14T20:48:15.9496910Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_native.h' 2025-08-14T20:48:15.9497870Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_ops.h' 2025-08-14T20:48:15.9498770Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args.h' 2025-08-14T20:48:15.9499770Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9500600Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_native.h' 2025-08-14T20:48:15.9501480Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_ops.h' 2025-08-14T20:48:15.9502360Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args.h' 2025-08-14T20:48:15.9503320Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9504130Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_native.h' 2025-08-14T20:48:15.9505060Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_ops.h' 2025-08-14T20:48:15.9505940Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args.h' 2025-08-14T20:48:15.9506950Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9507760Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_native.h' 2025-08-14T20:48:15.9508670Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_ops.h' 2025-08-14T20:48:15.9509550Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args.h' 2025-08-14T20:48:15.9510560Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9511280Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args_native.h' 2025-08-14T20:48:15.9512230Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args_ops.h' 2025-08-14T20:48:15.9513100Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args.h' 2025-08-14T20:48:15.9514050Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9514800Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args_native.h' 2025-08-14T20:48:15.9515740Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args_ops.h' 2025-08-14T20:48:15.9516610Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args.h' 2025-08-14T20:48:15.9517560Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9518290Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args_native.h' 2025-08-14T20:48:15.9519200Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args_ops.h' 2025-08-14T20:48:15.9519950Z adding 'torch/include/ATen/ops/_values.h' 2025-08-14T20:48:15.9520840Z adding 'torch/include/ATen/ops/_values_copy.h' 2025-08-14T20:48:15.9521790Z adding 'torch/include/ATen/ops/_values_copy_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9522700Z adding 'torch/include/ATen/ops/_values_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.9523430Z adding 'torch/include/ATen/ops/_values_copy_native.h' 2025-08-14T20:48:15.9524390Z adding 'torch/include/ATen/ops/_values_copy_ops.h' 2025-08-14T20:48:15.9525250Z adding 'torch/include/ATen/ops/_values_native.h' 2025-08-14T20:48:15.9526120Z adding 'torch/include/ATen/ops/_values_ops.h' 2025-08-14T20:48:15.9527070Z adding 'torch/include/ATen/ops/_values_sparsemps_dispatch.h' 2025-08-14T20:48:15.9527870Z adding 'torch/include/ATen/ops/_version.h' 2025-08-14T20:48:15.9528810Z adding 'torch/include/ATen/ops/_version_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9529550Z adding 'torch/include/ATen/ops/_version_native.h' 2025-08-14T20:48:15.9530430Z adding 'torch/include/ATen/ops/_version_ops.h' 2025-08-14T20:48:15.9531310Z adding 'torch/include/ATen/ops/_weight_int4pack_mm.h' 2025-08-14T20:48:15.9532220Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_cuda_dispatch.h' 2025-08-14T20:48:15.9533070Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_for_cpu.h' 2025-08-14T20:48:15.9533970Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_cpu_dispatch.h' 2025-08-14T20:48:15.9534790Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_native.h' 2025-08-14T20:48:15.9535710Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_ops.h' 2025-08-14T20:48:15.9536590Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_mps_dispatch.h' 2025-08-14T20:48:15.9537390Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_native.h' 2025-08-14T20:48:15.9538290Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_ops.h' 2025-08-14T20:48:15.9539210Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_with_scales_and_zeros.h' 2025-08-14T20:48:15.9540050Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_with_scales_and_zeros_native.h' 2025-08-14T20:48:15.9540970Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_with_scales_and_zeros_ops.h' 2025-08-14T20:48:15.9541760Z adding 'torch/include/ATen/ops/_weight_int8pack_mm.h' 2025-08-14T20:48:15.9542650Z adding 'torch/include/ATen/ops/_weight_int8pack_mm_cpu_dispatch.h' 2025-08-14T20:48:15.9543470Z adding 'torch/include/ATen/ops/_weight_int8pack_mm_cuda_dispatch.h' 2025-08-14T20:48:15.9544290Z adding 'torch/include/ATen/ops/_weight_int8pack_mm_mps_dispatch.h' 2025-08-14T20:48:15.9545170Z adding 'torch/include/ATen/ops/_weight_int8pack_mm_native.h' 2025-08-14T20:48:15.9546120Z adding 'torch/include/ATen/ops/_weight_int8pack_mm_ops.h' 2025-08-14T20:48:15.9546950Z adding 'torch/include/ATen/ops/_weight_norm.h' 2025-08-14T20:48:15.9547910Z adding 'torch/include/ATen/ops/_weight_norm_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9548770Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward.h' 2025-08-14T20:48:15.9549750Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9550530Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward_native.h' 2025-08-14T20:48:15.9551450Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward_ops.h' 2025-08-14T20:48:15.9552360Z adding 'torch/include/ATen/ops/_weight_norm_interface.h' 2025-08-14T20:48:15.9553330Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward.h' 2025-08-14T20:48:15.9554670Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9555500Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_cpu_dispatch.h' 2025-08-14T20:48:15.9556350Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_cuda_dispatch.h' 2025-08-14T20:48:15.9557170Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_mps_dispatch.h' 2025-08-14T20:48:15.9558030Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_native.h' 2025-08-14T20:48:15.9559060Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_ops.h' 2025-08-14T20:48:15.9560040Z adding 'torch/include/ATen/ops/_weight_norm_interface_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9560850Z adding 'torch/include/ATen/ops/_weight_norm_interface_cpu_dispatch.h' 2025-08-14T20:48:15.9561660Z adding 'torch/include/ATen/ops/_weight_norm_interface_cuda_dispatch.h' 2025-08-14T20:48:15.9562480Z adding 'torch/include/ATen/ops/_weight_norm_interface_mps_dispatch.h' 2025-08-14T20:48:15.9563320Z adding 'torch/include/ATen/ops/_weight_norm_interface_native.h' 2025-08-14T20:48:15.9564290Z adding 'torch/include/ATen/ops/_weight_norm_interface_ops.h' 2025-08-14T20:48:15.9565110Z adding 'torch/include/ATen/ops/_weight_norm_native.h' 2025-08-14T20:48:15.9566030Z adding 'torch/include/ATen/ops/_weight_norm_ops.h' 2025-08-14T20:48:15.9566910Z adding 'torch/include/ATen/ops/_wrapped_linear_prepack.h' 2025-08-14T20:48:15.9567880Z adding 'torch/include/ATen/ops/_wrapped_linear_prepack_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9568640Z adding 'torch/include/ATen/ops/_wrapped_linear_prepack_native.h' 2025-08-14T20:48:15.9569540Z adding 'torch/include/ATen/ops/_wrapped_linear_prepack_ops.h' 2025-08-14T20:48:15.9570470Z adding 'torch/include/ATen/ops/_wrapped_quantized_linear_prepacked.h' 2025-08-14T20:48:15.9571450Z adding 'torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9572220Z adding 'torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_native.h' 2025-08-14T20:48:15.9573200Z adding 'torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_ops.h' 2025-08-14T20:48:15.9573990Z adding 'torch/include/ATen/ops/abs.h' 2025-08-14T20:48:15.9574920Z adding 'torch/include/ATen/ops/abs_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9575730Z adding 'torch/include/ATen/ops/abs_cpu_dispatch.h' 2025-08-14T20:48:15.9576550Z adding 'torch/include/ATen/ops/abs_cuda_dispatch.h' 2025-08-14T20:48:15.9577350Z adding 'torch/include/ATen/ops/abs_mps_dispatch.h' 2025-08-14T20:48:15.9578200Z adding 'torch/include/ATen/ops/abs_native.h' 2025-08-14T20:48:15.9579150Z adding 'torch/include/ATen/ops/abs_ops.h' 2025-08-14T20:48:15.9580030Z adding 'torch/include/ATen/ops/absolute.h' 2025-08-14T20:48:15.9581000Z adding 'torch/include/ATen/ops/absolute_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9581740Z adding 'torch/include/ATen/ops/absolute_native.h' 2025-08-14T20:48:15.9582700Z adding 'torch/include/ATen/ops/absolute_ops.h' 2025-08-14T20:48:15.9583570Z adding 'torch/include/ATen/ops/acos.h' 2025-08-14T20:48:15.9584600Z adding 'torch/include/ATen/ops/acos_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.9585360Z adding 'torch/include/ATen/ops/acos_cpu_dispatch.h' 2025-08-14T20:48:15.9586170Z adding 'torch/include/ATen/ops/acos_cuda_dispatch.h' 2025-08-14T20:48:15.9586980Z adding 'torch/include/ATen/ops/acos_meta.h' 2025-08-14T20:48:15.9587810Z adding 'torch/include/ATen/ops/acos_meta_dispatch.h' 2025-08-14T20:48:15.9588620Z adding 'torch/include/ATen/ops/acos_mps_dispatch.h' 2025-08-14T20:48:15.9589430Z adding 'torch/include/ATen/ops/acos_native.h' 2025-08-14T20:48:15.9590370Z adding 'torch/include/ATen/ops/acos_ops.h' 2025-08-14T20:48:15.9591250Z adding 'torch/include/ATen/ops/acosh.h' 2025-08-14T20:48:15.9592250Z adding 'torch/include/ATen/ops/acosh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.9592970Z adding 'torch/include/ATen/ops/acosh_cpu_dispatch.h' 2025-08-14T20:48:15.9593790Z adding 'torch/include/ATen/ops/acosh_cuda_dispatch.h' 2025-08-14T20:48:15.9594610Z adding 'torch/include/ATen/ops/acosh_meta.h' 2025-08-14T20:48:15.9595430Z adding 'torch/include/ATen/ops/acosh_meta_dispatch.h' 2025-08-14T20:48:15.9596230Z adding 'torch/include/ATen/ops/acosh_mps_dispatch.h' 2025-08-14T20:48:15.9597060Z adding 'torch/include/ATen/ops/acosh_native.h' 2025-08-14T20:48:15.9597990Z adding 'torch/include/ATen/ops/acosh_ops.h' 2025-08-14T20:48:15.9598930Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d.h' 2025-08-14T20:48:15.9599880Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9600730Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9601550Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_native.h' 2025-08-14T20:48:15.9602460Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_ops.h' 2025-08-14T20:48:15.9603520Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d.h' 2025-08-14T20:48:15.9604520Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9605350Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_cpu_dispatch.h' 2025-08-14T20:48:15.9606170Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_cuda_dispatch.h' 2025-08-14T20:48:15.9607000Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_mps_dispatch.h' 2025-08-14T20:48:15.9607880Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_native.h' 2025-08-14T20:48:15.9608810Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_ops.h' 2025-08-14T20:48:15.9609850Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d.h' 2025-08-14T20:48:15.9610770Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward.h' 2025-08-14T20:48:15.9611690Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_cpu_dispatch.h' 2025-08-14T20:48:15.9612560Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_cuda_dispatch.h' 2025-08-14T20:48:15.9613380Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_native.h' 2025-08-14T20:48:15.9614330Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_ops.h' 2025-08-14T20:48:15.9615240Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9616070Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_cpu_dispatch.h' 2025-08-14T20:48:15.9616970Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_cuda_dispatch.h' 2025-08-14T20:48:15.9617950Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_native.h' 2025-08-14T20:48:15.9618960Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_ops.h' 2025-08-14T20:48:15.9619840Z adding 'torch/include/ATen/ops/adaptive_max_pool1d.h' 2025-08-14T20:48:15.9620880Z adding 'torch/include/ATen/ops/adaptive_max_pool1d_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9621630Z adding 'torch/include/ATen/ops/adaptive_max_pool1d_native.h' 2025-08-14T20:48:15.9622550Z adding 'torch/include/ATen/ops/adaptive_max_pool1d_ops.h' 2025-08-14T20:48:15.9623480Z adding 'torch/include/ATen/ops/adaptive_max_pool2d.h' 2025-08-14T20:48:15.9624510Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward.h' 2025-08-14T20:48:15.9625610Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.9626400Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_cpu_dispatch.h' 2025-08-14T20:48:15.9627250Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_cuda_dispatch.h' 2025-08-14T20:48:15.9628120Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_meta.h' 2025-08-14T20:48:15.9629040Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_meta_dispatch.h' 2025-08-14T20:48:15.9629850Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_mps_dispatch.h' 2025-08-14T20:48:15.9630710Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_native.h' 2025-08-14T20:48:15.9631680Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_ops.h' 2025-08-14T20:48:15.9632650Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.9633430Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_cpu_dispatch.h' 2025-08-14T20:48:15.9634300Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_cuda_dispatch.h' 2025-08-14T20:48:15.9635210Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_meta.h' 2025-08-14T20:48:15.9636050Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_meta_dispatch.h' 2025-08-14T20:48:15.9636890Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_mps_dispatch.h' 2025-08-14T20:48:15.9637780Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_native.h' 2025-08-14T20:48:15.9638740Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_ops.h' 2025-08-14T20:48:15.9639700Z adding 'torch/include/ATen/ops/adaptive_max_pool3d.h' 2025-08-14T20:48:15.9640640Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward.h' 2025-08-14T20:48:15.9641670Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.9642430Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_cpu_dispatch.h' 2025-08-14T20:48:15.9643250Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_cuda_dispatch.h' 2025-08-14T20:48:15.9644060Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_meta.h' 2025-08-14T20:48:15.9644930Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_meta_dispatch.h' 2025-08-14T20:48:15.9645760Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_native.h' 2025-08-14T20:48:15.9646720Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_ops.h' 2025-08-14T20:48:15.9647690Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.9648420Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_cpu_dispatch.h' 2025-08-14T20:48:15.9649250Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_cuda_dispatch.h' 2025-08-14T20:48:15.9650110Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_meta.h' 2025-08-14T20:48:15.9650910Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_meta_dispatch.h' 2025-08-14T20:48:15.9651770Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_native.h' 2025-08-14T20:48:15.9652710Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_ops.h' 2025-08-14T20:48:15.9653650Z adding 'torch/include/ATen/ops/add.h' 2025-08-14T20:48:15.9654630Z adding 'torch/include/ATen/ops/add_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9655560Z adding 'torch/include/ATen/ops/add_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.9656330Z adding 'torch/include/ATen/ops/add_cpu_dispatch.h' 2025-08-14T20:48:15.9657170Z adding 'torch/include/ATen/ops/add_cuda_dispatch.h' 2025-08-14T20:48:15.9658010Z adding 'torch/include/ATen/ops/add_meta.h' 2025-08-14T20:48:15.9658870Z adding 'torch/include/ATen/ops/add_meta_dispatch.h' 2025-08-14T20:48:15.9659680Z adding 'torch/include/ATen/ops/add_mps_dispatch.h' 2025-08-14T20:48:15.9660690Z adding 'torch/include/ATen/ops/add_native.h' 2025-08-14T20:48:15.9661820Z adding 'torch/include/ATen/ops/add_ops.h' 2025-08-14T20:48:15.9662750Z adding 'torch/include/ATen/ops/addbmm.h' 2025-08-14T20:48:15.9663700Z adding 'torch/include/ATen/ops/addbmm_cpu_dispatch.h' 2025-08-14T20:48:15.9664560Z adding 'torch/include/ATen/ops/addbmm_cuda_dispatch.h' 2025-08-14T20:48:15.9665410Z adding 'torch/include/ATen/ops/addbmm_meta_dispatch.h' 2025-08-14T20:48:15.9666250Z adding 'torch/include/ATen/ops/addbmm_mps_dispatch.h' 2025-08-14T20:48:15.9667110Z adding 'torch/include/ATen/ops/addbmm_native.h' 2025-08-14T20:48:15.9668160Z adding 'torch/include/ATen/ops/addbmm_ops.h' 2025-08-14T20:48:15.9669080Z adding 'torch/include/ATen/ops/addcdiv.h' 2025-08-14T20:48:15.9670100Z adding 'torch/include/ATen/ops/addcdiv_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.9670880Z adding 'torch/include/ATen/ops/addcdiv_cpu_dispatch.h' 2025-08-14T20:48:15.9671700Z adding 'torch/include/ATen/ops/addcdiv_cuda_dispatch.h' 2025-08-14T20:48:15.9672540Z adding 'torch/include/ATen/ops/addcdiv_meta.h' 2025-08-14T20:48:15.9673400Z adding 'torch/include/ATen/ops/addcdiv_meta_dispatch.h' 2025-08-14T20:48:15.9674230Z adding 'torch/include/ATen/ops/addcdiv_mps_dispatch.h' 2025-08-14T20:48:15.9675060Z adding 'torch/include/ATen/ops/addcdiv_native.h' 2025-08-14T20:48:15.9676070Z adding 'torch/include/ATen/ops/addcdiv_ops.h' 2025-08-14T20:48:15.9676990Z adding 'torch/include/ATen/ops/addcmul.h' 2025-08-14T20:48:15.9678010Z adding 'torch/include/ATen/ops/addcmul_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.9678760Z adding 'torch/include/ATen/ops/addcmul_cpu_dispatch.h' 2025-08-14T20:48:15.9679600Z adding 'torch/include/ATen/ops/addcmul_cuda_dispatch.h' 2025-08-14T20:48:15.9680460Z adding 'torch/include/ATen/ops/addcmul_meta.h' 2025-08-14T20:48:15.9681280Z adding 'torch/include/ATen/ops/addcmul_meta_dispatch.h' 2025-08-14T20:48:15.9682110Z adding 'torch/include/ATen/ops/addcmul_mps_dispatch.h' 2025-08-14T20:48:15.9682950Z adding 'torch/include/ATen/ops/addcmul_native.h' 2025-08-14T20:48:15.9683980Z adding 'torch/include/ATen/ops/addcmul_ops.h' 2025-08-14T20:48:15.9684970Z adding 'torch/include/ATen/ops/addmm.h' 2025-08-14T20:48:15.9685990Z adding 'torch/include/ATen/ops/addmm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.9686750Z adding 'torch/include/ATen/ops/addmm_cpu_dispatch.h' 2025-08-14T20:48:15.9687680Z adding 'torch/include/ATen/ops/addmm_cuda_dispatch.h' 2025-08-14T20:48:15.9688510Z adding 'torch/include/ATen/ops/addmm_meta.h' 2025-08-14T20:48:15.9689400Z adding 'torch/include/ATen/ops/addmm_meta_dispatch.h' 2025-08-14T20:48:15.9690240Z adding 'torch/include/ATen/ops/addmm_mps_dispatch.h' 2025-08-14T20:48:15.9691230Z adding 'torch/include/ATen/ops/addmm_native.h' 2025-08-14T20:48:15.9692370Z adding 'torch/include/ATen/ops/addmm_ops.h' 2025-08-14T20:48:15.9693350Z adding 'torch/include/ATen/ops/addmv.h' 2025-08-14T20:48:15.9694370Z adding 'torch/include/ATen/ops/addmv_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.9695150Z adding 'torch/include/ATen/ops/addmv_cpu_dispatch.h' 2025-08-14T20:48:15.9696020Z adding 'torch/include/ATen/ops/addmv_cuda_dispatch.h' 2025-08-14T20:48:15.9696870Z adding 'torch/include/ATen/ops/addmv_meta.h' 2025-08-14T20:48:15.9697720Z adding 'torch/include/ATen/ops/addmv_meta_dispatch.h' 2025-08-14T20:48:15.9698540Z adding 'torch/include/ATen/ops/addmv_mps_dispatch.h' 2025-08-14T20:48:15.9699420Z adding 'torch/include/ATen/ops/addmv_native.h' 2025-08-14T20:48:15.9700420Z adding 'torch/include/ATen/ops/addmv_ops.h' 2025-08-14T20:48:15.9701350Z adding 'torch/include/ATen/ops/addr.h' 2025-08-14T20:48:15.9702340Z adding 'torch/include/ATen/ops/addr_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9703140Z adding 'torch/include/ATen/ops/addr_cpu_dispatch.h' 2025-08-14T20:48:15.9703980Z adding 'torch/include/ATen/ops/addr_cuda_dispatch.h' 2025-08-14T20:48:15.9704810Z adding 'torch/include/ATen/ops/addr_mps_dispatch.h' 2025-08-14T20:48:15.9705690Z adding 'torch/include/ATen/ops/addr_native.h' 2025-08-14T20:48:15.9706700Z adding 'torch/include/ATen/ops/addr_ops.h' 2025-08-14T20:48:15.9707580Z adding 'torch/include/ATen/ops/adjoint.h' 2025-08-14T20:48:15.9708520Z adding 'torch/include/ATen/ops/adjoint_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9709270Z adding 'torch/include/ATen/ops/adjoint_native.h' 2025-08-14T20:48:15.9710160Z adding 'torch/include/ATen/ops/adjoint_ops.h' 2025-08-14T20:48:15.9711260Z adding 'torch/include/ATen/ops/affine_grid_generator.h' 2025-08-14T20:48:15.9712230Z adding 'torch/include/ATen/ops/affine_grid_generator_backward.h' 2025-08-14T20:48:15.9713240Z adding 'torch/include/ATen/ops/affine_grid_generator_backward_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9713980Z adding 'torch/include/ATen/ops/affine_grid_generator_backward_native.h' 2025-08-14T20:48:15.9714880Z adding 'torch/include/ATen/ops/affine_grid_generator_backward_ops.h' 2025-08-14T20:48:15.9715860Z adding 'torch/include/ATen/ops/affine_grid_generator_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9716630Z adding 'torch/include/ATen/ops/affine_grid_generator_native.h' 2025-08-14T20:48:15.9717570Z adding 'torch/include/ATen/ops/affine_grid_generator_ops.h' 2025-08-14T20:48:15.9718390Z adding 'torch/include/ATen/ops/alias.h' 2025-08-14T20:48:15.9719360Z adding 'torch/include/ATen/ops/alias_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9720130Z adding 'torch/include/ATen/ops/alias_copy.h' 2025-08-14T20:48:15.9721160Z adding 'torch/include/ATen/ops/alias_copy_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9722030Z adding 'torch/include/ATen/ops/alias_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.9722770Z adding 'torch/include/ATen/ops/alias_copy_native.h' 2025-08-14T20:48:15.9723670Z adding 'torch/include/ATen/ops/alias_copy_ops.h' 2025-08-14T20:48:15.9724530Z adding 'torch/include/ATen/ops/alias_native.h' 2025-08-14T20:48:15.9725400Z adding 'torch/include/ATen/ops/alias_ops.h' 2025-08-14T20:48:15.9726220Z adding 'torch/include/ATen/ops/align_as.h' 2025-08-14T20:48:15.9727200Z adding 'torch/include/ATen/ops/align_as_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9727920Z adding 'torch/include/ATen/ops/align_as_native.h' 2025-08-14T20:48:15.9728780Z adding 'torch/include/ATen/ops/align_as_ops.h' 2025-08-14T20:48:15.9729650Z adding 'torch/include/ATen/ops/align_tensors.h' 2025-08-14T20:48:15.9730600Z adding 'torch/include/ATen/ops/align_tensors_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9731340Z adding 'torch/include/ATen/ops/align_tensors_native.h' 2025-08-14T20:48:15.9732210Z adding 'torch/include/ATen/ops/align_tensors_ops.h' 2025-08-14T20:48:15.9733020Z adding 'torch/include/ATen/ops/align_to.h' 2025-08-14T20:48:15.9733980Z adding 'torch/include/ATen/ops/align_to_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9734720Z adding 'torch/include/ATen/ops/align_to_native.h' 2025-08-14T20:48:15.9735670Z adding 'torch/include/ATen/ops/align_to_ops.h' 2025-08-14T20:48:15.9736770Z adding 'torch/include/ATen/ops/all.h' 2025-08-14T20:48:15.9737690Z adding 'torch/include/ATen/ops/all_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9738620Z adding 'torch/include/ATen/ops/all_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.9739450Z adding 'torch/include/ATen/ops/all_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9740270Z adding 'torch/include/ATen/ops/all_cpu_dispatch.h' 2025-08-14T20:48:15.9741140Z adding 'torch/include/ATen/ops/all_cuda_dispatch.h' 2025-08-14T20:48:15.9742000Z adding 'torch/include/ATen/ops/all_meta.h' 2025-08-14T20:48:15.9742870Z adding 'torch/include/ATen/ops/all_meta_dispatch.h' 2025-08-14T20:48:15.9743730Z adding 'torch/include/ATen/ops/all_mps_dispatch.h' 2025-08-14T20:48:15.9744640Z adding 'torch/include/ATen/ops/all_native.h' 2025-08-14T20:48:15.9745820Z adding 'torch/include/ATen/ops/all_ops.h' 2025-08-14T20:48:15.9746690Z adding 'torch/include/ATen/ops/allclose.h' 2025-08-14T20:48:15.9747660Z adding 'torch/include/ATen/ops/allclose_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9748390Z adding 'torch/include/ATen/ops/allclose_native.h' 2025-08-14T20:48:15.9749310Z adding 'torch/include/ATen/ops/allclose_ops.h' 2025-08-14T20:48:15.9750160Z adding 'torch/include/ATen/ops/alpha_dropout.h' 2025-08-14T20:48:15.9751120Z adding 'torch/include/ATen/ops/alpha_dropout_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9751880Z adding 'torch/include/ATen/ops/alpha_dropout_native.h' 2025-08-14T20:48:15.9752780Z adding 'torch/include/ATen/ops/alpha_dropout_ops.h' 2025-08-14T20:48:15.9753690Z adding 'torch/include/ATen/ops/amax.h' 2025-08-14T20:48:15.9754690Z adding 'torch/include/ATen/ops/amax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.9755460Z adding 'torch/include/ATen/ops/amax_cpu_dispatch.h' 2025-08-14T20:48:15.9756300Z adding 'torch/include/ATen/ops/amax_cuda_dispatch.h' 2025-08-14T20:48:15.9757110Z adding 'torch/include/ATen/ops/amax_meta.h' 2025-08-14T20:48:15.9757980Z adding 'torch/include/ATen/ops/amax_meta_dispatch.h' 2025-08-14T20:48:15.9759110Z adding 'torch/include/ATen/ops/amax_mps_dispatch.h' 2025-08-14T20:48:15.9759950Z adding 'torch/include/ATen/ops/amax_native.h' 2025-08-14T20:48:15.9760910Z adding 'torch/include/ATen/ops/amax_ops.h' 2025-08-14T20:48:15.9761780Z adding 'torch/include/ATen/ops/amin.h' 2025-08-14T20:48:15.9762760Z adding 'torch/include/ATen/ops/amin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.9763520Z adding 'torch/include/ATen/ops/amin_cpu_dispatch.h' 2025-08-14T20:48:15.9764330Z adding 'torch/include/ATen/ops/amin_cuda_dispatch.h' 2025-08-14T20:48:15.9765150Z adding 'torch/include/ATen/ops/amin_meta.h' 2025-08-14T20:48:15.9766020Z adding 'torch/include/ATen/ops/amin_meta_dispatch.h' 2025-08-14T20:48:15.9766780Z adding 'torch/include/ATen/ops/amin_mps_dispatch.h' 2025-08-14T20:48:15.9767610Z adding 'torch/include/ATen/ops/amin_native.h' 2025-08-14T20:48:15.9768550Z adding 'torch/include/ATen/ops/amin_ops.h' 2025-08-14T20:48:15.9769490Z adding 'torch/include/ATen/ops/aminmax.h' 2025-08-14T20:48:15.9770510Z adding 'torch/include/ATen/ops/aminmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.9771290Z adding 'torch/include/ATen/ops/aminmax_cpu_dispatch.h' 2025-08-14T20:48:15.9772130Z adding 'torch/include/ATen/ops/aminmax_cuda_dispatch.h' 2025-08-14T20:48:15.9772950Z adding 'torch/include/ATen/ops/aminmax_meta.h' 2025-08-14T20:48:15.9773810Z adding 'torch/include/ATen/ops/aminmax_meta_dispatch.h' 2025-08-14T20:48:15.9774640Z adding 'torch/include/ATen/ops/aminmax_mps_dispatch.h' 2025-08-14T20:48:15.9775470Z adding 'torch/include/ATen/ops/aminmax_native.h' 2025-08-14T20:48:15.9776490Z adding 'torch/include/ATen/ops/aminmax_ops.h' 2025-08-14T20:48:15.9777380Z adding 'torch/include/ATen/ops/and.h' 2025-08-14T20:48:15.9778340Z adding 'torch/include/ATen/ops/and_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9779110Z adding 'torch/include/ATen/ops/and_native.h' 2025-08-14T20:48:15.9780150Z adding 'torch/include/ATen/ops/and_ops.h' 2025-08-14T20:48:15.9781000Z adding 'torch/include/ATen/ops/angle.h' 2025-08-14T20:48:15.9781910Z adding 'torch/include/ATen/ops/angle_cpu_dispatch.h' 2025-08-14T20:48:15.9782770Z adding 'torch/include/ATen/ops/angle_cuda_dispatch.h' 2025-08-14T20:48:15.9783560Z adding 'torch/include/ATen/ops/angle_mps_dispatch.h' 2025-08-14T20:48:15.9784380Z adding 'torch/include/ATen/ops/angle_native.h' 2025-08-14T20:48:15.9785300Z adding 'torch/include/ATen/ops/angle_ops.h' 2025-08-14T20:48:15.9786370Z adding 'torch/include/ATen/ops/any.h' 2025-08-14T20:48:15.9787390Z adding 'torch/include/ATen/ops/any_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9788300Z adding 'torch/include/ATen/ops/any_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.9789110Z adding 'torch/include/ATen/ops/any_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9789930Z adding 'torch/include/ATen/ops/any_cpu_dispatch.h' 2025-08-14T20:48:15.9790800Z adding 'torch/include/ATen/ops/any_cuda_dispatch.h' 2025-08-14T20:48:15.9791670Z adding 'torch/include/ATen/ops/any_meta.h' 2025-08-14T20:48:15.9792530Z adding 'torch/include/ATen/ops/any_meta_dispatch.h' 2025-08-14T20:48:15.9793400Z adding 'torch/include/ATen/ops/any_mps_dispatch.h' 2025-08-14T20:48:15.9794330Z adding 'torch/include/ATen/ops/any_native.h' 2025-08-14T20:48:15.9795500Z adding 'torch/include/ATen/ops/any_ops.h' 2025-08-14T20:48:15.9796620Z adding 'torch/include/ATen/ops/arange.h' 2025-08-14T20:48:15.9797680Z adding 'torch/include/ATen/ops/arange_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9798490Z adding 'torch/include/ATen/ops/arange_cpu_dispatch.h' 2025-08-14T20:48:15.9799310Z adding 'torch/include/ATen/ops/arange_cuda_dispatch.h' 2025-08-14T20:48:15.9800140Z adding 'torch/include/ATen/ops/arange_meta_dispatch.h' 2025-08-14T20:48:15.9800940Z adding 'torch/include/ATen/ops/arange_mps_dispatch.h' 2025-08-14T20:48:15.9801870Z adding 'torch/include/ATen/ops/arange_native.h' 2025-08-14T20:48:15.9803040Z adding 'torch/include/ATen/ops/arange_ops.h' 2025-08-14T20:48:15.9803910Z adding 'torch/include/ATen/ops/arccos.h' 2025-08-14T20:48:15.9804900Z adding 'torch/include/ATen/ops/arccos_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9805670Z adding 'torch/include/ATen/ops/arccos_native.h' 2025-08-14T20:48:15.9806680Z adding 'torch/include/ATen/ops/arccos_ops.h' 2025-08-14T20:48:15.9807560Z adding 'torch/include/ATen/ops/arccosh.h' 2025-08-14T20:48:15.9808510Z adding 'torch/include/ATen/ops/arccosh_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9809250Z adding 'torch/include/ATen/ops/arccosh_native.h' 2025-08-14T20:48:15.9810230Z adding 'torch/include/ATen/ops/arccosh_ops.h' 2025-08-14T20:48:15.9811120Z adding 'torch/include/ATen/ops/arcsin.h' 2025-08-14T20:48:15.9812030Z adding 'torch/include/ATen/ops/arcsin_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9812770Z adding 'torch/include/ATen/ops/arcsin_native.h' 2025-08-14T20:48:15.9813710Z adding 'torch/include/ATen/ops/arcsin_ops.h' 2025-08-14T20:48:15.9814570Z adding 'torch/include/ATen/ops/arcsinh.h' 2025-08-14T20:48:15.9815520Z adding 'torch/include/ATen/ops/arcsinh_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9816260Z adding 'torch/include/ATen/ops/arcsinh_native.h' 2025-08-14T20:48:15.9817200Z adding 'torch/include/ATen/ops/arcsinh_ops.h' 2025-08-14T20:48:15.9818050Z adding 'torch/include/ATen/ops/arctan.h' 2025-08-14T20:48:15.9818930Z adding 'torch/include/ATen/ops/arctan2.h' 2025-08-14T20:48:15.9819900Z adding 'torch/include/ATen/ops/arctan2_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9820670Z adding 'torch/include/ATen/ops/arctan2_native.h' 2025-08-14T20:48:15.9821660Z adding 'torch/include/ATen/ops/arctan2_ops.h' 2025-08-14T20:48:15.9822600Z adding 'torch/include/ATen/ops/arctan_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9823340Z adding 'torch/include/ATen/ops/arctan_native.h' 2025-08-14T20:48:15.9824290Z adding 'torch/include/ATen/ops/arctan_ops.h' 2025-08-14T20:48:15.9825180Z adding 'torch/include/ATen/ops/arctanh.h' 2025-08-14T20:48:15.9826110Z adding 'torch/include/ATen/ops/arctanh_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9826860Z adding 'torch/include/ATen/ops/arctanh_native.h' 2025-08-14T20:48:15.9827770Z adding 'torch/include/ATen/ops/arctanh_ops.h' 2025-08-14T20:48:15.9828680Z adding 'torch/include/ATen/ops/argmax.h' 2025-08-14T20:48:15.9829690Z adding 'torch/include/ATen/ops/argmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.9830480Z adding 'torch/include/ATen/ops/argmax_cpu_dispatch.h' 2025-08-14T20:48:15.9831280Z adding 'torch/include/ATen/ops/argmax_cuda_dispatch.h' 2025-08-14T20:48:15.9832110Z adding 'torch/include/ATen/ops/argmax_meta.h' 2025-08-14T20:48:15.9832960Z adding 'torch/include/ATen/ops/argmax_meta_dispatch.h' 2025-08-14T20:48:15.9833770Z adding 'torch/include/ATen/ops/argmax_mps_dispatch.h' 2025-08-14T20:48:15.9834630Z adding 'torch/include/ATen/ops/argmax_native.h' 2025-08-14T20:48:15.9835560Z adding 'torch/include/ATen/ops/argmax_ops.h' 2025-08-14T20:48:15.9836460Z adding 'torch/include/ATen/ops/argmin.h' 2025-08-14T20:48:15.9837460Z adding 'torch/include/ATen/ops/argmin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.9838220Z adding 'torch/include/ATen/ops/argmin_cpu_dispatch.h' 2025-08-14T20:48:15.9839050Z adding 'torch/include/ATen/ops/argmin_cuda_dispatch.h' 2025-08-14T20:48:15.9839870Z adding 'torch/include/ATen/ops/argmin_meta.h' 2025-08-14T20:48:15.9840710Z adding 'torch/include/ATen/ops/argmin_meta_dispatch.h' 2025-08-14T20:48:15.9841540Z adding 'torch/include/ATen/ops/argmin_mps_dispatch.h' 2025-08-14T20:48:15.9842370Z adding 'torch/include/ATen/ops/argmin_native.h' 2025-08-14T20:48:15.9843320Z adding 'torch/include/ATen/ops/argmin_ops.h' 2025-08-14T20:48:15.9844260Z adding 'torch/include/ATen/ops/argsort.h' 2025-08-14T20:48:15.9845250Z adding 'torch/include/ATen/ops/argsort_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9846030Z adding 'torch/include/ATen/ops/argsort_native.h' 2025-08-14T20:48:15.9847060Z adding 'torch/include/ATen/ops/argsort_ops.h' 2025-08-14T20:48:15.9847920Z adding 'torch/include/ATen/ops/argwhere.h' 2025-08-14T20:48:15.9848870Z adding 'torch/include/ATen/ops/argwhere_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9849600Z adding 'torch/include/ATen/ops/argwhere_native.h' 2025-08-14T20:48:15.9850510Z adding 'torch/include/ATen/ops/argwhere_ops.h' 2025-08-14T20:48:15.9851560Z adding 'torch/include/ATen/ops/as_strided.h' 2025-08-14T20:48:15.9852630Z adding 'torch/include/ATen/ops/as_strided_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.9853660Z adding 'torch/include/ATen/ops/as_strided_copy.h' 2025-08-14T20:48:15.9854760Z adding 'torch/include/ATen/ops/as_strided_copy_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9855650Z adding 'torch/include/ATen/ops/as_strided_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.9856400Z adding 'torch/include/ATen/ops/as_strided_copy_native.h' 2025-08-14T20:48:15.9857380Z adding 'torch/include/ATen/ops/as_strided_copy_ops.h' 2025-08-14T20:48:15.9858280Z adding 'torch/include/ATen/ops/as_strided_cpu_dispatch.h' 2025-08-14T20:48:15.9859150Z adding 'torch/include/ATen/ops/as_strided_cuda_dispatch.h' 2025-08-14T20:48:15.9859980Z adding 'torch/include/ATen/ops/as_strided_meta_dispatch.h' 2025-08-14T20:48:15.9860770Z adding 'torch/include/ATen/ops/as_strided_mps_dispatch.h' 2025-08-14T20:48:15.9861620Z adding 'torch/include/ATen/ops/as_strided_native.h' 2025-08-14T20:48:15.9862600Z adding 'torch/include/ATen/ops/as_strided_ops.h' 2025-08-14T20:48:15.9863800Z adding 'torch/include/ATen/ops/as_strided_scatter.h' 2025-08-14T20:48:15.9864840Z adding 'torch/include/ATen/ops/as_strided_scatter_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9865810Z adding 'torch/include/ATen/ops/as_strided_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.9866560Z adding 'torch/include/ATen/ops/as_strided_scatter_native.h' 2025-08-14T20:48:15.9867570Z adding 'torch/include/ATen/ops/as_strided_scatter_ops.h' 2025-08-14T20:48:15.9868400Z adding 'torch/include/ATen/ops/asin.h' 2025-08-14T20:48:15.9869440Z adding 'torch/include/ATen/ops/asin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.9870190Z adding 'torch/include/ATen/ops/asin_cpu_dispatch.h' 2025-08-14T20:48:15.9871020Z adding 'torch/include/ATen/ops/asin_cuda_dispatch.h' 2025-08-14T20:48:15.9871840Z adding 'torch/include/ATen/ops/asin_meta.h' 2025-08-14T20:48:15.9872700Z adding 'torch/include/ATen/ops/asin_meta_dispatch.h' 2025-08-14T20:48:15.9873470Z adding 'torch/include/ATen/ops/asin_mps_dispatch.h' 2025-08-14T20:48:15.9874360Z adding 'torch/include/ATen/ops/asin_native.h' 2025-08-14T20:48:15.9875310Z adding 'torch/include/ATen/ops/asin_ops.h' 2025-08-14T20:48:15.9876200Z adding 'torch/include/ATen/ops/asinh.h' 2025-08-14T20:48:15.9877240Z adding 'torch/include/ATen/ops/asinh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.9877980Z adding 'torch/include/ATen/ops/asinh_cpu_dispatch.h' 2025-08-14T20:48:15.9878800Z adding 'torch/include/ATen/ops/asinh_cuda_dispatch.h' 2025-08-14T20:48:15.9879610Z adding 'torch/include/ATen/ops/asinh_meta.h' 2025-08-14T20:48:15.9880460Z adding 'torch/include/ATen/ops/asinh_meta_dispatch.h' 2025-08-14T20:48:15.9881280Z adding 'torch/include/ATen/ops/asinh_mps_dispatch.h' 2025-08-14T20:48:15.9882150Z adding 'torch/include/ATen/ops/asinh_native.h' 2025-08-14T20:48:15.9883140Z adding 'torch/include/ATen/ops/asinh_ops.h' 2025-08-14T20:48:15.9884030Z adding 'torch/include/ATen/ops/atan.h' 2025-08-14T20:48:15.9884910Z adding 'torch/include/ATen/ops/atan2.h' 2025-08-14T20:48:15.9885950Z adding 'torch/include/ATen/ops/atan2_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.9886740Z adding 'torch/include/ATen/ops/atan2_cpu_dispatch.h' 2025-08-14T20:48:15.9887580Z adding 'torch/include/ATen/ops/atan2_cuda_dispatch.h' 2025-08-14T20:48:15.9888380Z adding 'torch/include/ATen/ops/atan2_meta.h' 2025-08-14T20:48:15.9889250Z adding 'torch/include/ATen/ops/atan2_meta_dispatch.h' 2025-08-14T20:48:15.9890040Z adding 'torch/include/ATen/ops/atan2_mps_dispatch.h' 2025-08-14T20:48:15.9890870Z adding 'torch/include/ATen/ops/atan2_native.h' 2025-08-14T20:48:15.9891850Z adding 'torch/include/ATen/ops/atan2_ops.h' 2025-08-14T20:48:15.9892820Z adding 'torch/include/ATen/ops/atan_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.9893580Z adding 'torch/include/ATen/ops/atan_cpu_dispatch.h' 2025-08-14T20:48:15.9894420Z adding 'torch/include/ATen/ops/atan_cuda_dispatch.h' 2025-08-14T20:48:15.9895220Z adding 'torch/include/ATen/ops/atan_meta.h' 2025-08-14T20:48:15.9896070Z adding 'torch/include/ATen/ops/atan_meta_dispatch.h' 2025-08-14T20:48:15.9896950Z adding 'torch/include/ATen/ops/atan_mps_dispatch.h' 2025-08-14T20:48:15.9897810Z adding 'torch/include/ATen/ops/atan_native.h' 2025-08-14T20:48:15.9898740Z adding 'torch/include/ATen/ops/atan_ops.h' 2025-08-14T20:48:15.9899600Z adding 'torch/include/ATen/ops/atanh.h' 2025-08-14T20:48:15.9900600Z adding 'torch/include/ATen/ops/atanh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.9901330Z adding 'torch/include/ATen/ops/atanh_cpu_dispatch.h' 2025-08-14T20:48:15.9902140Z adding 'torch/include/ATen/ops/atanh_cuda_dispatch.h' 2025-08-14T20:48:15.9902960Z adding 'torch/include/ATen/ops/atanh_meta.h' 2025-08-14T20:48:15.9903780Z adding 'torch/include/ATen/ops/atanh_meta_dispatch.h' 2025-08-14T20:48:15.9904580Z adding 'torch/include/ATen/ops/atanh_mps_dispatch.h' 2025-08-14T20:48:15.9905440Z adding 'torch/include/ATen/ops/atanh_native.h' 2025-08-14T20:48:15.9906370Z adding 'torch/include/ATen/ops/atanh_ops.h' 2025-08-14T20:48:15.9907250Z adding 'torch/include/ATen/ops/atleast_1d.h' 2025-08-14T20:48:15.9908220Z adding 'torch/include/ATen/ops/atleast_1d_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9908950Z adding 'torch/include/ATen/ops/atleast_1d_native.h' 2025-08-14T20:48:15.9909890Z adding 'torch/include/ATen/ops/atleast_1d_ops.h' 2025-08-14T20:48:15.9910780Z adding 'torch/include/ATen/ops/atleast_2d.h' 2025-08-14T20:48:15.9911710Z adding 'torch/include/ATen/ops/atleast_2d_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9912460Z adding 'torch/include/ATen/ops/atleast_2d_native.h' 2025-08-14T20:48:15.9913380Z adding 'torch/include/ATen/ops/atleast_2d_ops.h' 2025-08-14T20:48:15.9914260Z adding 'torch/include/ATen/ops/atleast_3d.h' 2025-08-14T20:48:15.9915220Z adding 'torch/include/ATen/ops/atleast_3d_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9915960Z adding 'torch/include/ATen/ops/atleast_3d_native.h' 2025-08-14T20:48:15.9916880Z adding 'torch/include/ATen/ops/atleast_3d_ops.h' 2025-08-14T20:48:15.9917830Z adding 'torch/include/ATen/ops/avg_pool1d.h' 2025-08-14T20:48:15.9918820Z adding 'torch/include/ATen/ops/avg_pool1d_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9919700Z adding 'torch/include/ATen/ops/avg_pool1d_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9920460Z adding 'torch/include/ATen/ops/avg_pool1d_native.h' 2025-08-14T20:48:15.9921440Z adding 'torch/include/ATen/ops/avg_pool1d_ops.h' 2025-08-14T20:48:15.9922420Z adding 'torch/include/ATen/ops/avg_pool2d.h' 2025-08-14T20:48:15.9928140Z adding 'torch/include/ATen/ops/avg_pool2d_backward.h' 2025-08-14T20:48:15.9928490Z adding 'torch/include/ATen/ops/avg_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.9928620Z adding 'torch/include/ATen/ops/avg_pool2d_backward_cpu_dispatch.h' 2025-08-14T20:48:15.9928750Z adding 'torch/include/ATen/ops/avg_pool2d_backward_cuda_dispatch.h' 2025-08-14T20:48:15.9928850Z adding 'torch/include/ATen/ops/avg_pool2d_backward_meta.h' 2025-08-14T20:48:15.9928980Z adding 'torch/include/ATen/ops/avg_pool2d_backward_meta_dispatch.h' 2025-08-14T20:48:15.9929110Z adding 'torch/include/ATen/ops/avg_pool2d_backward_mps_dispatch.h' 2025-08-14T20:48:15.9929470Z adding 'torch/include/ATen/ops/avg_pool2d_backward_native.h' 2025-08-14T20:48:15.9930530Z adding 'torch/include/ATen/ops/avg_pool2d_backward_ops.h' 2025-08-14T20:48:15.9931610Z adding 'torch/include/ATen/ops/avg_pool2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.9932410Z adding 'torch/include/ATen/ops/avg_pool2d_cpu_dispatch.h' 2025-08-14T20:48:15.9933300Z adding 'torch/include/ATen/ops/avg_pool2d_cuda_dispatch.h' 2025-08-14T20:48:15.9934410Z adding 'torch/include/ATen/ops/avg_pool2d_meta.h' 2025-08-14T20:48:15.9935320Z adding 'torch/include/ATen/ops/avg_pool2d_meta_dispatch.h' 2025-08-14T20:48:15.9936160Z adding 'torch/include/ATen/ops/avg_pool2d_mps_dispatch.h' 2025-08-14T20:48:15.9937100Z adding 'torch/include/ATen/ops/avg_pool2d_native.h' 2025-08-14T20:48:15.9938100Z adding 'torch/include/ATen/ops/avg_pool2d_ops.h' 2025-08-14T20:48:15.9939120Z adding 'torch/include/ATen/ops/avg_pool3d.h' 2025-08-14T20:48:15.9940100Z adding 'torch/include/ATen/ops/avg_pool3d_backward.h' 2025-08-14T20:48:15.9941140Z adding 'torch/include/ATen/ops/avg_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.9941910Z adding 'torch/include/ATen/ops/avg_pool3d_backward_cpu_dispatch.h' 2025-08-14T20:48:15.9942720Z adding 'torch/include/ATen/ops/avg_pool3d_backward_cuda_dispatch.h' 2025-08-14T20:48:15.9943590Z adding 'torch/include/ATen/ops/avg_pool3d_backward_meta.h' 2025-08-14T20:48:15.9944470Z adding 'torch/include/ATen/ops/avg_pool3d_backward_meta_dispatch.h' 2025-08-14T20:48:15.9945280Z adding 'torch/include/ATen/ops/avg_pool3d_backward_mps_dispatch.h' 2025-08-14T20:48:15.9946190Z adding 'torch/include/ATen/ops/avg_pool3d_backward_native.h' 2025-08-14T20:48:15.9947280Z adding 'torch/include/ATen/ops/avg_pool3d_backward_ops.h' 2025-08-14T20:48:15.9948260Z adding 'torch/include/ATen/ops/avg_pool3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.9949170Z adding 'torch/include/ATen/ops/avg_pool3d_cpu_dispatch.h' 2025-08-14T20:48:15.9949940Z adding 'torch/include/ATen/ops/avg_pool3d_cuda_dispatch.h' 2025-08-14T20:48:15.9950790Z adding 'torch/include/ATen/ops/avg_pool3d_meta.h' 2025-08-14T20:48:15.9951850Z adding 'torch/include/ATen/ops/avg_pool3d_meta_dispatch.h' 2025-08-14T20:48:15.9952520Z adding 'torch/include/ATen/ops/avg_pool3d_mps_dispatch.h' 2025-08-14T20:48:15.9953490Z adding 'torch/include/ATen/ops/avg_pool3d_native.h' 2025-08-14T20:48:15.9954490Z adding 'torch/include/ATen/ops/avg_pool3d_ops.h' 2025-08-14T20:48:15.9955480Z adding 'torch/include/ATen/ops/baddbmm.h' 2025-08-14T20:48:15.9956500Z adding 'torch/include/ATen/ops/baddbmm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:15.9957300Z adding 'torch/include/ATen/ops/baddbmm_cpu_dispatch.h' 2025-08-14T20:48:15.9958320Z adding 'torch/include/ATen/ops/baddbmm_cuda_dispatch.h' 2025-08-14T20:48:15.9959080Z adding 'torch/include/ATen/ops/baddbmm_meta.h' 2025-08-14T20:48:15.9959940Z adding 'torch/include/ATen/ops/baddbmm_meta_dispatch.h' 2025-08-14T20:48:15.9960910Z adding 'torch/include/ATen/ops/baddbmm_mps_dispatch.h' 2025-08-14T20:48:15.9961710Z adding 'torch/include/ATen/ops/baddbmm_native.h' 2025-08-14T20:48:15.9962870Z adding 'torch/include/ATen/ops/baddbmm_ops.h' 2025-08-14T20:48:15.9964050Z adding 'torch/include/ATen/ops/bartlett_window.h' 2025-08-14T20:48:15.9965460Z adding 'torch/include/ATen/ops/bartlett_window_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9966230Z adding 'torch/include/ATen/ops/bartlett_window_native.h' 2025-08-14T20:48:15.9967310Z adding 'torch/include/ATen/ops/bartlett_window_ops.h' 2025-08-14T20:48:15.9968200Z adding 'torch/include/ATen/ops/batch_norm.h' 2025-08-14T20:48:15.9969140Z adding 'torch/include/ATen/ops/batch_norm_backward.h' 2025-08-14T20:48:15.9970090Z adding 'torch/include/ATen/ops/batch_norm_backward_cpu_dispatch.h' 2025-08-14T20:48:15.9971000Z adding 'torch/include/ATen/ops/batch_norm_backward_cuda_dispatch.h' 2025-08-14T20:48:15.9971960Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt.h' 2025-08-14T20:48:15.9973070Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9973980Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_cuda_dispatch.h' 2025-08-14T20:48:15.9974920Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_native.h' 2025-08-14T20:48:15.9976120Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_ops.h' 2025-08-14T20:48:15.9977010Z adding 'torch/include/ATen/ops/batch_norm_backward_mps_dispatch.h' 2025-08-14T20:48:15.9977950Z adding 'torch/include/ATen/ops/batch_norm_backward_native.h' 2025-08-14T20:48:15.9978990Z adding 'torch/include/ATen/ops/batch_norm_backward_ops.h' 2025-08-14T20:48:15.9980070Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce.h' 2025-08-14T20:48:15.9981140Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9982040Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_cuda_dispatch.h' 2025-08-14T20:48:15.9982890Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_native.h' 2025-08-14T20:48:15.9983960Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_ops.h' 2025-08-14T20:48:15.9984910Z adding 'torch/include/ATen/ops/batch_norm_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:15.9985800Z adding 'torch/include/ATen/ops/batch_norm_elemt.h' 2025-08-14T20:48:15.9986790Z adding 'torch/include/ATen/ops/batch_norm_elemt_cuda_dispatch.h' 2025-08-14T20:48:15.9987720Z adding 'torch/include/ATen/ops/batch_norm_elemt_native.h' 2025-08-14T20:48:15.9988730Z adding 'torch/include/ATen/ops/batch_norm_elemt_ops.h' 2025-08-14T20:48:15.9989790Z adding 'torch/include/ATen/ops/batch_norm_gather_stats.h' 2025-08-14T20:48:15.9990890Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9991790Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_cuda_dispatch.h' 2025-08-14T20:48:15.9992700Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_native.h' 2025-08-14T20:48:15.9993780Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_ops.h' 2025-08-14T20:48:15.9994840Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts.h' 2025-08-14T20:48:15.9996040Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:15.9996900Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_cuda_dispatch.h' 2025-08-14T20:48:15.9997960Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_native.h' 2025-08-14T20:48:15.9999050Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_ops.h' 2025-08-14T20:48:15.9999890Z adding 'torch/include/ATen/ops/batch_norm_native.h' 2025-08-14T20:48:16.0000890Z adding 'torch/include/ATen/ops/batch_norm_ops.h' 2025-08-14T20:48:16.0001870Z adding 'torch/include/ATen/ops/batch_norm_stats.h' 2025-08-14T20:48:16.0002910Z adding 'torch/include/ATen/ops/batch_norm_stats_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0003780Z adding 'torch/include/ATen/ops/batch_norm_stats_cuda_dispatch.h' 2025-08-14T20:48:16.0004680Z adding 'torch/include/ATen/ops/batch_norm_stats_native.h' 2025-08-14T20:48:16.0005710Z adding 'torch/include/ATen/ops/batch_norm_stats_ops.h' 2025-08-14T20:48:16.0006810Z adding 'torch/include/ATen/ops/batch_norm_update_stats.h' 2025-08-14T20:48:16.0007880Z adding 'torch/include/ATen/ops/batch_norm_update_stats_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0008780Z adding 'torch/include/ATen/ops/batch_norm_update_stats_cpu_dispatch.h' 2025-08-14T20:48:16.0009610Z adding 'torch/include/ATen/ops/batch_norm_update_stats_cuda_dispatch.h' 2025-08-14T20:48:16.0010500Z adding 'torch/include/ATen/ops/batch_norm_update_stats_native.h' 2025-08-14T20:48:16.0011550Z adding 'torch/include/ATen/ops/batch_norm_update_stats_ops.h' 2025-08-14T20:48:16.0012600Z adding 'torch/include/ATen/ops/bernoulli.h' 2025-08-14T20:48:16.0013660Z adding 'torch/include/ATen/ops/bernoulli_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0014750Z adding 'torch/include/ATen/ops/bernoulli_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.0015610Z adding 'torch/include/ATen/ops/bernoulli_cpu_dispatch.h' 2025-08-14T20:48:16.0016560Z adding 'torch/include/ATen/ops/bernoulli_cuda_dispatch.h' 2025-08-14T20:48:16.0017630Z adding 'torch/include/ATen/ops/bernoulli_meta_dispatch.h' 2025-08-14T20:48:16.0018630Z adding 'torch/include/ATen/ops/bernoulli_mps_dispatch.h' 2025-08-14T20:48:16.0019620Z adding 'torch/include/ATen/ops/bernoulli_native.h' 2025-08-14T20:48:16.0021090Z adding 'torch/include/ATen/ops/bernoulli_ops.h' 2025-08-14T20:48:16.0022040Z adding 'torch/include/ATen/ops/bilinear.h' 2025-08-14T20:48:16.0023080Z adding 'torch/include/ATen/ops/bilinear_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0023930Z adding 'torch/include/ATen/ops/bilinear_native.h' 2025-08-14T20:48:16.0025020Z adding 'torch/include/ATen/ops/bilinear_ops.h' 2025-08-14T20:48:16.0025990Z adding 'torch/include/ATen/ops/binary_cross_entropy.h' 2025-08-14T20:48:16.0027120Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward.h' 2025-08-14T20:48:16.0028120Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_cpu_dispatch.h' 2025-08-14T20:48:16.0029090Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_cuda_dispatch.h' 2025-08-14T20:48:16.0029920Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_mps_dispatch.h' 2025-08-14T20:48:16.0030900Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_native.h' 2025-08-14T20:48:16.0032050Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_ops.h' 2025-08-14T20:48:16.0032980Z adding 'torch/include/ATen/ops/binary_cross_entropy_cpu_dispatch.h' 2025-08-14T20:48:16.0033840Z adding 'torch/include/ATen/ops/binary_cross_entropy_cuda_dispatch.h' 2025-08-14T20:48:16.0034730Z adding 'torch/include/ATen/ops/binary_cross_entropy_mps_dispatch.h' 2025-08-14T20:48:16.0035670Z adding 'torch/include/ATen/ops/binary_cross_entropy_native.h' 2025-08-14T20:48:16.0036700Z adding 'torch/include/ATen/ops/binary_cross_entropy_ops.h' 2025-08-14T20:48:16.0037760Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits.h' 2025-08-14T20:48:16.0038850Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0039660Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits_native.h' 2025-08-14T20:48:16.0040650Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits_ops.h' 2025-08-14T20:48:16.0041690Z adding 'torch/include/ATen/ops/bincount.h' 2025-08-14T20:48:16.0042730Z adding 'torch/include/ATen/ops/bincount_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0043560Z adding 'torch/include/ATen/ops/bincount_cpu_dispatch.h' 2025-08-14T20:48:16.0044420Z adding 'torch/include/ATen/ops/bincount_cuda_dispatch.h' 2025-08-14T20:48:16.0045280Z adding 'torch/include/ATen/ops/bincount_mps_dispatch.h' 2025-08-14T20:48:16.0046270Z adding 'torch/include/ATen/ops/bincount_native.h' 2025-08-14T20:48:16.0047320Z adding 'torch/include/ATen/ops/bincount_ops.h' 2025-08-14T20:48:16.0048250Z adding 'torch/include/ATen/ops/binomial.h' 2025-08-14T20:48:16.0049270Z adding 'torch/include/ATen/ops/binomial_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0050110Z adding 'torch/include/ATen/ops/binomial_cpu_dispatch.h' 2025-08-14T20:48:16.0051070Z adding 'torch/include/ATen/ops/binomial_cuda_dispatch.h' 2025-08-14T20:48:16.0051970Z adding 'torch/include/ATen/ops/binomial_native.h' 2025-08-14T20:48:16.0053010Z adding 'torch/include/ATen/ops/binomial_ops.h' 2025-08-14T20:48:16.0054040Z adding 'torch/include/ATen/ops/bitwise_and.h' 2025-08-14T20:48:16.0055110Z adding 'torch/include/ATen/ops/bitwise_and_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0056100Z adding 'torch/include/ATen/ops/bitwise_and_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.0056910Z adding 'torch/include/ATen/ops/bitwise_and_cpu_dispatch.h' 2025-08-14T20:48:16.0057810Z adding 'torch/include/ATen/ops/bitwise_and_cuda_dispatch.h' 2025-08-14T20:48:16.0058660Z adding 'torch/include/ATen/ops/bitwise_and_meta.h' 2025-08-14T20:48:16.0059570Z adding 'torch/include/ATen/ops/bitwise_and_meta_dispatch.h' 2025-08-14T20:48:16.0060420Z adding 'torch/include/ATen/ops/bitwise_and_mps_dispatch.h' 2025-08-14T20:48:16.0061320Z adding 'torch/include/ATen/ops/bitwise_and_native.h' 2025-08-14T20:48:16.0062490Z adding 'torch/include/ATen/ops/bitwise_and_ops.h' 2025-08-14T20:48:16.0063580Z adding 'torch/include/ATen/ops/bitwise_left_shift.h' 2025-08-14T20:48:16.0064640Z adding 'torch/include/ATen/ops/bitwise_left_shift_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0065580Z adding 'torch/include/ATen/ops/bitwise_left_shift_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.0066370Z adding 'torch/include/ATen/ops/bitwise_left_shift_cpu_dispatch.h' 2025-08-14T20:48:16.0067240Z adding 'torch/include/ATen/ops/bitwise_left_shift_cuda_dispatch.h' 2025-08-14T20:48:16.0068100Z adding 'torch/include/ATen/ops/bitwise_left_shift_meta.h' 2025-08-14T20:48:16.0068990Z adding 'torch/include/ATen/ops/bitwise_left_shift_meta_dispatch.h' 2025-08-14T20:48:16.0069840Z adding 'torch/include/ATen/ops/bitwise_left_shift_mps_dispatch.h' 2025-08-14T20:48:16.0070740Z adding 'torch/include/ATen/ops/bitwise_left_shift_native.h' 2025-08-14T20:48:16.0071950Z adding 'torch/include/ATen/ops/bitwise_left_shift_ops.h' 2025-08-14T20:48:16.0072860Z adding 'torch/include/ATen/ops/bitwise_not.h' 2025-08-14T20:48:16.0073920Z adding 'torch/include/ATen/ops/bitwise_not_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.0074740Z adding 'torch/include/ATen/ops/bitwise_not_cpu_dispatch.h' 2025-08-14T20:48:16.0075580Z adding 'torch/include/ATen/ops/bitwise_not_cuda_dispatch.h' 2025-08-14T20:48:16.0076460Z adding 'torch/include/ATen/ops/bitwise_not_meta.h' 2025-08-14T20:48:16.0077390Z adding 'torch/include/ATen/ops/bitwise_not_meta_dispatch.h' 2025-08-14T20:48:16.0078300Z adding 'torch/include/ATen/ops/bitwise_not_mps_dispatch.h' 2025-08-14T20:48:16.0079310Z adding 'torch/include/ATen/ops/bitwise_not_native.h' 2025-08-14T20:48:16.0080360Z adding 'torch/include/ATen/ops/bitwise_not_ops.h' 2025-08-14T20:48:16.0081500Z adding 'torch/include/ATen/ops/bitwise_or.h' 2025-08-14T20:48:16.0082610Z adding 'torch/include/ATen/ops/bitwise_or_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0083600Z adding 'torch/include/ATen/ops/bitwise_or_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.0084390Z adding 'torch/include/ATen/ops/bitwise_or_cpu_dispatch.h' 2025-08-14T20:48:16.0085290Z adding 'torch/include/ATen/ops/bitwise_or_cuda_dispatch.h' 2025-08-14T20:48:16.0086230Z adding 'torch/include/ATen/ops/bitwise_or_meta.h' 2025-08-14T20:48:16.0087140Z adding 'torch/include/ATen/ops/bitwise_or_meta_dispatch.h' 2025-08-14T20:48:16.0087970Z adding 'torch/include/ATen/ops/bitwise_or_mps_dispatch.h' 2025-08-14T20:48:16.0088870Z adding 'torch/include/ATen/ops/bitwise_or_native.h' 2025-08-14T20:48:16.0090060Z adding 'torch/include/ATen/ops/bitwise_or_ops.h' 2025-08-14T20:48:16.0091140Z adding 'torch/include/ATen/ops/bitwise_right_shift.h' 2025-08-14T20:48:16.0092210Z adding 'torch/include/ATen/ops/bitwise_right_shift_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0093110Z adding 'torch/include/ATen/ops/bitwise_right_shift_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.0093880Z adding 'torch/include/ATen/ops/bitwise_right_shift_cpu_dispatch.h' 2025-08-14T20:48:16.0094700Z adding 'torch/include/ATen/ops/bitwise_right_shift_cuda_dispatch.h' 2025-08-14T20:48:16.0095600Z adding 'torch/include/ATen/ops/bitwise_right_shift_meta.h' 2025-08-14T20:48:16.0096480Z adding 'torch/include/ATen/ops/bitwise_right_shift_meta_dispatch.h' 2025-08-14T20:48:16.0097340Z adding 'torch/include/ATen/ops/bitwise_right_shift_mps_dispatch.h' 2025-08-14T20:48:16.0098280Z adding 'torch/include/ATen/ops/bitwise_right_shift_native.h' 2025-08-14T20:48:16.0099500Z adding 'torch/include/ATen/ops/bitwise_right_shift_ops.h' 2025-08-14T20:48:16.0100550Z adding 'torch/include/ATen/ops/bitwise_xor.h' 2025-08-14T20:48:16.0101630Z adding 'torch/include/ATen/ops/bitwise_xor_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0102600Z adding 'torch/include/ATen/ops/bitwise_xor_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.0103360Z adding 'torch/include/ATen/ops/bitwise_xor_cpu_dispatch.h' 2025-08-14T20:48:16.0104220Z adding 'torch/include/ATen/ops/bitwise_xor_cuda_dispatch.h' 2025-08-14T20:48:16.0105050Z adding 'torch/include/ATen/ops/bitwise_xor_meta.h' 2025-08-14T20:48:16.0105880Z adding 'torch/include/ATen/ops/bitwise_xor_meta_dispatch.h' 2025-08-14T20:48:16.0106710Z adding 'torch/include/ATen/ops/bitwise_xor_mps_dispatch.h' 2025-08-14T20:48:16.0107600Z adding 'torch/include/ATen/ops/bitwise_xor_native.h' 2025-08-14T20:48:16.0108780Z adding 'torch/include/ATen/ops/bitwise_xor_ops.h' 2025-08-14T20:48:16.0109940Z adding 'torch/include/ATen/ops/blackman_window.h' 2025-08-14T20:48:16.0110990Z adding 'torch/include/ATen/ops/blackman_window_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0111790Z adding 'torch/include/ATen/ops/blackman_window_native.h' 2025-08-14T20:48:16.0112880Z adding 'torch/include/ATen/ops/blackman_window_ops.h' 2025-08-14T20:48:16.0113790Z adding 'torch/include/ATen/ops/block_diag.h' 2025-08-14T20:48:16.0114790Z adding 'torch/include/ATen/ops/block_diag_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0115570Z adding 'torch/include/ATen/ops/block_diag_native.h' 2025-08-14T20:48:16.0116530Z adding 'torch/include/ATen/ops/block_diag_ops.h' 2025-08-14T20:48:16.0117470Z adding 'torch/include/ATen/ops/bmm.h' 2025-08-14T20:48:16.0118480Z adding 'torch/include/ATen/ops/bmm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.0119250Z adding 'torch/include/ATen/ops/bmm_cpu_dispatch.h' 2025-08-14T20:48:16.0120150Z adding 'torch/include/ATen/ops/bmm_cuda_dispatch.h' 2025-08-14T20:48:16.0121000Z adding 'torch/include/ATen/ops/bmm_meta.h' 2025-08-14T20:48:16.0121850Z adding 'torch/include/ATen/ops/bmm_meta_dispatch.h' 2025-08-14T20:48:16.0122670Z adding 'torch/include/ATen/ops/bmm_mps_dispatch.h' 2025-08-14T20:48:16.0123620Z adding 'torch/include/ATen/ops/bmm_native.h' 2025-08-14T20:48:16.0124630Z adding 'torch/include/ATen/ops/bmm_ops.h' 2025-08-14T20:48:16.0125500Z adding 'torch/include/ATen/ops/broadcast_tensors.h' 2025-08-14T20:48:16.0126480Z adding 'torch/include/ATen/ops/broadcast_tensors_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0127240Z adding 'torch/include/ATen/ops/broadcast_tensors_native.h' 2025-08-14T20:48:16.0128120Z adding 'torch/include/ATen/ops/broadcast_tensors_ops.h' 2025-08-14T20:48:16.0129050Z adding 'torch/include/ATen/ops/broadcast_to.h' 2025-08-14T20:48:16.0130050Z adding 'torch/include/ATen/ops/broadcast_to_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0130810Z adding 'torch/include/ATen/ops/broadcast_to_native.h' 2025-08-14T20:48:16.0131710Z adding 'torch/include/ATen/ops/broadcast_to_ops.h' 2025-08-14T20:48:16.0132660Z adding 'torch/include/ATen/ops/bucketize.h' 2025-08-14T20:48:16.0133660Z adding 'torch/include/ATen/ops/bucketize_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0134480Z adding 'torch/include/ATen/ops/bucketize_cpu_dispatch.h' 2025-08-14T20:48:16.0135340Z adding 'torch/include/ATen/ops/bucketize_cuda_dispatch.h' 2025-08-14T20:48:16.0136190Z adding 'torch/include/ATen/ops/bucketize_mps_dispatch.h' 2025-08-14T20:48:16.0137090Z adding 'torch/include/ATen/ops/bucketize_native.h' 2025-08-14T20:48:16.0138160Z adding 'torch/include/ATen/ops/bucketize_ops.h' 2025-08-14T20:48:16.0139060Z adding 'torch/include/ATen/ops/can_cast.h' 2025-08-14T20:48:16.0140060Z adding 'torch/include/ATen/ops/can_cast_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0140840Z adding 'torch/include/ATen/ops/can_cast_native.h' 2025-08-14T20:48:16.0141760Z adding 'torch/include/ATen/ops/can_cast_ops.h' 2025-08-14T20:48:16.0142620Z adding 'torch/include/ATen/ops/cartesian_prod.h' 2025-08-14T20:48:16.0143600Z adding 'torch/include/ATen/ops/cartesian_prod_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0144350Z adding 'torch/include/ATen/ops/cartesian_prod_native.h' 2025-08-14T20:48:16.0145220Z adding 'torch/include/ATen/ops/cartesian_prod_ops.h' 2025-08-14T20:48:16.0146220Z adding 'torch/include/ATen/ops/cat.h' 2025-08-14T20:48:16.0147210Z adding 'torch/include/ATen/ops/cat_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.0148070Z adding 'torch/include/ATen/ops/cat_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0148880Z adding 'torch/include/ATen/ops/cat_cpu_dispatch.h' 2025-08-14T20:48:16.0149720Z adding 'torch/include/ATen/ops/cat_cuda_dispatch.h' 2025-08-14T20:48:16.0150910Z adding 'torch/include/ATen/ops/cat_meta.h' 2025-08-14T20:48:16.0151800Z adding 'torch/include/ATen/ops/cat_meta_dispatch.h' 2025-08-14T20:48:16.0152600Z adding 'torch/include/ATen/ops/cat_mps_dispatch.h' 2025-08-14T20:48:16.0153560Z adding 'torch/include/ATen/ops/cat_native.h' 2025-08-14T20:48:16.0154580Z adding 'torch/include/ATen/ops/cat_ops.h' 2025-08-14T20:48:16.0155540Z adding 'torch/include/ATen/ops/cauchy.h' 2025-08-14T20:48:16.0156590Z adding 'torch/include/ATen/ops/cauchy_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0157360Z adding 'torch/include/ATen/ops/cauchy_cpu_dispatch.h' 2025-08-14T20:48:16.0158280Z adding 'torch/include/ATen/ops/cauchy_cuda_dispatch.h' 2025-08-14T20:48:16.0159050Z adding 'torch/include/ATen/ops/cauchy_meta_dispatch.h' 2025-08-14T20:48:16.0159940Z adding 'torch/include/ATen/ops/cauchy_native.h' 2025-08-14T20:48:16.0161010Z adding 'torch/include/ATen/ops/cauchy_ops.h' 2025-08-14T20:48:16.0161800Z adding 'torch/include/ATen/ops/ccol_indices.h' 2025-08-14T20:48:16.0162780Z adding 'torch/include/ATen/ops/ccol_indices_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0163660Z adding 'torch/include/ATen/ops/ccol_indices_copy.h' 2025-08-14T20:48:16.0164650Z adding 'torch/include/ATen/ops/ccol_indices_copy_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0165550Z adding 'torch/include/ATen/ops/ccol_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.0166260Z adding 'torch/include/ATen/ops/ccol_indices_copy_native.h' 2025-08-14T20:48:16.0167240Z adding 'torch/include/ATen/ops/ccol_indices_copy_ops.h' 2025-08-14T20:48:16.0168060Z adding 'torch/include/ATen/ops/ccol_indices_native.h' 2025-08-14T20:48:16.0168990Z adding 'torch/include/ATen/ops/ccol_indices_ops.h' 2025-08-14T20:48:16.0169840Z adding 'torch/include/ATen/ops/cdist.h' 2025-08-14T20:48:16.0170800Z adding 'torch/include/ATen/ops/cdist_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0171570Z adding 'torch/include/ATen/ops/cdist_native.h' 2025-08-14T20:48:16.0172490Z adding 'torch/include/ATen/ops/cdist_ops.h' 2025-08-14T20:48:16.0173380Z adding 'torch/include/ATen/ops/ceil.h' 2025-08-14T20:48:16.0174380Z adding 'torch/include/ATen/ops/ceil_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.0175160Z adding 'torch/include/ATen/ops/ceil_cpu_dispatch.h' 2025-08-14T20:48:16.0176050Z adding 'torch/include/ATen/ops/ceil_cuda_dispatch.h' 2025-08-14T20:48:16.0176890Z adding 'torch/include/ATen/ops/ceil_meta.h' 2025-08-14T20:48:16.0177780Z adding 'torch/include/ATen/ops/ceil_meta_dispatch.h' 2025-08-14T20:48:16.0178610Z adding 'torch/include/ATen/ops/ceil_mps_dispatch.h' 2025-08-14T20:48:16.0179460Z adding 'torch/include/ATen/ops/ceil_native.h' 2025-08-14T20:48:16.0180450Z adding 'torch/include/ATen/ops/ceil_ops.h' 2025-08-14T20:48:16.0181370Z adding 'torch/include/ATen/ops/celu.h' 2025-08-14T20:48:16.0182340Z adding 'torch/include/ATen/ops/celu_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0183460Z adding 'torch/include/ATen/ops/celu_native.h' 2025-08-14T20:48:16.0184450Z adding 'torch/include/ATen/ops/celu_ops.h' 2025-08-14T20:48:16.0185340Z adding 'torch/include/ATen/ops/chain_matmul.h' 2025-08-14T20:48:16.0186300Z adding 'torch/include/ATen/ops/chain_matmul_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0187060Z adding 'torch/include/ATen/ops/chain_matmul_native.h' 2025-08-14T20:48:16.0187980Z adding 'torch/include/ATen/ops/chain_matmul_ops.h' 2025-08-14T20:48:16.0188780Z adding 'torch/include/ATen/ops/chalf.h' 2025-08-14T20:48:16.0189760Z adding 'torch/include/ATen/ops/chalf_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0190500Z adding 'torch/include/ATen/ops/chalf_native.h' 2025-08-14T20:48:16.0191410Z adding 'torch/include/ATen/ops/chalf_ops.h' 2025-08-14T20:48:16.0192440Z adding 'torch/include/ATen/ops/channel_shuffle.h' 2025-08-14T20:48:16.0193450Z adding 'torch/include/ATen/ops/channel_shuffle_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0194230Z adding 'torch/include/ATen/ops/channel_shuffle_cpu_dispatch.h' 2025-08-14T20:48:16.0195060Z adding 'torch/include/ATen/ops/channel_shuffle_cuda_dispatch.h' 2025-08-14T20:48:16.0195880Z adding 'torch/include/ATen/ops/channel_shuffle_native.h' 2025-08-14T20:48:16.0196850Z adding 'torch/include/ATen/ops/channel_shuffle_ops.h' 2025-08-14T20:48:16.0202120Z adding 'torch/include/ATen/ops/cholesky.h' 2025-08-14T20:48:16.0202360Z adding 'torch/include/ATen/ops/cholesky_cpu_dispatch.h' 2025-08-14T20:48:16.0202630Z adding 'torch/include/ATen/ops/cholesky_cuda_dispatch.h' 2025-08-14T20:48:16.0202880Z adding 'torch/include/ATen/ops/cholesky_inverse.h' 2025-08-14T20:48:16.0203150Z adding 'torch/include/ATen/ops/cholesky_inverse_cpu_dispatch.h' 2025-08-14T20:48:16.0203460Z adding 'torch/include/ATen/ops/cholesky_inverse_cuda_dispatch.h' 2025-08-14T20:48:16.0203760Z adding 'torch/include/ATen/ops/cholesky_inverse_native.h' 2025-08-14T20:48:16.0204020Z adding 'torch/include/ATen/ops/cholesky_inverse_ops.h' 2025-08-14T20:48:16.0204460Z adding 'torch/include/ATen/ops/cholesky_mps_dispatch.h' 2025-08-14T20:48:16.0205310Z adding 'torch/include/ATen/ops/cholesky_native.h' 2025-08-14T20:48:16.0206210Z adding 'torch/include/ATen/ops/cholesky_ops.h' 2025-08-14T20:48:16.0207160Z adding 'torch/include/ATen/ops/cholesky_solve.h' 2025-08-14T20:48:16.0208180Z adding 'torch/include/ATen/ops/cholesky_solve_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0208930Z adding 'torch/include/ATen/ops/cholesky_solve_native.h' 2025-08-14T20:48:16.0209930Z adding 'torch/include/ATen/ops/cholesky_solve_ops.h' 2025-08-14T20:48:16.0210820Z adding 'torch/include/ATen/ops/choose_qparams_optimized.h' 2025-08-14T20:48:16.0211840Z adding 'torch/include/ATen/ops/choose_qparams_optimized_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0212600Z adding 'torch/include/ATen/ops/choose_qparams_optimized_native.h' 2025-08-14T20:48:16.0213550Z adding 'torch/include/ATen/ops/choose_qparams_optimized_ops.h' 2025-08-14T20:48:16.0214410Z adding 'torch/include/ATen/ops/chunk.h' 2025-08-14T20:48:16.0215400Z adding 'torch/include/ATen/ops/chunk_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0216190Z adding 'torch/include/ATen/ops/chunk_native.h' 2025-08-14T20:48:16.0217140Z adding 'torch/include/ATen/ops/chunk_ops.h' 2025-08-14T20:48:16.0218200Z adding 'torch/include/ATen/ops/clamp.h' 2025-08-14T20:48:16.0219290Z adding 'torch/include/ATen/ops/clamp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.0220090Z adding 'torch/include/ATen/ops/clamp_cpu_dispatch.h' 2025-08-14T20:48:16.0220980Z adding 'torch/include/ATen/ops/clamp_cuda_dispatch.h' 2025-08-14T20:48:16.0221930Z adding 'torch/include/ATen/ops/clamp_max.h' 2025-08-14T20:48:16.0222950Z adding 'torch/include/ATen/ops/clamp_max_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.0223820Z adding 'torch/include/ATen/ops/clamp_max_cpu_dispatch.h' 2025-08-14T20:48:16.0224670Z adding 'torch/include/ATen/ops/clamp_max_cuda_dispatch.h' 2025-08-14T20:48:16.0225550Z adding 'torch/include/ATen/ops/clamp_max_meta.h' 2025-08-14T20:48:16.0226440Z adding 'torch/include/ATen/ops/clamp_max_meta_dispatch.h' 2025-08-14T20:48:16.0227310Z adding 'torch/include/ATen/ops/clamp_max_mps_dispatch.h' 2025-08-14T20:48:16.0228180Z adding 'torch/include/ATen/ops/clamp_max_native.h' 2025-08-14T20:48:16.0229300Z adding 'torch/include/ATen/ops/clamp_max_ops.h' 2025-08-14T20:48:16.0230230Z adding 'torch/include/ATen/ops/clamp_meta.h' 2025-08-14T20:48:16.0231210Z adding 'torch/include/ATen/ops/clamp_meta_dispatch.h' 2025-08-14T20:48:16.0232180Z adding 'torch/include/ATen/ops/clamp_min.h' 2025-08-14T20:48:16.0233230Z adding 'torch/include/ATen/ops/clamp_min_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.0234040Z adding 'torch/include/ATen/ops/clamp_min_cpu_dispatch.h' 2025-08-14T20:48:16.0234910Z adding 'torch/include/ATen/ops/clamp_min_cuda_dispatch.h' 2025-08-14T20:48:16.0235790Z adding 'torch/include/ATen/ops/clamp_min_meta.h' 2025-08-14T20:48:16.0236660Z adding 'torch/include/ATen/ops/clamp_min_meta_dispatch.h' 2025-08-14T20:48:16.0237550Z adding 'torch/include/ATen/ops/clamp_min_mps_dispatch.h' 2025-08-14T20:48:16.0238430Z adding 'torch/include/ATen/ops/clamp_min_native.h' 2025-08-14T20:48:16.0239590Z adding 'torch/include/ATen/ops/clamp_min_ops.h' 2025-08-14T20:48:16.0240500Z adding 'torch/include/ATen/ops/clamp_mps_dispatch.h' 2025-08-14T20:48:16.0241390Z adding 'torch/include/ATen/ops/clamp_native.h' 2025-08-14T20:48:16.0242590Z adding 'torch/include/ATen/ops/clamp_ops.h' 2025-08-14T20:48:16.0243640Z adding 'torch/include/ATen/ops/clip.h' 2025-08-14T20:48:16.0244690Z adding 'torch/include/ATen/ops/clip_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0245510Z adding 'torch/include/ATen/ops/clip_native.h' 2025-08-14T20:48:16.0246700Z adding 'torch/include/ATen/ops/clip_ops.h' 2025-08-14T20:48:16.0247610Z adding 'torch/include/ATen/ops/clone.h' 2025-08-14T20:48:16.0248580Z adding 'torch/include/ATen/ops/clone_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0249370Z adding 'torch/include/ATen/ops/clone_native.h' 2025-08-14T20:48:16.0250320Z adding 'torch/include/ATen/ops/clone_ops.h' 2025-08-14T20:48:16.0251170Z adding 'torch/include/ATen/ops/coalesce.h' 2025-08-14T20:48:16.0252150Z adding 'torch/include/ATen/ops/coalesce_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0252900Z adding 'torch/include/ATen/ops/coalesce_native.h' 2025-08-14T20:48:16.0253800Z adding 'torch/include/ATen/ops/coalesce_ops.h' 2025-08-14T20:48:16.0254970Z adding 'torch/include/ATen/ops/col2im.h' 2025-08-14T20:48:16.0255970Z adding 'torch/include/ATen/ops/col2im_cpu_dispatch.h' 2025-08-14T20:48:16.0256850Z adding 'torch/include/ATen/ops/col2im_cuda_dispatch.h' 2025-08-14T20:48:16.0257710Z adding 'torch/include/ATen/ops/col2im_mps_dispatch.h' 2025-08-14T20:48:16.0258630Z adding 'torch/include/ATen/ops/col2im_native.h' 2025-08-14T20:48:16.0259660Z adding 'torch/include/ATen/ops/col2im_ops.h' 2025-08-14T20:48:16.0260500Z adding 'torch/include/ATen/ops/col_indices.h' 2025-08-14T20:48:16.0261570Z adding 'torch/include/ATen/ops/col_indices_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0262320Z adding 'torch/include/ATen/ops/col_indices_copy.h' 2025-08-14T20:48:16.0263330Z adding 'torch/include/ATen/ops/col_indices_copy_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0264210Z adding 'torch/include/ATen/ops/col_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.0264940Z adding 'torch/include/ATen/ops/col_indices_copy_native.h' 2025-08-14T20:48:16.0265870Z adding 'torch/include/ATen/ops/col_indices_copy_ops.h' 2025-08-14T20:48:16.0266680Z adding 'torch/include/ATen/ops/col_indices_native.h' 2025-08-14T20:48:16.0267600Z adding 'torch/include/ATen/ops/col_indices_ops.h' 2025-08-14T20:48:16.0268470Z adding 'torch/include/ATen/ops/column_stack.h' 2025-08-14T20:48:16.0269460Z adding 'torch/include/ATen/ops/column_stack_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0270250Z adding 'torch/include/ATen/ops/column_stack_native.h' 2025-08-14T20:48:16.0271180Z adding 'torch/include/ATen/ops/column_stack_ops.h' 2025-08-14T20:48:16.0272040Z adding 'torch/include/ATen/ops/combinations.h' 2025-08-14T20:48:16.0273020Z adding 'torch/include/ATen/ops/combinations_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0273780Z adding 'torch/include/ATen/ops/combinations_native.h' 2025-08-14T20:48:16.0274660Z adding 'torch/include/ATen/ops/combinations_ops.h' 2025-08-14T20:48:16.0275550Z adding 'torch/include/ATen/ops/complex.h' 2025-08-14T20:48:16.0276520Z adding 'torch/include/ATen/ops/complex_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0277340Z adding 'torch/include/ATen/ops/complex_cpu_dispatch.h' 2025-08-14T20:48:16.0278170Z adding 'torch/include/ATen/ops/complex_cuda_dispatch.h' 2025-08-14T20:48:16.0278990Z adding 'torch/include/ATen/ops/complex_mps_dispatch.h' 2025-08-14T20:48:16.0279840Z adding 'torch/include/ATen/ops/complex_native.h' 2025-08-14T20:48:16.0280830Z adding 'torch/include/ATen/ops/complex_ops.h' 2025-08-14T20:48:16.0281780Z adding 'torch/include/ATen/ops/concat.h' 2025-08-14T20:48:16.0282840Z adding 'torch/include/ATen/ops/concat_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0283650Z adding 'torch/include/ATen/ops/concat_native.h' 2025-08-14T20:48:16.0284730Z adding 'torch/include/ATen/ops/concat_ops.h' 2025-08-14T20:48:16.0285660Z adding 'torch/include/ATen/ops/concatenate.h' 2025-08-14T20:48:16.0286680Z adding 'torch/include/ATen/ops/concatenate_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0287460Z adding 'torch/include/ATen/ops/concatenate_native.h' 2025-08-14T20:48:16.0288510Z adding 'torch/include/ATen/ops/concatenate_ops.h' 2025-08-14T20:48:16.0289410Z adding 'torch/include/ATen/ops/conj.h' 2025-08-14T20:48:16.0290360Z adding 'torch/include/ATen/ops/conj_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0291160Z adding 'torch/include/ATen/ops/conj_native.h' 2025-08-14T20:48:16.0292020Z adding 'torch/include/ATen/ops/conj_ops.h' 2025-08-14T20:48:16.0292930Z adding 'torch/include/ATen/ops/conj_physical.h' 2025-08-14T20:48:16.0293890Z adding 'torch/include/ATen/ops/conj_physical_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0294770Z adding 'torch/include/ATen/ops/conj_physical_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0295570Z adding 'torch/include/ATen/ops/conj_physical_cpu_dispatch.h' 2025-08-14T20:48:16.0296420Z adding 'torch/include/ATen/ops/conj_physical_cuda_dispatch.h' 2025-08-14T20:48:16.0297250Z adding 'torch/include/ATen/ops/conj_physical_mps_dispatch.h' 2025-08-14T20:48:16.0298130Z adding 'torch/include/ATen/ops/conj_physical_native.h' 2025-08-14T20:48:16.0299080Z adding 'torch/include/ATen/ops/conj_physical_ops.h' 2025-08-14T20:48:16.0300150Z adding 'torch/include/ATen/ops/constant_pad_nd.h' 2025-08-14T20:48:16.0301200Z adding 'torch/include/ATen/ops/constant_pad_nd_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0302060Z adding 'torch/include/ATen/ops/constant_pad_nd_mps_dispatch.h' 2025-08-14T20:48:16.0302860Z adding 'torch/include/ATen/ops/constant_pad_nd_native.h' 2025-08-14T20:48:16.0303820Z adding 'torch/include/ATen/ops/constant_pad_nd_ops.h' 2025-08-14T20:48:16.0304640Z adding 'torch/include/ATen/ops/contiguous.h' 2025-08-14T20:48:16.0305640Z adding 'torch/include/ATen/ops/contiguous_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0306390Z adding 'torch/include/ATen/ops/contiguous_native.h' 2025-08-14T20:48:16.0307300Z adding 'torch/include/ATen/ops/contiguous_ops.h' 2025-08-14T20:48:16.0308410Z adding 'torch/include/ATen/ops/conv1d.h' 2025-08-14T20:48:16.0309490Z adding 'torch/include/ATen/ops/conv1d_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0310320Z adding 'torch/include/ATen/ops/conv1d_native.h' 2025-08-14T20:48:16.0311320Z adding 'torch/include/ATen/ops/conv1d_ops.h' 2025-08-14T20:48:16.0312440Z adding 'torch/include/ATen/ops/conv2d.h' 2025-08-14T20:48:16.0313520Z adding 'torch/include/ATen/ops/conv2d_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0314310Z adding 'torch/include/ATen/ops/conv2d_native.h' 2025-08-14T20:48:16.0315340Z adding 'torch/include/ATen/ops/conv2d_ops.h' 2025-08-14T20:48:16.0316400Z adding 'torch/include/ATen/ops/conv3d.h' 2025-08-14T20:48:16.0317440Z adding 'torch/include/ATen/ops/conv3d_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0318260Z adding 'torch/include/ATen/ops/conv3d_native.h' 2025-08-14T20:48:16.0319210Z adding 'torch/include/ATen/ops/conv3d_ops.h' 2025-08-14T20:48:16.0320540Z adding 'torch/include/ATen/ops/conv_depthwise3d.h' 2025-08-14T20:48:16.0321670Z adding 'torch/include/ATen/ops/conv_depthwise3d_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0322540Z adding 'torch/include/ATen/ops/conv_depthwise3d_cuda_dispatch.h' 2025-08-14T20:48:16.0323420Z adding 'torch/include/ATen/ops/conv_depthwise3d_native.h' 2025-08-14T20:48:16.0324480Z adding 'torch/include/ATen/ops/conv_depthwise3d_ops.h' 2025-08-14T20:48:16.0325370Z adding 'torch/include/ATen/ops/conv_tbc.h' 2025-08-14T20:48:16.0326250Z adding 'torch/include/ATen/ops/conv_tbc_backward.h' 2025-08-14T20:48:16.0327290Z adding 'torch/include/ATen/ops/conv_tbc_backward_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0328080Z adding 'torch/include/ATen/ops/conv_tbc_backward_native.h' 2025-08-14T20:48:16.0329040Z adding 'torch/include/ATen/ops/conv_tbc_backward_ops.h' 2025-08-14T20:48:16.0330060Z adding 'torch/include/ATen/ops/conv_tbc_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0330830Z adding 'torch/include/ATen/ops/conv_tbc_native.h' 2025-08-14T20:48:16.0331780Z adding 'torch/include/ATen/ops/conv_tbc_ops.h' 2025-08-14T20:48:16.0332850Z adding 'torch/include/ATen/ops/conv_transpose1d.h' 2025-08-14T20:48:16.0333860Z adding 'torch/include/ATen/ops/conv_transpose1d_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0334670Z adding 'torch/include/ATen/ops/conv_transpose1d_native.h' 2025-08-14T20:48:16.0335610Z adding 'torch/include/ATen/ops/conv_transpose1d_ops.h' 2025-08-14T20:48:16.0336630Z adding 'torch/include/ATen/ops/conv_transpose2d.h' 2025-08-14T20:48:16.0337730Z adding 'torch/include/ATen/ops/conv_transpose2d_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0338530Z adding 'torch/include/ATen/ops/conv_transpose2d_native.h' 2025-08-14T20:48:16.0339480Z adding 'torch/include/ATen/ops/conv_transpose2d_ops.h' 2025-08-14T20:48:16.0340480Z adding 'torch/include/ATen/ops/conv_transpose3d.h' 2025-08-14T20:48:16.0341490Z adding 'torch/include/ATen/ops/conv_transpose3d_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0342260Z adding 'torch/include/ATen/ops/conv_transpose3d_native.h' 2025-08-14T20:48:16.0343280Z adding 'torch/include/ATen/ops/conv_transpose3d_ops.h' 2025-08-14T20:48:16.0344490Z adding 'torch/include/ATen/ops/convolution.h' 2025-08-14T20:48:16.0346000Z adding 'torch/include/ATen/ops/convolution_backward.h' 2025-08-14T20:48:16.0347160Z adding 'torch/include/ATen/ops/convolution_backward_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0348030Z adding 'torch/include/ATen/ops/convolution_backward_cuda_dispatch.h' 2025-08-14T20:48:16.0348900Z adding 'torch/include/ATen/ops/convolution_backward_native.h' 2025-08-14T20:48:16.0350000Z adding 'torch/include/ATen/ops/convolution_backward_ops.h' 2025-08-14T20:48:16.0351420Z adding 'torch/include/ATen/ops/convolution_backward_overrideable.h' 2025-08-14T20:48:16.0352690Z adding 'torch/include/ATen/ops/convolution_backward_overrideable_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0353500Z adding 'torch/include/ATen/ops/convolution_backward_overrideable_native.h' 2025-08-14T20:48:16.0354580Z adding 'torch/include/ATen/ops/convolution_backward_overrideable_ops.h' 2025-08-14T20:48:16.0355590Z adding 'torch/include/ATen/ops/convolution_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0356380Z adding 'torch/include/ATen/ops/convolution_native.h' 2025-08-14T20:48:16.0357420Z adding 'torch/include/ATen/ops/convolution_ops.h' 2025-08-14T20:48:16.0358680Z adding 'torch/include/ATen/ops/convolution_overrideable.h' 2025-08-14T20:48:16.0359800Z adding 'torch/include/ATen/ops/convolution_overrideable_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0360600Z adding 'torch/include/ATen/ops/convolution_overrideable_native.h' 2025-08-14T20:48:16.0361620Z adding 'torch/include/ATen/ops/convolution_overrideable_ops.h' 2025-08-14T20:48:16.0362490Z adding 'torch/include/ATen/ops/copy.h' 2025-08-14T20:48:16.0363460Z adding 'torch/include/ATen/ops/copy_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0364370Z adding 'torch/include/ATen/ops/copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.0365120Z adding 'torch/include/ATen/ops/copy_meta_dispatch.h' 2025-08-14T20:48:16.0366030Z adding 'torch/include/ATen/ops/copy_native.h' 2025-08-14T20:48:16.0367040Z adding 'torch/include/ATen/ops/copy_ops.h' 2025-08-14T20:48:16.0368010Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse.h' 2025-08-14T20:48:16.0369010Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0369840Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_meta_dispatch.h' 2025-08-14T20:48:16.0370680Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_native.h' 2025-08-14T20:48:16.0371670Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_ops.h' 2025-08-14T20:48:16.0372620Z adding 'torch/include/ATen/ops/copysign.h' 2025-08-14T20:48:16.0373620Z adding 'torch/include/ATen/ops/copysign_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0374540Z adding 'torch/include/ATen/ops/copysign_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.0375330Z adding 'torch/include/ATen/ops/copysign_cpu_dispatch.h' 2025-08-14T20:48:16.0376170Z adding 'torch/include/ATen/ops/copysign_cuda_dispatch.h' 2025-08-14T20:48:16.0377000Z adding 'torch/include/ATen/ops/copysign_meta.h' 2025-08-14T20:48:16.0377900Z adding 'torch/include/ATen/ops/copysign_meta_dispatch.h' 2025-08-14T20:48:16.0378730Z adding 'torch/include/ATen/ops/copysign_mps_dispatch.h' 2025-08-14T20:48:16.0379580Z adding 'torch/include/ATen/ops/copysign_native.h' 2025-08-14T20:48:16.0380670Z adding 'torch/include/ATen/ops/copysign_ops.h' 2025-08-14T20:48:16.0381530Z adding 'torch/include/ATen/ops/corrcoef.h' 2025-08-14T20:48:16.0382500Z adding 'torch/include/ATen/ops/corrcoef_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0383250Z adding 'torch/include/ATen/ops/corrcoef_native.h' 2025-08-14T20:48:16.0384130Z adding 'torch/include/ATen/ops/corrcoef_ops.h' 2025-08-14T20:48:16.0385000Z adding 'torch/include/ATen/ops/cos.h' 2025-08-14T20:48:16.0386040Z adding 'torch/include/ATen/ops/cos_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.0386770Z adding 'torch/include/ATen/ops/cos_cpu_dispatch.h' 2025-08-14T20:48:16.0387560Z adding 'torch/include/ATen/ops/cos_cuda_dispatch.h' 2025-08-14T20:48:16.0388380Z adding 'torch/include/ATen/ops/cos_meta.h' 2025-08-14T20:48:16.0389230Z adding 'torch/include/ATen/ops/cos_meta_dispatch.h' 2025-08-14T20:48:16.0390050Z adding 'torch/include/ATen/ops/cos_mps_dispatch.h' 2025-08-14T20:48:16.0390870Z adding 'torch/include/ATen/ops/cos_native.h' 2025-08-14T20:48:16.0391850Z adding 'torch/include/ATen/ops/cos_ops.h' 2025-08-14T20:48:16.0392740Z adding 'torch/include/ATen/ops/cosh.h' 2025-08-14T20:48:16.0393750Z adding 'torch/include/ATen/ops/cosh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.0394480Z adding 'torch/include/ATen/ops/cosh_cpu_dispatch.h' 2025-08-14T20:48:16.0395300Z adding 'torch/include/ATen/ops/cosh_cuda_dispatch.h' 2025-08-14T20:48:16.0396120Z adding 'torch/include/ATen/ops/cosh_meta.h' 2025-08-14T20:48:16.0397360Z adding 'torch/include/ATen/ops/cosh_meta_dispatch.h' 2025-08-14T20:48:16.0398190Z adding 'torch/include/ATen/ops/cosh_mps_dispatch.h' 2025-08-14T20:48:16.0399020Z adding 'torch/include/ATen/ops/cosh_native.h' 2025-08-14T20:48:16.0399970Z adding 'torch/include/ATen/ops/cosh_ops.h' 2025-08-14T20:48:16.0400900Z adding 'torch/include/ATen/ops/cosine_embedding_loss.h' 2025-08-14T20:48:16.0401900Z adding 'torch/include/ATen/ops/cosine_embedding_loss_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0402830Z adding 'torch/include/ATen/ops/cosine_embedding_loss_native.h' 2025-08-14T20:48:16.0403820Z adding 'torch/include/ATen/ops/cosine_embedding_loss_ops.h' 2025-08-14T20:48:16.0404680Z adding 'torch/include/ATen/ops/cosine_similarity.h' 2025-08-14T20:48:16.0405650Z adding 'torch/include/ATen/ops/cosine_similarity_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0406440Z adding 'torch/include/ATen/ops/cosine_similarity_native.h' 2025-08-14T20:48:16.0407350Z adding 'torch/include/ATen/ops/cosine_similarity_ops.h' 2025-08-14T20:48:16.0408310Z adding 'torch/include/ATen/ops/count_nonzero.h' 2025-08-14T20:48:16.0409320Z adding 'torch/include/ATen/ops/count_nonzero_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0410160Z adding 'torch/include/ATen/ops/count_nonzero_cpu_dispatch.h' 2025-08-14T20:48:16.0411000Z adding 'torch/include/ATen/ops/count_nonzero_cuda_dispatch.h' 2025-08-14T20:48:16.0411800Z adding 'torch/include/ATen/ops/count_nonzero_mps_dispatch.h' 2025-08-14T20:48:16.0412680Z adding 'torch/include/ATen/ops/count_nonzero_native.h' 2025-08-14T20:48:16.0413740Z adding 'torch/include/ATen/ops/count_nonzero_ops.h' 2025-08-14T20:48:16.0414620Z adding 'torch/include/ATen/ops/cov.h' 2025-08-14T20:48:16.0415670Z adding 'torch/include/ATen/ops/cov_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0416410Z adding 'torch/include/ATen/ops/cov_native.h' 2025-08-14T20:48:16.0417400Z adding 'torch/include/ATen/ops/cov_ops.h' 2025-08-14T20:48:16.0418350Z adding 'torch/include/ATen/ops/cross.h' 2025-08-14T20:48:16.0419340Z adding 'torch/include/ATen/ops/cross_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0420260Z adding 'torch/include/ATen/ops/cross_entropy_loss.h' 2025-08-14T20:48:16.0421350Z adding 'torch/include/ATen/ops/cross_entropy_loss_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0422160Z adding 'torch/include/ATen/ops/cross_entropy_loss_native.h' 2025-08-14T20:48:16.0423120Z adding 'torch/include/ATen/ops/cross_entropy_loss_ops.h' 2025-08-14T20:48:16.0423990Z adding 'torch/include/ATen/ops/cross_native.h' 2025-08-14T20:48:16.0424960Z adding 'torch/include/ATen/ops/cross_ops.h' 2025-08-14T20:48:16.0425820Z adding 'torch/include/ATen/ops/crow_indices.h' 2025-08-14T20:48:16.0426820Z adding 'torch/include/ATen/ops/crow_indices_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0427650Z adding 'torch/include/ATen/ops/crow_indices_copy.h' 2025-08-14T20:48:16.0428650Z adding 'torch/include/ATen/ops/crow_indices_copy_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0429600Z adding 'torch/include/ATen/ops/crow_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.0430290Z adding 'torch/include/ATen/ops/crow_indices_copy_native.h' 2025-08-14T20:48:16.0431240Z adding 'torch/include/ATen/ops/crow_indices_copy_ops.h' 2025-08-14T20:48:16.0432070Z adding 'torch/include/ATen/ops/crow_indices_native.h' 2025-08-14T20:48:16.0432990Z adding 'torch/include/ATen/ops/crow_indices_ops.h' 2025-08-14T20:48:16.0433950Z adding 'torch/include/ATen/ops/ctc_loss.h' 2025-08-14T20:48:16.0434960Z adding 'torch/include/ATen/ops/ctc_loss_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0435800Z adding 'torch/include/ATen/ops/ctc_loss_native.h' 2025-08-14T20:48:16.0436860Z adding 'torch/include/ATen/ops/ctc_loss_ops.h' 2025-08-14T20:48:16.0437840Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator.h' 2025-08-14T20:48:16.0438830Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward.h' 2025-08-14T20:48:16.0439860Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0440700Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_cuda_dispatch.h' 2025-08-14T20:48:16.0441560Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_native.h' 2025-08-14T20:48:16.0442580Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_ops.h' 2025-08-14T20:48:16.0443550Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0444380Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_cuda_dispatch.h' 2025-08-14T20:48:16.0445250Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_native.h' 2025-08-14T20:48:16.0446250Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_ops.h' 2025-08-14T20:48:16.0447360Z adding 'torch/include/ATen/ops/cudnn_batch_norm.h' 2025-08-14T20:48:16.0448460Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward.h' 2025-08-14T20:48:16.0449550Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0450430Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_cuda_dispatch.h' 2025-08-14T20:48:16.0451370Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_native.h' 2025-08-14T20:48:16.0452520Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_ops.h' 2025-08-14T20:48:16.0453510Z adding 'torch/include/ATen/ops/cudnn_batch_norm_cuda_dispatch.h' 2025-08-14T20:48:16.0454440Z adding 'torch/include/ATen/ops/cudnn_batch_norm_native.h' 2025-08-14T20:48:16.0455560Z adding 'torch/include/ATen/ops/cudnn_batch_norm_ops.h' 2025-08-14T20:48:16.0456790Z adding 'torch/include/ATen/ops/cudnn_convolution.h' 2025-08-14T20:48:16.0458230Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu.h' 2025-08-14T20:48:16.0459410Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0460290Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_cuda_dispatch.h' 2025-08-14T20:48:16.0461200Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_native.h' 2025-08-14T20:48:16.0462320Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_ops.h' 2025-08-14T20:48:16.0463370Z adding 'torch/include/ATen/ops/cudnn_convolution_cuda_dispatch.h' 2025-08-14T20:48:16.0464220Z adding 'torch/include/ATen/ops/cudnn_convolution_native.h' 2025-08-14T20:48:16.0465230Z adding 'torch/include/ATen/ops/cudnn_convolution_ops.h' 2025-08-14T20:48:16.0466490Z adding 'torch/include/ATen/ops/cudnn_convolution_relu.h' 2025-08-14T20:48:16.0467650Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0468530Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_cuda_dispatch.h' 2025-08-14T20:48:16.0469360Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_native.h' 2025-08-14T20:48:16.0470360Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_ops.h' 2025-08-14T20:48:16.0471640Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose.h' 2025-08-14T20:48:16.0472710Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0473570Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_cuda_dispatch.h' 2025-08-14T20:48:16.0474460Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_native.h' 2025-08-14T20:48:16.0475520Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_ops.h' 2025-08-14T20:48:16.0476390Z adding 'torch/include/ATen/ops/cudnn_grid_sampler.h' 2025-08-14T20:48:16.0477400Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward.h' 2025-08-14T20:48:16.0478390Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0479210Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_cuda_dispatch.h' 2025-08-14T20:48:16.0480090Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_native.h' 2025-08-14T20:48:16.0481040Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_ops.h' 2025-08-14T20:48:16.0482000Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0482800Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_cuda_dispatch.h' 2025-08-14T20:48:16.0483600Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_native.h' 2025-08-14T20:48:16.0484520Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_ops.h' 2025-08-14T20:48:16.0485380Z adding 'torch/include/ATen/ops/cudnn_is_acceptable.h' 2025-08-14T20:48:16.0486320Z adding 'torch/include/ATen/ops/cudnn_is_acceptable_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0487070Z adding 'torch/include/ATen/ops/cudnn_is_acceptable_native.h' 2025-08-14T20:48:16.0487970Z adding 'torch/include/ATen/ops/cudnn_is_acceptable_ops.h' 2025-08-14T20:48:16.0488930Z adding 'torch/include/ATen/ops/cummax.h' 2025-08-14T20:48:16.0489890Z adding 'torch/include/ATen/ops/cummax_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0490790Z adding 'torch/include/ATen/ops/cummax_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0491560Z adding 'torch/include/ATen/ops/cummax_native.h' 2025-08-14T20:48:16.0492620Z adding 'torch/include/ATen/ops/cummax_ops.h' 2025-08-14T20:48:16.0493520Z adding 'torch/include/ATen/ops/cummaxmin_backward.h' 2025-08-14T20:48:16.0494500Z adding 'torch/include/ATen/ops/cummaxmin_backward_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0495250Z adding 'torch/include/ATen/ops/cummaxmin_backward_native.h' 2025-08-14T20:48:16.0496170Z adding 'torch/include/ATen/ops/cummaxmin_backward_ops.h' 2025-08-14T20:48:16.0497090Z adding 'torch/include/ATen/ops/cummin.h' 2025-08-14T20:48:16.0498110Z adding 'torch/include/ATen/ops/cummin_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0498940Z adding 'torch/include/ATen/ops/cummin_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0499720Z adding 'torch/include/ATen/ops/cummin_native.h' 2025-08-14T20:48:16.0500760Z adding 'torch/include/ATen/ops/cummin_ops.h' 2025-08-14T20:48:16.0501750Z adding 'torch/include/ATen/ops/cumprod.h' 2025-08-14T20:48:16.0502640Z adding 'torch/include/ATen/ops/cumprod_backward.h' 2025-08-14T20:48:16.0503620Z adding 'torch/include/ATen/ops/cumprod_backward_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0504380Z adding 'torch/include/ATen/ops/cumprod_backward_native.h' 2025-08-14T20:48:16.0505270Z adding 'torch/include/ATen/ops/cumprod_backward_ops.h' 2025-08-14T20:48:16.0506290Z adding 'torch/include/ATen/ops/cumprod_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.0507150Z adding 'torch/include/ATen/ops/cumprod_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0507970Z adding 'torch/include/ATen/ops/cumprod_cpu_dispatch.h' 2025-08-14T20:48:16.0508800Z adding 'torch/include/ATen/ops/cumprod_cuda_dispatch.h' 2025-08-14T20:48:16.0509630Z adding 'torch/include/ATen/ops/cumprod_meta.h' 2025-08-14T20:48:16.0510540Z adding 'torch/include/ATen/ops/cumprod_meta_dispatch.h' 2025-08-14T20:48:16.0511380Z adding 'torch/include/ATen/ops/cumprod_mps_dispatch.h' 2025-08-14T20:48:16.0512250Z adding 'torch/include/ATen/ops/cumprod_native.h' 2025-08-14T20:48:16.0513400Z adding 'torch/include/ATen/ops/cumprod_ops.h' 2025-08-14T20:48:16.0514390Z adding 'torch/include/ATen/ops/cumsum.h' 2025-08-14T20:48:16.0515420Z adding 'torch/include/ATen/ops/cumsum_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.0516270Z adding 'torch/include/ATen/ops/cumsum_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0521910Z adding 'torch/include/ATen/ops/cumsum_cpu_dispatch.h' 2025-08-14T20:48:16.0522130Z adding 'torch/include/ATen/ops/cumsum_cuda_dispatch.h' 2025-08-14T20:48:16.0522260Z adding 'torch/include/ATen/ops/cumsum_meta.h' 2025-08-14T20:48:16.0522360Z adding 'torch/include/ATen/ops/cumsum_meta_dispatch.h' 2025-08-14T20:48:16.0522450Z adding 'torch/include/ATen/ops/cumsum_mps_dispatch.h' 2025-08-14T20:48:16.0522530Z adding 'torch/include/ATen/ops/cumsum_native.h' 2025-08-14T20:48:16.0522610Z adding 'torch/include/ATen/ops/cumsum_ops.h' 2025-08-14T20:48:16.0523340Z adding 'torch/include/ATen/ops/cumulative_trapezoid.h' 2025-08-14T20:48:16.0524350Z adding 'torch/include/ATen/ops/cumulative_trapezoid_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0525110Z adding 'torch/include/ATen/ops/cumulative_trapezoid_native.h' 2025-08-14T20:48:16.0526050Z adding 'torch/include/ATen/ops/cumulative_trapezoid_ops.h' 2025-08-14T20:48:16.0526850Z adding 'torch/include/ATen/ops/data.h' 2025-08-14T20:48:16.0527800Z adding 'torch/include/ATen/ops/data_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0528550Z adding 'torch/include/ATen/ops/data_native.h' 2025-08-14T20:48:16.0529470Z adding 'torch/include/ATen/ops/data_ops.h' 2025-08-14T20:48:16.0530340Z adding 'torch/include/ATen/ops/deg2rad.h' 2025-08-14T20:48:16.0531320Z adding 'torch/include/ATen/ops/deg2rad_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0532090Z adding 'torch/include/ATen/ops/deg2rad_native.h' 2025-08-14T20:48:16.0533090Z adding 'torch/include/ATen/ops/deg2rad_ops.h' 2025-08-14T20:48:16.0533920Z adding 'torch/include/ATen/ops/dense_dim.h' 2025-08-14T20:48:16.0534890Z adding 'torch/include/ATen/ops/dense_dim_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0535700Z adding 'torch/include/ATen/ops/dense_dim_native.h' 2025-08-14T20:48:16.0536570Z adding 'torch/include/ATen/ops/dense_dim_ops.h' 2025-08-14T20:48:16.0537510Z adding 'torch/include/ATen/ops/dequantize.h' 2025-08-14T20:48:16.0538510Z adding 'torch/include/ATen/ops/dequantize_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0539320Z adding 'torch/include/ATen/ops/dequantize_cpu_dispatch.h' 2025-08-14T20:48:16.0540130Z adding 'torch/include/ATen/ops/dequantize_cuda_dispatch.h' 2025-08-14T20:48:16.0540980Z adding 'torch/include/ATen/ops/dequantize_native.h' 2025-08-14T20:48:16.0542020Z adding 'torch/include/ATen/ops/dequantize_ops.h' 2025-08-14T20:48:16.0542860Z adding 'torch/include/ATen/ops/det.h' 2025-08-14T20:48:16.0543830Z adding 'torch/include/ATen/ops/det_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0544550Z adding 'torch/include/ATen/ops/det_native.h' 2025-08-14T20:48:16.0545440Z adding 'torch/include/ATen/ops/det_ops.h' 2025-08-14T20:48:16.0546280Z adding 'torch/include/ATen/ops/detach.h' 2025-08-14T20:48:16.0547230Z adding 'torch/include/ATen/ops/detach_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0548020Z adding 'torch/include/ATen/ops/detach_copy.h' 2025-08-14T20:48:16.0548970Z adding 'torch/include/ATen/ops/detach_copy_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0549900Z adding 'torch/include/ATen/ops/detach_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.0550650Z adding 'torch/include/ATen/ops/detach_copy_native.h' 2025-08-14T20:48:16.0551570Z adding 'torch/include/ATen/ops/detach_copy_ops.h' 2025-08-14T20:48:16.0552460Z adding 'torch/include/ATen/ops/detach_native.h' 2025-08-14T20:48:16.0553360Z adding 'torch/include/ATen/ops/detach_ops.h' 2025-08-14T20:48:16.0554270Z adding 'torch/include/ATen/ops/diag.h' 2025-08-14T20:48:16.0555190Z adding 'torch/include/ATen/ops/diag_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0556030Z adding 'torch/include/ATen/ops/diag_embed.h' 2025-08-14T20:48:16.0557000Z adding 'torch/include/ATen/ops/diag_embed_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0557920Z adding 'torch/include/ATen/ops/diag_embed_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.0558690Z adding 'torch/include/ATen/ops/diag_embed_native.h' 2025-08-14T20:48:16.0559660Z adding 'torch/include/ATen/ops/diag_embed_ops.h' 2025-08-14T20:48:16.0560510Z adding 'torch/include/ATen/ops/diag_native.h' 2025-08-14T20:48:16.0561420Z adding 'torch/include/ATen/ops/diag_ops.h' 2025-08-14T20:48:16.0562270Z adding 'torch/include/ATen/ops/diagflat.h' 2025-08-14T20:48:16.0563230Z adding 'torch/include/ATen/ops/diagflat_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0563960Z adding 'torch/include/ATen/ops/diagflat_native.h' 2025-08-14T20:48:16.0564840Z adding 'torch/include/ATen/ops/diagflat_ops.h' 2025-08-14T20:48:16.0565720Z adding 'torch/include/ATen/ops/diagonal.h' 2025-08-14T20:48:16.0566840Z adding 'torch/include/ATen/ops/diagonal_backward.h' 2025-08-14T20:48:16.0567910Z adding 'torch/include/ATen/ops/diagonal_backward_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0568680Z adding 'torch/include/ATen/ops/diagonal_backward_native.h' 2025-08-14T20:48:16.0569680Z adding 'torch/include/ATen/ops/diagonal_backward_ops.h' 2025-08-14T20:48:16.0570610Z adding 'torch/include/ATen/ops/diagonal_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0571480Z adding 'torch/include/ATen/ops/diagonal_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0572290Z adding 'torch/include/ATen/ops/diagonal_copy.h' 2025-08-14T20:48:16.0573260Z adding 'torch/include/ATen/ops/diagonal_copy_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0574280Z adding 'torch/include/ATen/ops/diagonal_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.0575010Z adding 'torch/include/ATen/ops/diagonal_copy_native.h' 2025-08-14T20:48:16.0575970Z adding 'torch/include/ATen/ops/diagonal_copy_ops.h' 2025-08-14T20:48:16.0576800Z adding 'torch/include/ATen/ops/diagonal_native.h' 2025-08-14T20:48:16.0577750Z adding 'torch/include/ATen/ops/diagonal_ops.h' 2025-08-14T20:48:16.0578670Z adding 'torch/include/ATen/ops/diagonal_scatter.h' 2025-08-14T20:48:16.0579660Z adding 'torch/include/ATen/ops/diagonal_scatter_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0580560Z adding 'torch/include/ATen/ops/diagonal_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.0581270Z adding 'torch/include/ATen/ops/diagonal_scatter_native.h' 2025-08-14T20:48:16.0582270Z adding 'torch/include/ATen/ops/diagonal_scatter_ops.h' 2025-08-14T20:48:16.0583120Z adding 'torch/include/ATen/ops/diff.h' 2025-08-14T20:48:16.0584120Z adding 'torch/include/ATen/ops/diff_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0584900Z adding 'torch/include/ATen/ops/diff_native.h' 2025-08-14T20:48:16.0585850Z adding 'torch/include/ATen/ops/diff_ops.h' 2025-08-14T20:48:16.0586740Z adding 'torch/include/ATen/ops/digamma.h' 2025-08-14T20:48:16.0587730Z adding 'torch/include/ATen/ops/digamma_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.0588480Z adding 'torch/include/ATen/ops/digamma_cpu_dispatch.h' 2025-08-14T20:48:16.0589320Z adding 'torch/include/ATen/ops/digamma_cuda_dispatch.h' 2025-08-14T20:48:16.0590140Z adding 'torch/include/ATen/ops/digamma_meta.h' 2025-08-14T20:48:16.0591010Z adding 'torch/include/ATen/ops/digamma_meta_dispatch.h' 2025-08-14T20:48:16.0591820Z adding 'torch/include/ATen/ops/digamma_mps_dispatch.h' 2025-08-14T20:48:16.0592690Z adding 'torch/include/ATen/ops/digamma_native.h' 2025-08-14T20:48:16.0593650Z adding 'torch/include/ATen/ops/digamma_ops.h' 2025-08-14T20:48:16.0594540Z adding 'torch/include/ATen/ops/dist.h' 2025-08-14T20:48:16.0595520Z adding 'torch/include/ATen/ops/dist_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0596310Z adding 'torch/include/ATen/ops/dist_native.h' 2025-08-14T20:48:16.0597240Z adding 'torch/include/ATen/ops/dist_ops.h' 2025-08-14T20:48:16.0598300Z adding 'torch/include/ATen/ops/div.h' 2025-08-14T20:48:16.0599320Z adding 'torch/include/ATen/ops/div_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0600240Z adding 'torch/include/ATen/ops/div_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.0601040Z adding 'torch/include/ATen/ops/div_cpu_dispatch.h' 2025-08-14T20:48:16.0601910Z adding 'torch/include/ATen/ops/div_cuda_dispatch.h' 2025-08-14T20:48:16.0602780Z adding 'torch/include/ATen/ops/div_meta.h' 2025-08-14T20:48:16.0603660Z adding 'torch/include/ATen/ops/div_meta_dispatch.h' 2025-08-14T20:48:16.0604490Z adding 'torch/include/ATen/ops/div_mps_dispatch.h' 2025-08-14T20:48:16.0605470Z adding 'torch/include/ATen/ops/div_native.h' 2025-08-14T20:48:16.0606860Z adding 'torch/include/ATen/ops/div_ops.h' 2025-08-14T20:48:16.0607940Z adding 'torch/include/ATen/ops/divide.h' 2025-08-14T20:48:16.0609000Z adding 'torch/include/ATen/ops/divide_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0613310Z adding 'torch/include/ATen/ops/divide_native.h' 2025-08-14T20:48:16.0614300Z adding 'torch/include/ATen/ops/divide_ops.h' 2025-08-14T20:48:16.0615220Z adding 'torch/include/ATen/ops/dot.h' 2025-08-14T20:48:16.0616200Z adding 'torch/include/ATen/ops/dot_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0617030Z adding 'torch/include/ATen/ops/dot_cpu_dispatch.h' 2025-08-14T20:48:16.0617830Z adding 'torch/include/ATen/ops/dot_cuda_dispatch.h' 2025-08-14T20:48:16.0618670Z adding 'torch/include/ATen/ops/dot_mps_dispatch.h' 2025-08-14T20:48:16.0619530Z adding 'torch/include/ATen/ops/dot_native.h' 2025-08-14T20:48:16.0620470Z adding 'torch/include/ATen/ops/dot_ops.h' 2025-08-14T20:48:16.0621340Z adding 'torch/include/ATen/ops/dropout.h' 2025-08-14T20:48:16.0622330Z adding 'torch/include/ATen/ops/dropout_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0623090Z adding 'torch/include/ATen/ops/dropout_native.h' 2025-08-14T20:48:16.0624010Z adding 'torch/include/ATen/ops/dropout_ops.h' 2025-08-14T20:48:16.0624910Z adding 'torch/include/ATen/ops/dsplit.h' 2025-08-14T20:48:16.0625870Z adding 'torch/include/ATen/ops/dsplit_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0626620Z adding 'torch/include/ATen/ops/dsplit_native.h' 2025-08-14T20:48:16.0627590Z adding 'torch/include/ATen/ops/dsplit_ops.h' 2025-08-14T20:48:16.0628520Z adding 'torch/include/ATen/ops/dstack.h' 2025-08-14T20:48:16.0629510Z adding 'torch/include/ATen/ops/dstack_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0630320Z adding 'torch/include/ATen/ops/dstack_native.h' 2025-08-14T20:48:16.0631320Z adding 'torch/include/ATen/ops/dstack_ops.h' 2025-08-14T20:48:16.0632130Z adding 'torch/include/ATen/ops/einsum.h' 2025-08-14T20:48:16.0633140Z adding 'torch/include/ATen/ops/einsum_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0633870Z adding 'torch/include/ATen/ops/einsum_native.h' 2025-08-14T20:48:16.0634790Z adding 'torch/include/ATen/ops/einsum_ops.h' 2025-08-14T20:48:16.0636760Z adding 'torch/include/ATen/ops/elu.h' 2025-08-14T20:48:16.0637390Z adding 'torch/include/ATen/ops/elu_backward.h' 2025-08-14T20:48:16.0638430Z adding 'torch/include/ATen/ops/elu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.0639260Z adding 'torch/include/ATen/ops/elu_backward_cpu_dispatch.h' 2025-08-14T20:48:16.0640110Z adding 'torch/include/ATen/ops/elu_backward_cuda_dispatch.h' 2025-08-14T20:48:16.0640970Z adding 'torch/include/ATen/ops/elu_backward_meta.h' 2025-08-14T20:48:16.0641830Z adding 'torch/include/ATen/ops/elu_backward_meta_dispatch.h' 2025-08-14T20:48:16.0642680Z adding 'torch/include/ATen/ops/elu_backward_mps_dispatch.h' 2025-08-14T20:48:16.0643560Z adding 'torch/include/ATen/ops/elu_backward_native.h' 2025-08-14T20:48:16.0644560Z adding 'torch/include/ATen/ops/elu_backward_ops.h' 2025-08-14T20:48:16.0645580Z adding 'torch/include/ATen/ops/elu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.0646320Z adding 'torch/include/ATen/ops/elu_cpu_dispatch.h' 2025-08-14T20:48:16.0647180Z adding 'torch/include/ATen/ops/elu_cuda_dispatch.h' 2025-08-14T20:48:16.0648020Z adding 'torch/include/ATen/ops/elu_meta.h' 2025-08-14T20:48:16.0648870Z adding 'torch/include/ATen/ops/elu_meta_dispatch.h' 2025-08-14T20:48:16.0649700Z adding 'torch/include/ATen/ops/elu_mps_dispatch.h' 2025-08-14T20:48:16.0650540Z adding 'torch/include/ATen/ops/elu_native.h' 2025-08-14T20:48:16.0651580Z adding 'torch/include/ATen/ops/elu_ops.h' 2025-08-14T20:48:16.0652710Z adding 'torch/include/ATen/ops/embedding.h' 2025-08-14T20:48:16.0653700Z adding 'torch/include/ATen/ops/embedding_backward.h' 2025-08-14T20:48:16.0654740Z adding 'torch/include/ATen/ops/embedding_backward_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0655490Z adding 'torch/include/ATen/ops/embedding_backward_native.h' 2025-08-14T20:48:16.0656440Z adding 'torch/include/ATen/ops/embedding_backward_ops.h' 2025-08-14T20:48:16.0657420Z adding 'torch/include/ATen/ops/embedding_bag.h' 2025-08-14T20:48:16.0658510Z adding 'torch/include/ATen/ops/embedding_bag_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0659310Z adding 'torch/include/ATen/ops/embedding_bag_native.h' 2025-08-14T20:48:16.0660380Z adding 'torch/include/ATen/ops/embedding_bag_ops.h' 2025-08-14T20:48:16.0661420Z adding 'torch/include/ATen/ops/embedding_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0662500Z adding 'torch/include/ATen/ops/embedding_dense_backward.h' 2025-08-14T20:48:16.0663630Z adding 'torch/include/ATen/ops/embedding_dense_backward_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0664540Z adding 'torch/include/ATen/ops/embedding_dense_backward_cpu_dispatch.h' 2025-08-14T20:48:16.0665410Z adding 'torch/include/ATen/ops/embedding_dense_backward_cuda_dispatch.h' 2025-08-14T20:48:16.0666260Z adding 'torch/include/ATen/ops/embedding_dense_backward_mps_dispatch.h' 2025-08-14T20:48:16.0667140Z adding 'torch/include/ATen/ops/embedding_dense_backward_native.h' 2025-08-14T20:48:16.0668160Z adding 'torch/include/ATen/ops/embedding_dense_backward_ops.h' 2025-08-14T20:48:16.0669020Z adding 'torch/include/ATen/ops/embedding_native.h' 2025-08-14T20:48:16.0670000Z adding 'torch/include/ATen/ops/embedding_ops.h' 2025-08-14T20:48:16.0671000Z adding 'torch/include/ATen/ops/embedding_renorm.h' 2025-08-14T20:48:16.0672060Z adding 'torch/include/ATen/ops/embedding_renorm_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0672900Z adding 'torch/include/ATen/ops/embedding_renorm_cpu_dispatch.h' 2025-08-14T20:48:16.0673820Z adding 'torch/include/ATen/ops/embedding_renorm_cuda_dispatch.h' 2025-08-14T20:48:16.0674730Z adding 'torch/include/ATen/ops/embedding_renorm_meta_dispatch.h' 2025-08-14T20:48:16.0675590Z adding 'torch/include/ATen/ops/embedding_renorm_native.h' 2025-08-14T20:48:16.0676630Z adding 'torch/include/ATen/ops/embedding_renorm_ops.h' 2025-08-14T20:48:16.0677570Z adding 'torch/include/ATen/ops/embedding_sparse_backward.h' 2025-08-14T20:48:16.0678630Z adding 'torch/include/ATen/ops/embedding_sparse_backward_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0679430Z adding 'torch/include/ATen/ops/embedding_sparse_backward_native.h' 2025-08-14T20:48:16.0680390Z adding 'torch/include/ATen/ops/embedding_sparse_backward_ops.h' 2025-08-14T20:48:16.0681940Z adding 'torch/include/ATen/ops/empty.h' 2025-08-14T20:48:16.0682920Z adding 'torch/include/ATen/ops/empty_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0683880Z adding 'torch/include/ATen/ops/empty_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0684820Z adding 'torch/include/ATen/ops/empty_cpu_dispatch.h' 2025-08-14T20:48:16.0685800Z adding 'torch/include/ATen/ops/empty_cuda_dispatch.h' 2025-08-14T20:48:16.0686790Z adding 'torch/include/ATen/ops/empty_like.h' 2025-08-14T20:48:16.0687800Z adding 'torch/include/ATen/ops/empty_like_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0688650Z adding 'torch/include/ATen/ops/empty_like_native.h' 2025-08-14T20:48:16.0689720Z adding 'torch/include/ATen/ops/empty_like_ops.h' 2025-08-14T20:48:16.0690620Z adding 'torch/include/ATen/ops/empty_meta_dispatch.h' 2025-08-14T20:48:16.0691490Z adding 'torch/include/ATen/ops/empty_mps_dispatch.h' 2025-08-14T20:48:16.0692540Z adding 'torch/include/ATen/ops/empty_native.h' 2025-08-14T20:48:16.0693710Z adding 'torch/include/ATen/ops/empty_ops.h' 2025-08-14T20:48:16.0694950Z adding 'torch/include/ATen/ops/empty_permuted.h' 2025-08-14T20:48:16.0696070Z adding 'torch/include/ATen/ops/empty_permuted_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0696900Z adding 'torch/include/ATen/ops/empty_permuted_native.h' 2025-08-14T20:48:16.0697960Z adding 'torch/include/ATen/ops/empty_permuted_ops.h' 2025-08-14T20:48:16.0699030Z adding 'torch/include/ATen/ops/empty_quantized.h' 2025-08-14T20:48:16.0700080Z adding 'torch/include/ATen/ops/empty_quantized_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0700960Z adding 'torch/include/ATen/ops/empty_quantized_native.h' 2025-08-14T20:48:16.0702070Z adding 'torch/include/ATen/ops/empty_quantized_ops.h' 2025-08-14T20:48:16.0703380Z adding 'torch/include/ATen/ops/empty_strided.h' 2025-08-14T20:48:16.0704410Z adding 'torch/include/ATen/ops/empty_strided_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0705290Z adding 'torch/include/ATen/ops/empty_strided_cpu_dispatch.h' 2025-08-14T20:48:16.0706350Z adding 'torch/include/ATen/ops/empty_strided_cuda_dispatch.h' 2025-08-14T20:48:16.0707280Z adding 'torch/include/ATen/ops/empty_strided_meta_dispatch.h' 2025-08-14T20:48:16.0708190Z adding 'torch/include/ATen/ops/empty_strided_mps_dispatch.h' 2025-08-14T20:48:16.0709120Z adding 'torch/include/ATen/ops/empty_strided_native.h' 2025-08-14T20:48:16.0710330Z adding 'torch/include/ATen/ops/empty_strided_ops.h' 2025-08-14T20:48:16.0711270Z adding 'torch/include/ATen/ops/eq.h' 2025-08-14T20:48:16.0712310Z adding 'torch/include/ATen/ops/eq_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.0713120Z adding 'torch/include/ATen/ops/eq_cpu_dispatch.h' 2025-08-14T20:48:16.0713950Z adding 'torch/include/ATen/ops/eq_cuda_dispatch.h' 2025-08-14T20:48:16.0714800Z adding 'torch/include/ATen/ops/eq_meta.h' 2025-08-14T20:48:16.0715660Z adding 'torch/include/ATen/ops/eq_meta_dispatch.h' 2025-08-14T20:48:16.0716520Z adding 'torch/include/ATen/ops/eq_mps_dispatch.h' 2025-08-14T20:48:16.0717440Z adding 'torch/include/ATen/ops/eq_native.h' 2025-08-14T20:48:16.0718580Z adding 'torch/include/ATen/ops/eq_ops.h' 2025-08-14T20:48:16.0719450Z adding 'torch/include/ATen/ops/equal.h' 2025-08-14T20:48:16.0720430Z adding 'torch/include/ATen/ops/equal_cpu_dispatch.h' 2025-08-14T20:48:16.0721230Z adding 'torch/include/ATen/ops/equal_cuda_dispatch.h' 2025-08-14T20:48:16.0722040Z adding 'torch/include/ATen/ops/equal_mps_dispatch.h' 2025-08-14T20:48:16.0722840Z adding 'torch/include/ATen/ops/equal_native.h' 2025-08-14T20:48:16.0723830Z adding 'torch/include/ATen/ops/equal_ops.h' 2025-08-14T20:48:16.0724710Z adding 'torch/include/ATen/ops/erf.h' 2025-08-14T20:48:16.0725740Z adding 'torch/include/ATen/ops/erf_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.0726540Z adding 'torch/include/ATen/ops/erf_cpu_dispatch.h' 2025-08-14T20:48:16.0727380Z adding 'torch/include/ATen/ops/erf_cuda_dispatch.h' 2025-08-14T20:48:16.0728310Z adding 'torch/include/ATen/ops/erf_meta.h' 2025-08-14T20:48:16.0729150Z adding 'torch/include/ATen/ops/erf_meta_dispatch.h' 2025-08-14T20:48:16.0729960Z adding 'torch/include/ATen/ops/erf_mps_dispatch.h' 2025-08-14T20:48:16.0730860Z adding 'torch/include/ATen/ops/erf_native.h' 2025-08-14T20:48:16.0731890Z adding 'torch/include/ATen/ops/erf_ops.h' 2025-08-14T20:48:16.0732910Z adding 'torch/include/ATen/ops/erfc.h' 2025-08-14T20:48:16.0733950Z adding 'torch/include/ATen/ops/erfc_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.0734710Z adding 'torch/include/ATen/ops/erfc_cpu_dispatch.h' 2025-08-14T20:48:16.0735600Z adding 'torch/include/ATen/ops/erfc_cuda_dispatch.h' 2025-08-14T20:48:16.0736480Z adding 'torch/include/ATen/ops/erfc_meta.h' 2025-08-14T20:48:16.0737310Z adding 'torch/include/ATen/ops/erfc_meta_dispatch.h' 2025-08-14T20:48:16.0738110Z adding 'torch/include/ATen/ops/erfc_mps_dispatch.h' 2025-08-14T20:48:16.0738940Z adding 'torch/include/ATen/ops/erfc_native.h' 2025-08-14T20:48:16.0739910Z adding 'torch/include/ATen/ops/erfc_ops.h' 2025-08-14T20:48:16.0740810Z adding 'torch/include/ATen/ops/erfinv.h' 2025-08-14T20:48:16.0741840Z adding 'torch/include/ATen/ops/erfinv_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.0742660Z adding 'torch/include/ATen/ops/erfinv_cpu_dispatch.h' 2025-08-14T20:48:16.0743540Z adding 'torch/include/ATen/ops/erfinv_cuda_dispatch.h' 2025-08-14T20:48:16.0744360Z adding 'torch/include/ATen/ops/erfinv_meta.h' 2025-08-14T20:48:16.0745210Z adding 'torch/include/ATen/ops/erfinv_meta_dispatch.h' 2025-08-14T20:48:16.0746020Z adding 'torch/include/ATen/ops/erfinv_mps_dispatch.h' 2025-08-14T20:48:16.0746870Z adding 'torch/include/ATen/ops/erfinv_native.h' 2025-08-14T20:48:16.0747850Z adding 'torch/include/ATen/ops/erfinv_ops.h' 2025-08-14T20:48:16.0748750Z adding 'torch/include/ATen/ops/exp.h' 2025-08-14T20:48:16.0749660Z adding 'torch/include/ATen/ops/exp2.h' 2025-08-14T20:48:16.0750690Z adding 'torch/include/ATen/ops/exp2_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.0751490Z adding 'torch/include/ATen/ops/exp2_cpu_dispatch.h' 2025-08-14T20:48:16.0752310Z adding 'torch/include/ATen/ops/exp2_cuda_dispatch.h' 2025-08-14T20:48:16.0753100Z adding 'torch/include/ATen/ops/exp2_meta.h' 2025-08-14T20:48:16.0753960Z adding 'torch/include/ATen/ops/exp2_meta_dispatch.h' 2025-08-14T20:48:16.0754780Z adding 'torch/include/ATen/ops/exp2_mps_dispatch.h' 2025-08-14T20:48:16.0755660Z adding 'torch/include/ATen/ops/exp2_native.h' 2025-08-14T20:48:16.0756620Z adding 'torch/include/ATen/ops/exp2_ops.h' 2025-08-14T20:48:16.0757610Z adding 'torch/include/ATen/ops/exp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.0758390Z adding 'torch/include/ATen/ops/exp_cpu_dispatch.h' 2025-08-14T20:48:16.0759210Z adding 'torch/include/ATen/ops/exp_cuda_dispatch.h' 2025-08-14T20:48:16.0760030Z adding 'torch/include/ATen/ops/exp_meta.h' 2025-08-14T20:48:16.0760890Z adding 'torch/include/ATen/ops/exp_meta_dispatch.h' 2025-08-14T20:48:16.0761700Z adding 'torch/include/ATen/ops/exp_mps_dispatch.h' 2025-08-14T20:48:16.0762650Z adding 'torch/include/ATen/ops/exp_native.h' 2025-08-14T20:48:16.0763640Z adding 'torch/include/ATen/ops/exp_ops.h' 2025-08-14T20:48:16.0764570Z adding 'torch/include/ATen/ops/expand.h' 2025-08-14T20:48:16.0765470Z adding 'torch/include/ATen/ops/expand_as.h' 2025-08-14T20:48:16.0766520Z adding 'torch/include/ATen/ops/expand_as_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0767280Z adding 'torch/include/ATen/ops/expand_as_native.h' 2025-08-14T20:48:16.0768150Z adding 'torch/include/ATen/ops/expand_as_ops.h' 2025-08-14T20:48:16.0769120Z adding 'torch/include/ATen/ops/expand_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0770100Z adding 'torch/include/ATen/ops/expand_copy.h' 2025-08-14T20:48:16.0771100Z adding 'torch/include/ATen/ops/expand_copy_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0772000Z adding 'torch/include/ATen/ops/expand_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.0772720Z adding 'torch/include/ATen/ops/expand_copy_native.h' 2025-08-14T20:48:16.0773670Z adding 'torch/include/ATen/ops/expand_copy_ops.h' 2025-08-14T20:48:16.0774500Z adding 'torch/include/ATen/ops/expand_native.h' 2025-08-14T20:48:16.0775430Z adding 'torch/include/ATen/ops/expand_ops.h' 2025-08-14T20:48:16.0776380Z adding 'torch/include/ATen/ops/expm1.h' 2025-08-14T20:48:16.0777390Z adding 'torch/include/ATen/ops/expm1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.0778170Z adding 'torch/include/ATen/ops/expm1_cpu_dispatch.h' 2025-08-14T20:48:16.0778960Z adding 'torch/include/ATen/ops/expm1_cuda_dispatch.h' 2025-08-14T20:48:16.0779850Z adding 'torch/include/ATen/ops/expm1_meta.h' 2025-08-14T20:48:16.0780630Z adding 'torch/include/ATen/ops/expm1_meta_dispatch.h' 2025-08-14T20:48:16.0781390Z adding 'torch/include/ATen/ops/expm1_mps_dispatch.h' 2025-08-14T20:48:16.0782240Z adding 'torch/include/ATen/ops/expm1_native.h' 2025-08-14T20:48:16.0783170Z adding 'torch/include/ATen/ops/expm1_ops.h' 2025-08-14T20:48:16.0784090Z adding 'torch/include/ATen/ops/exponential.h' 2025-08-14T20:48:16.0785090Z adding 'torch/include/ATen/ops/exponential_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0785870Z adding 'torch/include/ATen/ops/exponential_cpu_dispatch.h' 2025-08-14T20:48:16.0786700Z adding 'torch/include/ATen/ops/exponential_cuda_dispatch.h' 2025-08-14T20:48:16.0787530Z adding 'torch/include/ATen/ops/exponential_meta_dispatch.h' 2025-08-14T20:48:16.0788330Z adding 'torch/include/ATen/ops/exponential_mps_dispatch.h' 2025-08-14T20:48:16.0789170Z adding 'torch/include/ATen/ops/exponential_native.h' 2025-08-14T20:48:16.0790170Z adding 'torch/include/ATen/ops/exponential_ops.h' 2025-08-14T20:48:16.0791540Z adding 'torch/include/ATen/ops/eye.h' 2025-08-14T20:48:16.0792580Z adding 'torch/include/ATen/ops/eye_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0793430Z adding 'torch/include/ATen/ops/eye_cpu_dispatch.h' 2025-08-14T20:48:16.0794250Z adding 'torch/include/ATen/ops/eye_cuda_dispatch.h' 2025-08-14T20:48:16.0795070Z adding 'torch/include/ATen/ops/eye_meta_dispatch.h' 2025-08-14T20:48:16.0795900Z adding 'torch/include/ATen/ops/eye_mps_dispatch.h' 2025-08-14T20:48:16.0796780Z adding 'torch/include/ATen/ops/eye_native.h' 2025-08-14T20:48:16.0797840Z adding 'torch/include/ATen/ops/eye_ops.h' 2025-08-14T20:48:16.0798810Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine.h' 2025-08-14T20:48:16.0799820Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask.h' 2025-08-14T20:48:16.0800710Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward.h' 2025-08-14T20:48:16.0801700Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0802460Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_native.h' 2025-08-14T20:48:16.0803380Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_ops.h' 2025-08-14T20:48:16.0804370Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0805180Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_cpu_dispatch.h' 2025-08-14T20:48:16.0806020Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_cuda_dispatch.h' 2025-08-14T20:48:16.0806930Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_native.h' 2025-08-14T20:48:16.0807910Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_ops.h' 2025-08-14T20:48:16.0808850Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0809630Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_native.h' 2025-08-14T20:48:16.0810550Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_ops.h' 2025-08-14T20:48:16.0811450Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine.h' 2025-08-14T20:48:16.0812440Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask.h' 2025-08-14T20:48:16.0813340Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward.h' 2025-08-14T20:48:16.0814310Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0815510Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_native.h' 2025-08-14T20:48:16.0817440Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_ops.h' 2025-08-14T20:48:16.0818180Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0818980Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_cpu_dispatch.h' 2025-08-14T20:48:16.0819790Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_cuda_dispatch.h' 2025-08-14T20:48:16.0820630Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_native.h' 2025-08-14T20:48:16.0821650Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_ops.h' 2025-08-14T20:48:16.0822580Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0823370Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_native.h' 2025-08-14T20:48:16.0824350Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_ops.h' 2025-08-14T20:48:16.0825220Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight.h' 2025-08-14T20:48:16.0826180Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0827360Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation.h' 2025-08-14T20:48:16.0828350Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0829130Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_native.h' 2025-08-14T20:48:16.0830030Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_ops.h' 2025-08-14T20:48:16.0830840Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_native.h' 2025-08-14T20:48:16.0831760Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_ops.h' 2025-08-14T20:48:16.0832660Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight.h' 2025-08-14T20:48:16.0833730Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0834750Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation.h' 2025-08-14T20:48:16.0835740Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0836530Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_native.h' 2025-08-14T20:48:16.0837480Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_ops.h' 2025-08-14T20:48:16.0838330Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_native.h' 2025-08-14T20:48:16.0839260Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_ops.h' 2025-08-14T20:48:16.0840120Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight.h' 2025-08-14T20:48:16.0841130Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0841850Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight_native.h' 2025-08-14T20:48:16.0842770Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight_ops.h' 2025-08-14T20:48:16.0843610Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16.h' 2025-08-14T20:48:16.0844570Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0845320Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_native.h' 2025-08-14T20:48:16.0846190Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_ops.h' 2025-08-14T20:48:16.0847050Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix.h' 2025-08-14T20:48:16.0848040Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0848790Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix_native.h' 2025-08-14T20:48:16.0849710Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix_ops.h' 2025-08-14T20:48:16.0850550Z adding 'torch/include/ATen/ops/feature_alpha_dropout.h' 2025-08-14T20:48:16.0851510Z adding 'torch/include/ATen/ops/feature_alpha_dropout_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0852300Z adding 'torch/include/ATen/ops/feature_alpha_dropout_native.h' 2025-08-14T20:48:16.0853260Z adding 'torch/include/ATen/ops/feature_alpha_dropout_ops.h' 2025-08-14T20:48:16.0854210Z adding 'torch/include/ATen/ops/feature_dropout.h' 2025-08-14T20:48:16.0855240Z adding 'torch/include/ATen/ops/feature_dropout_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0856000Z adding 'torch/include/ATen/ops/feature_dropout_native.h' 2025-08-14T20:48:16.0856940Z adding 'torch/include/ATen/ops/feature_dropout_ops.h' 2025-08-14T20:48:16.0858040Z adding 'torch/include/ATen/ops/fft_fft.h' 2025-08-14T20:48:16.0859240Z adding 'torch/include/ATen/ops/fft_fft2.h' 2025-08-14T20:48:16.0860290Z adding 'torch/include/ATen/ops/fft_fft2_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0861070Z adding 'torch/include/ATen/ops/fft_fft2_native.h' 2025-08-14T20:48:16.0862090Z adding 'torch/include/ATen/ops/fft_fft2_ops.h' 2025-08-14T20:48:16.0863210Z adding 'torch/include/ATen/ops/fft_fft_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0863990Z adding 'torch/include/ATen/ops/fft_fft_native.h' 2025-08-14T20:48:16.0864960Z adding 'torch/include/ATen/ops/fft_fft_ops.h' 2025-08-14T20:48:16.0865950Z adding 'torch/include/ATen/ops/fft_fftfreq.h' 2025-08-14T20:48:16.0866980Z adding 'torch/include/ATen/ops/fft_fftfreq_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0867800Z adding 'torch/include/ATen/ops/fft_fftfreq_native.h' 2025-08-14T20:48:16.0868820Z adding 'torch/include/ATen/ops/fft_fftfreq_ops.h' 2025-08-14T20:48:16.0869920Z adding 'torch/include/ATen/ops/fft_fftn.h' 2025-08-14T20:48:16.0870960Z adding 'torch/include/ATen/ops/fft_fftn_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0871750Z adding 'torch/include/ATen/ops/fft_fftn_native.h' 2025-08-14T20:48:16.0872700Z adding 'torch/include/ATen/ops/fft_fftn_ops.h' 2025-08-14T20:48:16.0873570Z adding 'torch/include/ATen/ops/fft_fftshift.h' 2025-08-14T20:48:16.0874540Z adding 'torch/include/ATen/ops/fft_fftshift_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0875300Z adding 'torch/include/ATen/ops/fft_fftshift_native.h' 2025-08-14T20:48:16.0876170Z adding 'torch/include/ATen/ops/fft_fftshift_ops.h' 2025-08-14T20:48:16.0877250Z adding 'torch/include/ATen/ops/fft_hfft.h' 2025-08-14T20:48:16.0878370Z adding 'torch/include/ATen/ops/fft_hfft2.h' 2025-08-14T20:48:16.0879420Z adding 'torch/include/ATen/ops/fft_hfft2_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0880170Z adding 'torch/include/ATen/ops/fft_hfft2_native.h' 2025-08-14T20:48:16.0881140Z adding 'torch/include/ATen/ops/fft_hfft2_ops.h' 2025-08-14T20:48:16.0882170Z adding 'torch/include/ATen/ops/fft_hfft_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0882920Z adding 'torch/include/ATen/ops/fft_hfft_native.h' 2025-08-14T20:48:16.0883920Z adding 'torch/include/ATen/ops/fft_hfft_ops.h' 2025-08-14T20:48:16.0884960Z adding 'torch/include/ATen/ops/fft_hfftn.h' 2025-08-14T20:48:16.0886020Z adding 'torch/include/ATen/ops/fft_hfftn_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0886800Z adding 'torch/include/ATen/ops/fft_hfftn_native.h' 2025-08-14T20:48:16.0887750Z adding 'torch/include/ATen/ops/fft_hfftn_ops.h' 2025-08-14T20:48:16.0888870Z adding 'torch/include/ATen/ops/fft_ifft.h' 2025-08-14T20:48:16.0889980Z adding 'torch/include/ATen/ops/fft_ifft2.h' 2025-08-14T20:48:16.0891000Z adding 'torch/include/ATen/ops/fft_ifft2_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0891770Z adding 'torch/include/ATen/ops/fft_ifft2_native.h' 2025-08-14T20:48:16.0892720Z adding 'torch/include/ATen/ops/fft_ifft2_ops.h' 2025-08-14T20:48:16.0893720Z adding 'torch/include/ATen/ops/fft_ifft_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0894500Z adding 'torch/include/ATen/ops/fft_ifft_native.h' 2025-08-14T20:48:16.0895430Z adding 'torch/include/ATen/ops/fft_ifft_ops.h' 2025-08-14T20:48:16.0896520Z adding 'torch/include/ATen/ops/fft_ifftn.h' 2025-08-14T20:48:16.0897540Z adding 'torch/include/ATen/ops/fft_ifftn_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0898350Z adding 'torch/include/ATen/ops/fft_ifftn_native.h' 2025-08-14T20:48:16.0899260Z adding 'torch/include/ATen/ops/fft_ifftn_ops.h' 2025-08-14T20:48:16.0900120Z adding 'torch/include/ATen/ops/fft_ifftshift.h' 2025-08-14T20:48:16.0901070Z adding 'torch/include/ATen/ops/fft_ifftshift_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0901810Z adding 'torch/include/ATen/ops/fft_ifftshift_native.h' 2025-08-14T20:48:16.0902690Z adding 'torch/include/ATen/ops/fft_ifftshift_ops.h' 2025-08-14T20:48:16.0903730Z adding 'torch/include/ATen/ops/fft_ihfft.h' 2025-08-14T20:48:16.0904850Z adding 'torch/include/ATen/ops/fft_ihfft2.h' 2025-08-14T20:48:16.0905960Z adding 'torch/include/ATen/ops/fft_ihfft2_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0906680Z adding 'torch/include/ATen/ops/fft_ihfft2_native.h' 2025-08-14T20:48:16.0907620Z adding 'torch/include/ATen/ops/fft_ihfft2_ops.h' 2025-08-14T20:48:16.0908640Z adding 'torch/include/ATen/ops/fft_ihfft_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0909400Z adding 'torch/include/ATen/ops/fft_ihfft_native.h' 2025-08-14T20:48:16.0910350Z adding 'torch/include/ATen/ops/fft_ihfft_ops.h' 2025-08-14T20:48:16.0911430Z adding 'torch/include/ATen/ops/fft_ihfftn.h' 2025-08-14T20:48:16.0913270Z adding 'torch/include/ATen/ops/fft_ihfftn_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0914260Z adding 'torch/include/ATen/ops/fft_ihfftn_native.h' 2025-08-14T20:48:16.0915900Z adding 'torch/include/ATen/ops/fft_ihfftn_ops.h' 2025-08-14T20:48:16.0917240Z adding 'torch/include/ATen/ops/fft_irfft.h' 2025-08-14T20:48:16.0918860Z adding 'torch/include/ATen/ops/fft_irfft2.h' 2025-08-14T20:48:16.0920060Z adding 'torch/include/ATen/ops/fft_irfft2_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0921090Z adding 'torch/include/ATen/ops/fft_irfft2_native.h' 2025-08-14T20:48:16.0922130Z adding 'torch/include/ATen/ops/fft_irfft2_ops.h' 2025-08-14T20:48:16.0923470Z adding 'torch/include/ATen/ops/fft_irfft_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0924510Z adding 'torch/include/ATen/ops/fft_irfft_native.h' 2025-08-14T20:48:16.0925500Z adding 'torch/include/ATen/ops/fft_irfft_ops.h' 2025-08-14T20:48:16.0926900Z adding 'torch/include/ATen/ops/fft_irfftn.h' 2025-08-14T20:48:16.0927990Z adding 'torch/include/ATen/ops/fft_irfftn_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0928760Z adding 'torch/include/ATen/ops/fft_irfftn_native.h' 2025-08-14T20:48:16.0930080Z adding 'torch/include/ATen/ops/fft_irfftn_ops.h' 2025-08-14T20:48:16.0931390Z adding 'torch/include/ATen/ops/fft_rfft.h' 2025-08-14T20:48:16.0932740Z adding 'torch/include/ATen/ops/fft_rfft2.h' 2025-08-14T20:48:16.0933780Z adding 'torch/include/ATen/ops/fft_rfft2_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0934890Z adding 'torch/include/ATen/ops/fft_rfft2_native.h' 2025-08-14T20:48:16.0936000Z adding 'torch/include/ATen/ops/fft_rfft2_ops.h' 2025-08-14T20:48:16.0937070Z adding 'torch/include/ATen/ops/fft_rfft_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0938050Z adding 'torch/include/ATen/ops/fft_rfft_native.h' 2025-08-14T20:48:16.0939240Z adding 'torch/include/ATen/ops/fft_rfft_ops.h' 2025-08-14T20:48:16.0940230Z adding 'torch/include/ATen/ops/fft_rfftfreq.h' 2025-08-14T20:48:16.0941260Z adding 'torch/include/ATen/ops/fft_rfftfreq_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0942050Z adding 'torch/include/ATen/ops/fft_rfftfreq_native.h' 2025-08-14T20:48:16.0943060Z adding 'torch/include/ATen/ops/fft_rfftfreq_ops.h' 2025-08-14T20:48:16.0944150Z adding 'torch/include/ATen/ops/fft_rfftn.h' 2025-08-14T20:48:16.0945210Z adding 'torch/include/ATen/ops/fft_rfftn_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0945980Z adding 'torch/include/ATen/ops/fft_rfftn_native.h' 2025-08-14T20:48:16.0947010Z adding 'torch/include/ATen/ops/fft_rfftn_ops.h' 2025-08-14T20:48:16.0947980Z adding 'torch/include/ATen/ops/fill.h' 2025-08-14T20:48:16.0949030Z adding 'torch/include/ATen/ops/fill_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0949880Z adding 'torch/include/ATen/ops/fill_cpu_dispatch.h' 2025-08-14T20:48:16.0950650Z adding 'torch/include/ATen/ops/fill_cuda_dispatch.h' 2025-08-14T20:48:16.0951470Z adding 'torch/include/ATen/ops/fill_diagonal.h' 2025-08-14T20:48:16.0952440Z adding 'torch/include/ATen/ops/fill_diagonal_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0953210Z adding 'torch/include/ATen/ops/fill_diagonal_native.h' 2025-08-14T20:48:16.0954120Z adding 'torch/include/ATen/ops/fill_diagonal_ops.h' 2025-08-14T20:48:16.0954990Z adding 'torch/include/ATen/ops/fill_meta_dispatch.h' 2025-08-14T20:48:16.0955860Z adding 'torch/include/ATen/ops/fill_mps_dispatch.h' 2025-08-14T20:48:16.0956770Z adding 'torch/include/ATen/ops/fill_native.h' 2025-08-14T20:48:16.0957900Z adding 'torch/include/ATen/ops/fill_ops.h' 2025-08-14T20:48:16.0958800Z adding 'torch/include/ATen/ops/fix.h' 2025-08-14T20:48:16.0959790Z adding 'torch/include/ATen/ops/fix_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0960540Z adding 'torch/include/ATen/ops/fix_native.h' 2025-08-14T20:48:16.0961670Z adding 'torch/include/ATen/ops/fix_ops.h' 2025-08-14T20:48:16.0962620Z adding 'torch/include/ATen/ops/flatten.h' 2025-08-14T20:48:16.0963600Z adding 'torch/include/ATen/ops/flatten_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0964430Z adding 'torch/include/ATen/ops/flatten_dense_tensors.h' 2025-08-14T20:48:16.0965390Z adding 'torch/include/ATen/ops/flatten_dense_tensors_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0966150Z adding 'torch/include/ATen/ops/flatten_dense_tensors_native.h' 2025-08-14T20:48:16.0967050Z adding 'torch/include/ATen/ops/flatten_dense_tensors_ops.h' 2025-08-14T20:48:16.0967900Z adding 'torch/include/ATen/ops/flatten_native.h' 2025-08-14T20:48:16.0968970Z adding 'torch/include/ATen/ops/flatten_ops.h' 2025-08-14T20:48:16.0969870Z adding 'torch/include/ATen/ops/flip.h' 2025-08-14T20:48:16.0970840Z adding 'torch/include/ATen/ops/flip_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0971630Z adding 'torch/include/ATen/ops/flip_cpu_dispatch.h' 2025-08-14T20:48:16.0972460Z adding 'torch/include/ATen/ops/flip_cuda_dispatch.h' 2025-08-14T20:48:16.0973270Z adding 'torch/include/ATen/ops/flip_mps_dispatch.h' 2025-08-14T20:48:16.0974090Z adding 'torch/include/ATen/ops/flip_native.h' 2025-08-14T20:48:16.0975010Z adding 'torch/include/ATen/ops/flip_ops.h' 2025-08-14T20:48:16.0975880Z adding 'torch/include/ATen/ops/fliplr.h' 2025-08-14T20:48:16.0976800Z adding 'torch/include/ATen/ops/fliplr_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0977570Z adding 'torch/include/ATen/ops/fliplr_native.h' 2025-08-14T20:48:16.0978450Z adding 'torch/include/ATen/ops/fliplr_ops.h' 2025-08-14T20:48:16.0979280Z adding 'torch/include/ATen/ops/flipud.h' 2025-08-14T20:48:16.0980250Z adding 'torch/include/ATen/ops/flipud_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0980960Z adding 'torch/include/ATen/ops/flipud_native.h' 2025-08-14T20:48:16.0981830Z adding 'torch/include/ATen/ops/flipud_ops.h' 2025-08-14T20:48:16.0982850Z adding 'torch/include/ATen/ops/float_power.h' 2025-08-14T20:48:16.0983900Z adding 'torch/include/ATen/ops/float_power_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.0984720Z adding 'torch/include/ATen/ops/float_power_native.h' 2025-08-14T20:48:16.0985910Z adding 'torch/include/ATen/ops/float_power_ops.h' 2025-08-14T20:48:16.0986810Z adding 'torch/include/ATen/ops/floor.h' 2025-08-14T20:48:16.0987820Z adding 'torch/include/ATen/ops/floor_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.0988580Z adding 'torch/include/ATen/ops/floor_cpu_dispatch.h' 2025-08-14T20:48:16.0989430Z adding 'torch/include/ATen/ops/floor_cuda_dispatch.h' 2025-08-14T20:48:16.0990360Z adding 'torch/include/ATen/ops/floor_divide.h' 2025-08-14T20:48:16.0991350Z adding 'torch/include/ATen/ops/floor_divide_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.0992170Z adding 'torch/include/ATen/ops/floor_divide_cpu_dispatch.h' 2025-08-14T20:48:16.0993020Z adding 'torch/include/ATen/ops/floor_divide_cuda_dispatch.h' 2025-08-14T20:48:16.0993900Z adding 'torch/include/ATen/ops/floor_divide_meta_dispatch.h' 2025-08-14T20:48:16.0994680Z adding 'torch/include/ATen/ops/floor_divide_mps_dispatch.h' 2025-08-14T20:48:16.0995560Z adding 'torch/include/ATen/ops/floor_divide_native.h' 2025-08-14T20:48:16.0996660Z adding 'torch/include/ATen/ops/floor_divide_ops.h' 2025-08-14T20:48:16.0997510Z adding 'torch/include/ATen/ops/floor_meta.h' 2025-08-14T20:48:16.0998400Z adding 'torch/include/ATen/ops/floor_meta_dispatch.h' 2025-08-14T20:48:16.0999240Z adding 'torch/include/ATen/ops/floor_mps_dispatch.h' 2025-08-14T20:48:16.1000110Z adding 'torch/include/ATen/ops/floor_native.h' 2025-08-14T20:48:16.1001080Z adding 'torch/include/ATen/ops/floor_ops.h' 2025-08-14T20:48:16.1002000Z adding 'torch/include/ATen/ops/fmax.h' 2025-08-14T20:48:16.1003280Z adding 'torch/include/ATen/ops/fmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.1003790Z adding 'torch/include/ATen/ops/fmax_cpu_dispatch.h' 2025-08-14T20:48:16.1004610Z adding 'torch/include/ATen/ops/fmax_cuda_dispatch.h' 2025-08-14T20:48:16.1005450Z adding 'torch/include/ATen/ops/fmax_meta.h' 2025-08-14T20:48:16.1006280Z adding 'torch/include/ATen/ops/fmax_meta_dispatch.h' 2025-08-14T20:48:16.1007340Z adding 'torch/include/ATen/ops/fmax_mps_dispatch.h' 2025-08-14T20:48:16.1008180Z adding 'torch/include/ATen/ops/fmax_native.h' 2025-08-14T20:48:16.1009110Z adding 'torch/include/ATen/ops/fmax_ops.h' 2025-08-14T20:48:16.1010010Z adding 'torch/include/ATen/ops/fmin.h' 2025-08-14T20:48:16.1010980Z adding 'torch/include/ATen/ops/fmin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.1011770Z adding 'torch/include/ATen/ops/fmin_cpu_dispatch.h' 2025-08-14T20:48:16.1012650Z adding 'torch/include/ATen/ops/fmin_cuda_dispatch.h' 2025-08-14T20:48:16.1013520Z adding 'torch/include/ATen/ops/fmin_meta.h' 2025-08-14T20:48:16.1014410Z adding 'torch/include/ATen/ops/fmin_meta_dispatch.h' 2025-08-14T20:48:16.1015230Z adding 'torch/include/ATen/ops/fmin_mps_dispatch.h' 2025-08-14T20:48:16.1016110Z adding 'torch/include/ATen/ops/fmin_native.h' 2025-08-14T20:48:16.1017070Z adding 'torch/include/ATen/ops/fmin_ops.h' 2025-08-14T20:48:16.1018030Z adding 'torch/include/ATen/ops/fmod.h' 2025-08-14T20:48:16.1018980Z adding 'torch/include/ATen/ops/fmod_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.1019870Z adding 'torch/include/ATen/ops/fmod_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.1020620Z adding 'torch/include/ATen/ops/fmod_cpu_dispatch.h' 2025-08-14T20:48:16.1021450Z adding 'torch/include/ATen/ops/fmod_cuda_dispatch.h' 2025-08-14T20:48:16.1022260Z adding 'torch/include/ATen/ops/fmod_meta.h' 2025-08-14T20:48:16.1023110Z adding 'torch/include/ATen/ops/fmod_meta_dispatch.h' 2025-08-14T20:48:16.1023920Z adding 'torch/include/ATen/ops/fmod_mps_dispatch.h' 2025-08-14T20:48:16.1024760Z adding 'torch/include/ATen/ops/fmod_native.h' 2025-08-14T20:48:16.1025860Z adding 'torch/include/ATen/ops/fmod_ops.h' 2025-08-14T20:48:16.1026760Z adding 'torch/include/ATen/ops/frac.h' 2025-08-14T20:48:16.1027730Z adding 'torch/include/ATen/ops/frac_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.1028470Z adding 'torch/include/ATen/ops/frac_cpu_dispatch.h' 2025-08-14T20:48:16.1029300Z adding 'torch/include/ATen/ops/frac_cuda_dispatch.h' 2025-08-14T20:48:16.1030120Z adding 'torch/include/ATen/ops/frac_meta.h' 2025-08-14T20:48:16.1030930Z adding 'torch/include/ATen/ops/frac_meta_dispatch.h' 2025-08-14T20:48:16.1031720Z adding 'torch/include/ATen/ops/frac_mps_dispatch.h' 2025-08-14T20:48:16.1032580Z adding 'torch/include/ATen/ops/frac_native.h' 2025-08-14T20:48:16.1033550Z adding 'torch/include/ATen/ops/frac_ops.h' 2025-08-14T20:48:16.1034550Z adding 'torch/include/ATen/ops/fractional_max_pool2d.h' 2025-08-14T20:48:16.1035560Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward.h' 2025-08-14T20:48:16.1036640Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.1037440Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_cpu_dispatch.h' 2025-08-14T20:48:16.1038280Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_cuda_dispatch.h' 2025-08-14T20:48:16.1039140Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_meta.h' 2025-08-14T20:48:16.1040000Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_meta_dispatch.h' 2025-08-14T20:48:16.1045770Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_native.h' 2025-08-14T20:48:16.1046030Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_ops.h' 2025-08-14T20:48:16.1046280Z adding 'torch/include/ATen/ops/fractional_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.1047080Z adding 'torch/include/ATen/ops/fractional_max_pool2d_cpu_dispatch.h' 2025-08-14T20:48:16.1047300Z adding 'torch/include/ATen/ops/fractional_max_pool2d_cuda_dispatch.h' 2025-08-14T20:48:16.1047410Z adding 'torch/include/ATen/ops/fractional_max_pool2d_meta.h' 2025-08-14T20:48:16.1047550Z adding 'torch/include/ATen/ops/fractional_max_pool2d_meta_dispatch.h' 2025-08-14T20:48:16.1047670Z adding 'torch/include/ATen/ops/fractional_max_pool2d_native.h' 2025-08-14T20:48:16.1048720Z adding 'torch/include/ATen/ops/fractional_max_pool2d_ops.h' 2025-08-14T20:48:16.1049600Z adding 'torch/include/ATen/ops/fractional_max_pool3d.h' 2025-08-14T20:48:16.1050650Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward.h' 2025-08-14T20:48:16.1051610Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_cpu_dispatch.h' 2025-08-14T20:48:16.1052500Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_cuda_dispatch.h' 2025-08-14T20:48:16.1053480Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_native.h' 2025-08-14T20:48:16.1054520Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_ops.h' 2025-08-14T20:48:16.1055510Z adding 'torch/include/ATen/ops/fractional_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.1056310Z adding 'torch/include/ATen/ops/fractional_max_pool3d_cpu_dispatch.h' 2025-08-14T20:48:16.1057190Z adding 'torch/include/ATen/ops/fractional_max_pool3d_cuda_dispatch.h' 2025-08-14T20:48:16.1059110Z adding 'torch/include/ATen/ops/fractional_max_pool3d_meta.h' 2025-08-14T20:48:16.1059680Z adding 'torch/include/ATen/ops/fractional_max_pool3d_meta_dispatch.h' 2025-08-14T20:48:16.1060600Z adding 'torch/include/ATen/ops/fractional_max_pool3d_native.h' 2025-08-14T20:48:16.1061600Z adding 'torch/include/ATen/ops/fractional_max_pool3d_ops.h' 2025-08-14T20:48:16.1062540Z adding 'torch/include/ATen/ops/frexp.h' 2025-08-14T20:48:16.1063530Z adding 'torch/include/ATen/ops/frexp_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.1064370Z adding 'torch/include/ATen/ops/frexp_cpu_dispatch.h' 2025-08-14T20:48:16.1065210Z adding 'torch/include/ATen/ops/frexp_cuda_dispatch.h' 2025-08-14T20:48:16.1066060Z adding 'torch/include/ATen/ops/frexp_native.h' 2025-08-14T20:48:16.1067050Z adding 'torch/include/ATen/ops/frexp_ops.h' 2025-08-14T20:48:16.1067980Z adding 'torch/include/ATen/ops/frobenius_norm.h' 2025-08-14T20:48:16.1068980Z adding 'torch/include/ATen/ops/frobenius_norm_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1069770Z adding 'torch/include/ATen/ops/frobenius_norm_native.h' 2025-08-14T20:48:16.1070740Z adding 'torch/include/ATen/ops/frobenius_norm_ops.h' 2025-08-14T20:48:16.1072030Z adding 'torch/include/ATen/ops/from_blob.h' 2025-08-14T20:48:16.1073010Z adding 'torch/include/ATen/ops/from_file.h' 2025-08-14T20:48:16.1074000Z adding 'torch/include/ATen/ops/from_file_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.1074850Z adding 'torch/include/ATen/ops/from_file_cpu_dispatch.h' 2025-08-14T20:48:16.1075730Z adding 'torch/include/ATen/ops/from_file_native.h' 2025-08-14T20:48:16.1076740Z adding 'torch/include/ATen/ops/from_file_ops.h' 2025-08-14T20:48:16.1078030Z adding 'torch/include/ATen/ops/full.h' 2025-08-14T20:48:16.1079130Z adding 'torch/include/ATen/ops/full_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.1080150Z adding 'torch/include/ATen/ops/full_like.h' 2025-08-14T20:48:16.1081140Z adding 'torch/include/ATen/ops/full_like_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.1081920Z adding 'torch/include/ATen/ops/full_like_native.h' 2025-08-14T20:48:16.1082950Z adding 'torch/include/ATen/ops/full_like_ops.h' 2025-08-14T20:48:16.1083820Z adding 'torch/include/ATen/ops/full_native.h' 2025-08-14T20:48:16.1084920Z adding 'torch/include/ATen/ops/full_ops.h' 2025-08-14T20:48:16.1085930Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant.h' 2025-08-14T20:48:16.1086950Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1087750Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_native.h' 2025-08-14T20:48:16.1088770Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_ops.h' 2025-08-14T20:48:16.1089680Z adding 'torch/include/ATen/ops/gather.h' 2025-08-14T20:48:16.1090550Z adding 'torch/include/ATen/ops/gather_backward.h' 2025-08-14T20:48:16.1091550Z adding 'torch/include/ATen/ops/gather_backward_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1092300Z adding 'torch/include/ATen/ops/gather_backward_native.h' 2025-08-14T20:48:16.1093210Z adding 'torch/include/ATen/ops/gather_backward_ops.h' 2025-08-14T20:48:16.1094190Z adding 'torch/include/ATen/ops/gather_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.1095040Z adding 'torch/include/ATen/ops/gather_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1095830Z adding 'torch/include/ATen/ops/gather_cpu_dispatch.h' 2025-08-14T20:48:16.1096660Z adding 'torch/include/ATen/ops/gather_cuda_dispatch.h' 2025-08-14T20:48:16.1097500Z adding 'torch/include/ATen/ops/gather_meta.h' 2025-08-14T20:48:16.1098330Z adding 'torch/include/ATen/ops/gather_meta_dispatch.h' 2025-08-14T20:48:16.1099150Z adding 'torch/include/ATen/ops/gather_mps_dispatch.h' 2025-08-14T20:48:16.1099990Z adding 'torch/include/ATen/ops/gather_native.h' 2025-08-14T20:48:16.1101040Z adding 'torch/include/ATen/ops/gather_ops.h' 2025-08-14T20:48:16.1101940Z adding 'torch/include/ATen/ops/gcd.h' 2025-08-14T20:48:16.1102960Z adding 'torch/include/ATen/ops/gcd_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.1103690Z adding 'torch/include/ATen/ops/gcd_cpu_dispatch.h' 2025-08-14T20:48:16.1104560Z adding 'torch/include/ATen/ops/gcd_cuda_dispatch.h' 2025-08-14T20:48:16.1105370Z adding 'torch/include/ATen/ops/gcd_meta.h' 2025-08-14T20:48:16.1106200Z adding 'torch/include/ATen/ops/gcd_meta_dispatch.h' 2025-08-14T20:48:16.1107010Z adding 'torch/include/ATen/ops/gcd_native.h' 2025-08-14T20:48:16.1107980Z adding 'torch/include/ATen/ops/gcd_ops.h' 2025-08-14T20:48:16.1108950Z adding 'torch/include/ATen/ops/ge.h' 2025-08-14T20:48:16.1109920Z adding 'torch/include/ATen/ops/ge_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.1110710Z adding 'torch/include/ATen/ops/ge_cpu_dispatch.h' 2025-08-14T20:48:16.1111560Z adding 'torch/include/ATen/ops/ge_cuda_dispatch.h' 2025-08-14T20:48:16.1112410Z adding 'torch/include/ATen/ops/ge_meta.h' 2025-08-14T20:48:16.1113280Z adding 'torch/include/ATen/ops/ge_meta_dispatch.h' 2025-08-14T20:48:16.1114100Z adding 'torch/include/ATen/ops/ge_mps_dispatch.h' 2025-08-14T20:48:16.1115010Z adding 'torch/include/ATen/ops/ge_native.h' 2025-08-14T20:48:16.1116100Z adding 'torch/include/ATen/ops/ge_ops.h' 2025-08-14T20:48:16.1117050Z adding 'torch/include/ATen/ops/gelu.h' 2025-08-14T20:48:16.1117970Z adding 'torch/include/ATen/ops/gelu_backward.h' 2025-08-14T20:48:16.1119010Z adding 'torch/include/ATen/ops/gelu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.1119810Z adding 'torch/include/ATen/ops/gelu_backward_cpu_dispatch.h' 2025-08-14T20:48:16.1120650Z adding 'torch/include/ATen/ops/gelu_backward_cuda_dispatch.h' 2025-08-14T20:48:16.1121510Z adding 'torch/include/ATen/ops/gelu_backward_meta.h' 2025-08-14T20:48:16.1122360Z adding 'torch/include/ATen/ops/gelu_backward_meta_dispatch.h' 2025-08-14T20:48:16.1123190Z adding 'torch/include/ATen/ops/gelu_backward_mps_dispatch.h' 2025-08-14T20:48:16.1124080Z adding 'torch/include/ATen/ops/gelu_backward_native.h' 2025-08-14T20:48:16.1125060Z adding 'torch/include/ATen/ops/gelu_backward_ops.h' 2025-08-14T20:48:16.1126020Z adding 'torch/include/ATen/ops/gelu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.1126820Z adding 'torch/include/ATen/ops/gelu_cpu_dispatch.h' 2025-08-14T20:48:16.1127720Z adding 'torch/include/ATen/ops/gelu_cuda_dispatch.h' 2025-08-14T20:48:16.1128600Z adding 'torch/include/ATen/ops/gelu_meta.h' 2025-08-14T20:48:16.1129510Z adding 'torch/include/ATen/ops/gelu_meta_dispatch.h' 2025-08-14T20:48:16.1130360Z adding 'torch/include/ATen/ops/gelu_mps_dispatch.h' 2025-08-14T20:48:16.1131290Z adding 'torch/include/ATen/ops/gelu_native.h' 2025-08-14T20:48:16.1132320Z adding 'torch/include/ATen/ops/gelu_ops.h' 2025-08-14T20:48:16.1133300Z adding 'torch/include/ATen/ops/geometric.h' 2025-08-14T20:48:16.1134300Z adding 'torch/include/ATen/ops/geometric_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.1135110Z adding 'torch/include/ATen/ops/geometric_cpu_dispatch.h' 2025-08-14T20:48:16.1135910Z adding 'torch/include/ATen/ops/geometric_cuda_dispatch.h' 2025-08-14T20:48:16.1136720Z adding 'torch/include/ATen/ops/geometric_meta_dispatch.h' 2025-08-14T20:48:16.1137570Z adding 'torch/include/ATen/ops/geometric_native.h' 2025-08-14T20:48:16.1138550Z adding 'torch/include/ATen/ops/geometric_ops.h' 2025-08-14T20:48:16.1139450Z adding 'torch/include/ATen/ops/geqrf.h' 2025-08-14T20:48:16.1140340Z adding 'torch/include/ATen/ops/geqrf_cpu_dispatch.h' 2025-08-14T20:48:16.1141170Z adding 'torch/include/ATen/ops/geqrf_cuda_dispatch.h' 2025-08-14T20:48:16.1141990Z adding 'torch/include/ATen/ops/geqrf_native.h' 2025-08-14T20:48:16.1142940Z adding 'torch/include/ATen/ops/geqrf_ops.h' 2025-08-14T20:48:16.1143800Z adding 'torch/include/ATen/ops/ger.h' 2025-08-14T20:48:16.1144770Z adding 'torch/include/ATen/ops/ger_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1145570Z adding 'torch/include/ATen/ops/ger_native.h' 2025-08-14T20:48:16.1146490Z adding 'torch/include/ATen/ops/ger_ops.h' 2025-08-14T20:48:16.1147360Z adding 'torch/include/ATen/ops/glu.h' 2025-08-14T20:48:16.1148280Z adding 'torch/include/ATen/ops/glu_backward.h' 2025-08-14T20:48:16.1149200Z adding 'torch/include/ATen/ops/glu_backward_cpu_dispatch.h' 2025-08-14T20:48:16.1150050Z adding 'torch/include/ATen/ops/glu_backward_cuda_dispatch.h' 2025-08-14T20:48:16.1150940Z adding 'torch/include/ATen/ops/glu_backward_jvp.h' 2025-08-14T20:48:16.1152050Z adding 'torch/include/ATen/ops/glu_backward_jvp_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.1152960Z adding 'torch/include/ATen/ops/glu_backward_jvp_cpu_dispatch.h' 2025-08-14T20:48:16.1153740Z adding 'torch/include/ATen/ops/glu_backward_jvp_cuda_dispatch.h' 2025-08-14T20:48:16.1154630Z adding 'torch/include/ATen/ops/glu_backward_jvp_native.h' 2025-08-14T20:48:16.1155640Z adding 'torch/include/ATen/ops/glu_backward_jvp_ops.h' 2025-08-14T20:48:16.1156510Z adding 'torch/include/ATen/ops/glu_backward_mps_dispatch.h' 2025-08-14T20:48:16.1157360Z adding 'torch/include/ATen/ops/glu_backward_native.h' 2025-08-14T20:48:16.1158290Z adding 'torch/include/ATen/ops/glu_backward_ops.h' 2025-08-14T20:48:16.1159300Z adding 'torch/include/ATen/ops/glu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.1160030Z adding 'torch/include/ATen/ops/glu_cpu_dispatch.h' 2025-08-14T20:48:16.1160870Z adding 'torch/include/ATen/ops/glu_cuda_dispatch.h' 2025-08-14T20:48:16.1161730Z adding 'torch/include/ATen/ops/glu_jvp.h' 2025-08-14T20:48:16.1162690Z adding 'torch/include/ATen/ops/glu_jvp_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.1163480Z adding 'torch/include/ATen/ops/glu_jvp_cpu_dispatch.h' 2025-08-14T20:48:16.1164290Z adding 'torch/include/ATen/ops/glu_jvp_cuda_dispatch.h' 2025-08-14T20:48:16.1165110Z adding 'torch/include/ATen/ops/glu_jvp_native.h' 2025-08-14T20:48:16.1166190Z adding 'torch/include/ATen/ops/glu_jvp_ops.h' 2025-08-14T20:48:16.1166980Z adding 'torch/include/ATen/ops/glu_meta.h' 2025-08-14T20:48:16.1167860Z adding 'torch/include/ATen/ops/glu_meta_dispatch.h' 2025-08-14T20:48:16.1168670Z adding 'torch/include/ATen/ops/glu_mps_dispatch.h' 2025-08-14T20:48:16.1169510Z adding 'torch/include/ATen/ops/glu_native.h' 2025-08-14T20:48:16.1170420Z adding 'torch/include/ATen/ops/glu_ops.h' 2025-08-14T20:48:16.1171450Z adding 'torch/include/ATen/ops/gradient.h' 2025-08-14T20:48:16.1172470Z adding 'torch/include/ATen/ops/gradient_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1173280Z adding 'torch/include/ATen/ops/gradient_native.h' 2025-08-14T20:48:16.1174530Z adding 'torch/include/ATen/ops/gradient_ops.h' 2025-08-14T20:48:16.1175490Z adding 'torch/include/ATen/ops/greater.h' 2025-08-14T20:48:16.1176490Z adding 'torch/include/ATen/ops/greater_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1177360Z adding 'torch/include/ATen/ops/greater_equal.h' 2025-08-14T20:48:16.1178350Z adding 'torch/include/ATen/ops/greater_equal_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1179120Z adding 'torch/include/ATen/ops/greater_equal_native.h' 2025-08-14T20:48:16.1180220Z adding 'torch/include/ATen/ops/greater_equal_ops.h' 2025-08-14T20:48:16.1181070Z adding 'torch/include/ATen/ops/greater_native.h' 2025-08-14T20:48:16.1182170Z adding 'torch/include/ATen/ops/greater_ops.h' 2025-08-14T20:48:16.1183070Z adding 'torch/include/ATen/ops/grid_sampler.h' 2025-08-14T20:48:16.1183970Z adding 'torch/include/ATen/ops/grid_sampler_2d.h' 2025-08-14T20:48:16.1185000Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward.h' 2025-08-14T20:48:16.1186010Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.1186840Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_cpu_dispatch.h' 2025-08-14T20:48:16.1187690Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_cuda_dispatch.h' 2025-08-14T20:48:16.1188550Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_native.h' 2025-08-14T20:48:16.1189590Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_ops.h' 2025-08-14T20:48:16.1190600Z adding 'torch/include/ATen/ops/grid_sampler_2d_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.1191370Z adding 'torch/include/ATen/ops/grid_sampler_2d_cpu_dispatch.h' 2025-08-14T20:48:16.1192180Z adding 'torch/include/ATen/ops/grid_sampler_2d_cuda_dispatch.h' 2025-08-14T20:48:16.1192990Z adding 'torch/include/ATen/ops/grid_sampler_2d_mps_dispatch.h' 2025-08-14T20:48:16.1193820Z adding 'torch/include/ATen/ops/grid_sampler_2d_native.h' 2025-08-14T20:48:16.1194800Z adding 'torch/include/ATen/ops/grid_sampler_2d_ops.h' 2025-08-14T20:48:16.1195770Z adding 'torch/include/ATen/ops/grid_sampler_3d.h' 2025-08-14T20:48:16.1196730Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward.h' 2025-08-14T20:48:16.1197780Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.1198580Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_cpu_dispatch.h' 2025-08-14T20:48:16.1199390Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_cuda_dispatch.h' 2025-08-14T20:48:16.1200280Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_native.h' 2025-08-14T20:48:16.1201330Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_ops.h' 2025-08-14T20:48:16.1202290Z adding 'torch/include/ATen/ops/grid_sampler_3d_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.1203030Z adding 'torch/include/ATen/ops/grid_sampler_3d_cpu_dispatch.h' 2025-08-14T20:48:16.1203840Z adding 'torch/include/ATen/ops/grid_sampler_3d_cuda_dispatch.h' 2025-08-14T20:48:16.1204680Z adding 'torch/include/ATen/ops/grid_sampler_3d_native.h' 2025-08-14T20:48:16.1205630Z adding 'torch/include/ATen/ops/grid_sampler_3d_ops.h' 2025-08-14T20:48:16.1206580Z adding 'torch/include/ATen/ops/grid_sampler_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1207350Z adding 'torch/include/ATen/ops/grid_sampler_native.h' 2025-08-14T20:48:16.1208260Z adding 'torch/include/ATen/ops/grid_sampler_ops.h' 2025-08-14T20:48:16.1209130Z adding 'torch/include/ATen/ops/group_norm.h' 2025-08-14T20:48:16.1210110Z adding 'torch/include/ATen/ops/group_norm_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1210870Z adding 'torch/include/ATen/ops/group_norm_native.h' 2025-08-14T20:48:16.1211830Z adding 'torch/include/ATen/ops/group_norm_ops.h' 2025-08-14T20:48:16.1212730Z adding 'torch/include/ATen/ops/gru.h' 2025-08-14T20:48:16.1213620Z adding 'torch/include/ATen/ops/gru_cell.h' 2025-08-14T20:48:16.1214600Z adding 'torch/include/ATen/ops/gru_cell_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1215380Z adding 'torch/include/ATen/ops/gru_cell_native.h' 2025-08-14T20:48:16.1216290Z adding 'torch/include/ATen/ops/gru_cell_ops.h' 2025-08-14T20:48:16.1217260Z adding 'torch/include/ATen/ops/gru_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1218020Z adding 'torch/include/ATen/ops/gru_native.h' 2025-08-14T20:48:16.1219070Z adding 'torch/include/ATen/ops/gru_ops.h' 2025-08-14T20:48:16.1220010Z adding 'torch/include/ATen/ops/gt.h' 2025-08-14T20:48:16.1221020Z adding 'torch/include/ATen/ops/gt_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.1221800Z adding 'torch/include/ATen/ops/gt_cpu_dispatch.h' 2025-08-14T20:48:16.1222660Z adding 'torch/include/ATen/ops/gt_cuda_dispatch.h' 2025-08-14T20:48:16.1223490Z adding 'torch/include/ATen/ops/gt_meta.h' 2025-08-14T20:48:16.1224370Z adding 'torch/include/ATen/ops/gt_meta_dispatch.h' 2025-08-14T20:48:16.1225190Z adding 'torch/include/ATen/ops/gt_mps_dispatch.h' 2025-08-14T20:48:16.1226110Z adding 'torch/include/ATen/ops/gt_native.h' 2025-08-14T20:48:16.1227190Z adding 'torch/include/ATen/ops/gt_ops.h' 2025-08-14T20:48:16.1228540Z adding 'torch/include/ATen/ops/hamming_window.h' 2025-08-14T20:48:16.1229630Z adding 'torch/include/ATen/ops/hamming_window_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.1230460Z adding 'torch/include/ATen/ops/hamming_window_native.h' 2025-08-14T20:48:16.1231720Z adding 'torch/include/ATen/ops/hamming_window_ops.h' 2025-08-14T20:48:16.1232790Z adding 'torch/include/ATen/ops/hann_window.h' 2025-08-14T20:48:16.1233830Z adding 'torch/include/ATen/ops/hann_window_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.1234620Z adding 'torch/include/ATen/ops/hann_window_native.h' 2025-08-14T20:48:16.1235690Z adding 'torch/include/ATen/ops/hann_window_ops.h' 2025-08-14T20:48:16.1236560Z adding 'torch/include/ATen/ops/hardshrink.h' 2025-08-14T20:48:16.1237500Z adding 'torch/include/ATen/ops/hardshrink_backward.h' 2025-08-14T20:48:16.1238550Z adding 'torch/include/ATen/ops/hardshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.1239330Z adding 'torch/include/ATen/ops/hardshrink_backward_cpu_dispatch.h' 2025-08-14T20:48:16.1240140Z adding 'torch/include/ATen/ops/hardshrink_backward_cuda_dispatch.h' 2025-08-14T20:48:16.1240970Z adding 'torch/include/ATen/ops/hardshrink_backward_meta.h' 2025-08-14T20:48:16.1241850Z adding 'torch/include/ATen/ops/hardshrink_backward_meta_dispatch.h' 2025-08-14T20:48:16.1242680Z adding 'torch/include/ATen/ops/hardshrink_backward_mps_dispatch.h' 2025-08-14T20:48:16.1243530Z adding 'torch/include/ATen/ops/hardshrink_backward_native.h' 2025-08-14T20:48:16.1244500Z adding 'torch/include/ATen/ops/hardshrink_backward_ops.h' 2025-08-14T20:48:16.1245510Z adding 'torch/include/ATen/ops/hardshrink_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.1246350Z adding 'torch/include/ATen/ops/hardshrink_cpu_dispatch.h' 2025-08-14T20:48:16.1247200Z adding 'torch/include/ATen/ops/hardshrink_cuda_dispatch.h' 2025-08-14T20:48:16.1248030Z adding 'torch/include/ATen/ops/hardshrink_meta.h' 2025-08-14T20:48:16.1248890Z adding 'torch/include/ATen/ops/hardshrink_meta_dispatch.h' 2025-08-14T20:48:16.1249690Z adding 'torch/include/ATen/ops/hardshrink_mps_dispatch.h' 2025-08-14T20:48:16.1250540Z adding 'torch/include/ATen/ops/hardshrink_native.h' 2025-08-14T20:48:16.1251550Z adding 'torch/include/ATen/ops/hardshrink_ops.h' 2025-08-14T20:48:16.1252390Z adding 'torch/include/ATen/ops/hardsigmoid.h' 2025-08-14T20:48:16.1253320Z adding 'torch/include/ATen/ops/hardsigmoid_backward.h' 2025-08-14T20:48:16.1254360Z adding 'torch/include/ATen/ops/hardsigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.1255110Z adding 'torch/include/ATen/ops/hardsigmoid_backward_cpu_dispatch.h' 2025-08-14T20:48:16.1256350Z adding 'torch/include/ATen/ops/hardsigmoid_backward_cuda_dispatch.h' 2025-08-14T20:48:16.1257170Z adding 'torch/include/ATen/ops/hardsigmoid_backward_meta.h' 2025-08-14T20:48:16.1258030Z adding 'torch/include/ATen/ops/hardsigmoid_backward_meta_dispatch.h' 2025-08-14T20:48:16.1258850Z adding 'torch/include/ATen/ops/hardsigmoid_backward_mps_dispatch.h' 2025-08-14T20:48:16.1259670Z adding 'torch/include/ATen/ops/hardsigmoid_backward_native.h' 2025-08-14T20:48:16.1260630Z adding 'torch/include/ATen/ops/hardsigmoid_backward_ops.h' 2025-08-14T20:48:16.1261580Z adding 'torch/include/ATen/ops/hardsigmoid_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.1262320Z adding 'torch/include/ATen/ops/hardsigmoid_cpu_dispatch.h' 2025-08-14T20:48:16.1263130Z adding 'torch/include/ATen/ops/hardsigmoid_cuda_dispatch.h' 2025-08-14T20:48:16.1263940Z adding 'torch/include/ATen/ops/hardsigmoid_meta.h' 2025-08-14T20:48:16.1264810Z adding 'torch/include/ATen/ops/hardsigmoid_meta_dispatch.h' 2025-08-14T20:48:16.1265610Z adding 'torch/include/ATen/ops/hardsigmoid_mps_dispatch.h' 2025-08-14T20:48:16.1266450Z adding 'torch/include/ATen/ops/hardsigmoid_native.h' 2025-08-14T20:48:16.1267410Z adding 'torch/include/ATen/ops/hardsigmoid_ops.h' 2025-08-14T20:48:16.1268300Z adding 'torch/include/ATen/ops/hardswish.h' 2025-08-14T20:48:16.1269220Z adding 'torch/include/ATen/ops/hardswish_backward.h' 2025-08-14T20:48:16.1270180Z adding 'torch/include/ATen/ops/hardswish_backward_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.1270960Z adding 'torch/include/ATen/ops/hardswish_backward_cpu_dispatch.h' 2025-08-14T20:48:16.1271790Z adding 'torch/include/ATen/ops/hardswish_backward_cuda_dispatch.h' 2025-08-14T20:48:16.1272580Z adding 'torch/include/ATen/ops/hardswish_backward_mps_dispatch.h' 2025-08-14T20:48:16.1273410Z adding 'torch/include/ATen/ops/hardswish_backward_native.h' 2025-08-14T20:48:16.1274340Z adding 'torch/include/ATen/ops/hardswish_backward_ops.h' 2025-08-14T20:48:16.1275190Z adding 'torch/include/ATen/ops/hardswish_cpu_dispatch.h' 2025-08-14T20:48:16.1276030Z adding 'torch/include/ATen/ops/hardswish_cuda_dispatch.h' 2025-08-14T20:48:16.1276900Z adding 'torch/include/ATen/ops/hardswish_meta_dispatch.h' 2025-08-14T20:48:16.1277740Z adding 'torch/include/ATen/ops/hardswish_mps_dispatch.h' 2025-08-14T20:48:16.1278610Z adding 'torch/include/ATen/ops/hardswish_native.h' 2025-08-14T20:48:16.1279530Z adding 'torch/include/ATen/ops/hardswish_ops.h' 2025-08-14T20:48:16.1280470Z adding 'torch/include/ATen/ops/hardtanh.h' 2025-08-14T20:48:16.1281410Z adding 'torch/include/ATen/ops/hardtanh_backward.h' 2025-08-14T20:48:16.1282330Z adding 'torch/include/ATen/ops/hardtanh_backward_cpu_dispatch.h' 2025-08-14T20:48:16.1283160Z adding 'torch/include/ATen/ops/hardtanh_backward_cuda_dispatch.h' 2025-08-14T20:48:16.1284010Z adding 'torch/include/ATen/ops/hardtanh_backward_mps_dispatch.h' 2025-08-14T20:48:16.1284850Z adding 'torch/include/ATen/ops/hardtanh_backward_native.h' 2025-08-14T20:48:16.1285820Z adding 'torch/include/ATen/ops/hardtanh_backward_ops.h' 2025-08-14T20:48:16.1286710Z adding 'torch/include/ATen/ops/hardtanh_cpu_dispatch.h' 2025-08-14T20:48:16.1287530Z adding 'torch/include/ATen/ops/hardtanh_cuda_dispatch.h' 2025-08-14T20:48:16.1288390Z adding 'torch/include/ATen/ops/hardtanh_meta_dispatch.h' 2025-08-14T20:48:16.1289220Z adding 'torch/include/ATen/ops/hardtanh_mps_dispatch.h' 2025-08-14T20:48:16.1290080Z adding 'torch/include/ATen/ops/hardtanh_native.h' 2025-08-14T20:48:16.1291070Z adding 'torch/include/ATen/ops/hardtanh_ops.h' 2025-08-14T20:48:16.1291990Z adding 'torch/include/ATen/ops/hash_tensor.h' 2025-08-14T20:48:16.1293030Z adding 'torch/include/ATen/ops/hash_tensor_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.1293770Z adding 'torch/include/ATen/ops/hash_tensor_cpu_dispatch.h' 2025-08-14T20:48:16.1294630Z adding 'torch/include/ATen/ops/hash_tensor_cuda_dispatch.h' 2025-08-14T20:48:16.1295470Z adding 'torch/include/ATen/ops/hash_tensor_meta.h' 2025-08-14T20:48:16.1296360Z adding 'torch/include/ATen/ops/hash_tensor_meta_dispatch.h' 2025-08-14T20:48:16.1297200Z adding 'torch/include/ATen/ops/hash_tensor_native.h' 2025-08-14T20:48:16.1298160Z adding 'torch/include/ATen/ops/hash_tensor_ops.h' 2025-08-14T20:48:16.1299020Z adding 'torch/include/ATen/ops/heaviside.h' 2025-08-14T20:48:16.1300040Z adding 'torch/include/ATen/ops/heaviside_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.1300830Z adding 'torch/include/ATen/ops/heaviside_cpu_dispatch.h' 2025-08-14T20:48:16.1301650Z adding 'torch/include/ATen/ops/heaviside_cuda_dispatch.h' 2025-08-14T20:48:16.1302510Z adding 'torch/include/ATen/ops/heaviside_meta.h' 2025-08-14T20:48:16.1303330Z adding 'torch/include/ATen/ops/heaviside_meta_dispatch.h' 2025-08-14T20:48:16.1304130Z adding 'torch/include/ATen/ops/heaviside_native.h' 2025-08-14T20:48:16.1305100Z adding 'torch/include/ATen/ops/heaviside_ops.h' 2025-08-14T20:48:16.1305990Z adding 'torch/include/ATen/ops/hinge_embedding_loss.h' 2025-08-14T20:48:16.1306960Z adding 'torch/include/ATen/ops/hinge_embedding_loss_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1307720Z adding 'torch/include/ATen/ops/hinge_embedding_loss_native.h' 2025-08-14T20:48:16.1308620Z adding 'torch/include/ATen/ops/hinge_embedding_loss_ops.h' 2025-08-14T20:48:16.1309490Z adding 'torch/include/ATen/ops/histc.h' 2025-08-14T20:48:16.1310390Z adding 'torch/include/ATen/ops/histc_cpu_dispatch.h' 2025-08-14T20:48:16.1311230Z adding 'torch/include/ATen/ops/histc_cuda_dispatch.h' 2025-08-14T20:48:16.1312050Z adding 'torch/include/ATen/ops/histc_mps_dispatch.h' 2025-08-14T20:48:16.1312890Z adding 'torch/include/ATen/ops/histc_native.h' 2025-08-14T20:48:16.1313840Z adding 'torch/include/ATen/ops/histc_ops.h' 2025-08-14T20:48:16.1314880Z adding 'torch/include/ATen/ops/histogram.h' 2025-08-14T20:48:16.1315890Z adding 'torch/include/ATen/ops/histogram_cpu_dispatch.h' 2025-08-14T20:48:16.1316790Z adding 'torch/include/ATen/ops/histogram_mps_dispatch.h' 2025-08-14T20:48:16.1317650Z adding 'torch/include/ATen/ops/histogram_native.h' 2025-08-14T20:48:16.1318770Z adding 'torch/include/ATen/ops/histogram_ops.h' 2025-08-14T20:48:16.1319730Z adding 'torch/include/ATen/ops/histogramdd.h' 2025-08-14T20:48:16.1320740Z adding 'torch/include/ATen/ops/histogramdd_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1321600Z adding 'torch/include/ATen/ops/histogramdd_native.h' 2025-08-14T20:48:16.1322610Z adding 'torch/include/ATen/ops/histogramdd_ops.h' 2025-08-14T20:48:16.1323480Z adding 'torch/include/ATen/ops/hsplit.h' 2025-08-14T20:48:16.1324450Z adding 'torch/include/ATen/ops/hsplit_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1325190Z adding 'torch/include/ATen/ops/hsplit_native.h' 2025-08-14T20:48:16.1326150Z adding 'torch/include/ATen/ops/hsplit_ops.h' 2025-08-14T20:48:16.1327020Z adding 'torch/include/ATen/ops/hspmm.h' 2025-08-14T20:48:16.1327880Z adding 'torch/include/ATen/ops/hspmm_native.h' 2025-08-14T20:48:16.1328830Z adding 'torch/include/ATen/ops/hspmm_ops.h' 2025-08-14T20:48:16.1329710Z adding 'torch/include/ATen/ops/hstack.h' 2025-08-14T20:48:16.1330680Z adding 'torch/include/ATen/ops/hstack_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1331430Z adding 'torch/include/ATen/ops/hstack_native.h' 2025-08-14T20:48:16.1332350Z adding 'torch/include/ATen/ops/hstack_ops.h' 2025-08-14T20:48:16.1333270Z adding 'torch/include/ATen/ops/huber_loss.h' 2025-08-14T20:48:16.1334200Z adding 'torch/include/ATen/ops/huber_loss_backward.h' 2025-08-14T20:48:16.1335180Z adding 'torch/include/ATen/ops/huber_loss_backward_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.1336020Z adding 'torch/include/ATen/ops/huber_loss_backward_cpu_dispatch.h' 2025-08-14T20:48:16.1336840Z adding 'torch/include/ATen/ops/huber_loss_backward_cuda_dispatch.h' 2025-08-14T20:48:16.1337670Z adding 'torch/include/ATen/ops/huber_loss_backward_mps_dispatch.h' 2025-08-14T20:48:16.1338500Z adding 'torch/include/ATen/ops/huber_loss_backward_native.h' 2025-08-14T20:48:16.1339480Z adding 'torch/include/ATen/ops/huber_loss_backward_ops.h' 2025-08-14T20:48:16.1340370Z adding 'torch/include/ATen/ops/huber_loss_cpu_dispatch.h' 2025-08-14T20:48:16.1341220Z adding 'torch/include/ATen/ops/huber_loss_cuda_dispatch.h' 2025-08-14T20:48:16.1342010Z adding 'torch/include/ATen/ops/huber_loss_mps_dispatch.h' 2025-08-14T20:48:16.1342860Z adding 'torch/include/ATen/ops/huber_loss_native.h' 2025-08-14T20:48:16.1343810Z adding 'torch/include/ATen/ops/huber_loss_ops.h' 2025-08-14T20:48:16.1344700Z adding 'torch/include/ATen/ops/hypot.h' 2025-08-14T20:48:16.1345690Z adding 'torch/include/ATen/ops/hypot_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.1346450Z adding 'torch/include/ATen/ops/hypot_cpu_dispatch.h' 2025-08-14T20:48:16.1347290Z adding 'torch/include/ATen/ops/hypot_cuda_dispatch.h' 2025-08-14T20:48:16.1348130Z adding 'torch/include/ATen/ops/hypot_meta.h' 2025-08-14T20:48:16.1348970Z adding 'torch/include/ATen/ops/hypot_meta_dispatch.h' 2025-08-14T20:48:16.1349770Z adding 'torch/include/ATen/ops/hypot_mps_dispatch.h' 2025-08-14T20:48:16.1350590Z adding 'torch/include/ATen/ops/hypot_native.h' 2025-08-14T20:48:16.1351550Z adding 'torch/include/ATen/ops/hypot_ops.h' 2025-08-14T20:48:16.1352460Z adding 'torch/include/ATen/ops/i0.h' 2025-08-14T20:48:16.1353430Z adding 'torch/include/ATen/ops/i0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.1354180Z adding 'torch/include/ATen/ops/i0_cpu_dispatch.h' 2025-08-14T20:48:16.1355000Z adding 'torch/include/ATen/ops/i0_cuda_dispatch.h' 2025-08-14T20:48:16.1355820Z adding 'torch/include/ATen/ops/i0_meta.h' 2025-08-14T20:48:16.1356640Z adding 'torch/include/ATen/ops/i0_meta_dispatch.h' 2025-08-14T20:48:16.1357450Z adding 'torch/include/ATen/ops/i0_mps_dispatch.h' 2025-08-14T20:48:16.1358260Z adding 'torch/include/ATen/ops/i0_native.h' 2025-08-14T20:48:16.1359230Z adding 'torch/include/ATen/ops/i0_ops.h' 2025-08-14T20:48:16.1360110Z adding 'torch/include/ATen/ops/igamma.h' 2025-08-14T20:48:16.1361120Z adding 'torch/include/ATen/ops/igamma_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.1361850Z adding 'torch/include/ATen/ops/igamma_cpu_dispatch.h' 2025-08-14T20:48:16.1362670Z adding 'torch/include/ATen/ops/igamma_cuda_dispatch.h' 2025-08-14T20:48:16.1363470Z adding 'torch/include/ATen/ops/igamma_meta.h' 2025-08-14T20:48:16.1364360Z adding 'torch/include/ATen/ops/igamma_meta_dispatch.h' 2025-08-14T20:48:16.1365160Z adding 'torch/include/ATen/ops/igamma_native.h' 2025-08-14T20:48:16.1366100Z adding 'torch/include/ATen/ops/igamma_ops.h' 2025-08-14T20:48:16.1366990Z adding 'torch/include/ATen/ops/igammac.h' 2025-08-14T20:48:16.1367990Z adding 'torch/include/ATen/ops/igammac_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.1368760Z adding 'torch/include/ATen/ops/igammac_cpu_dispatch.h' 2025-08-14T20:48:16.1369590Z adding 'torch/include/ATen/ops/igammac_cuda_dispatch.h' 2025-08-14T20:48:16.1370400Z adding 'torch/include/ATen/ops/igammac_meta.h' 2025-08-14T20:48:16.1371240Z adding 'torch/include/ATen/ops/igammac_meta_dispatch.h' 2025-08-14T20:48:16.1372050Z adding 'torch/include/ATen/ops/igammac_native.h' 2025-08-14T20:48:16.1373030Z adding 'torch/include/ATen/ops/igammac_ops.h' 2025-08-14T20:48:16.1373970Z adding 'torch/include/ATen/ops/im2col.h' 2025-08-14T20:48:16.1374870Z adding 'torch/include/ATen/ops/im2col_cpu_dispatch.h' 2025-08-14T20:48:16.1375730Z adding 'torch/include/ATen/ops/im2col_cuda_dispatch.h' 2025-08-14T20:48:16.1376560Z adding 'torch/include/ATen/ops/im2col_mps_dispatch.h' 2025-08-14T20:48:16.1377430Z adding 'torch/include/ATen/ops/im2col_native.h' 2025-08-14T20:48:16.1378420Z adding 'torch/include/ATen/ops/im2col_ops.h' 2025-08-14T20:48:16.1379250Z adding 'torch/include/ATen/ops/imag.h' 2025-08-14T20:48:16.1380210Z adding 'torch/include/ATen/ops/imag_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1380960Z adding 'torch/include/ATen/ops/imag_native.h' 2025-08-14T20:48:16.1381830Z adding 'torch/include/ATen/ops/imag_ops.h' 2025-08-14T20:48:16.1382710Z adding 'torch/include/ATen/ops/index.h' 2025-08-14T20:48:16.1383670Z adding 'torch/include/ATen/ops/index_add.h' 2025-08-14T20:48:16.1384680Z adding 'torch/include/ATen/ops/index_add_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.1385510Z adding 'torch/include/ATen/ops/index_add_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1386330Z adding 'torch/include/ATen/ops/index_add_cpu_dispatch.h' 2025-08-14T20:48:16.1387200Z adding 'torch/include/ATen/ops/index_add_cuda_dispatch.h' 2025-08-14T20:48:16.1388100Z adding 'torch/include/ATen/ops/index_add_meta.h' 2025-08-14T20:48:16.1388980Z adding 'torch/include/ATen/ops/index_add_meta_dispatch.h' 2025-08-14T20:48:16.1389810Z adding 'torch/include/ATen/ops/index_add_mps_dispatch.h' 2025-08-14T20:48:16.1390680Z adding 'torch/include/ATen/ops/index_add_native.h' 2025-08-14T20:48:16.1391750Z adding 'torch/include/ATen/ops/index_add_ops.h' 2025-08-14T20:48:16.1392760Z adding 'torch/include/ATen/ops/index_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.1393580Z adding 'torch/include/ATen/ops/index_copy.h' 2025-08-14T20:48:16.1394590Z adding 'torch/include/ATen/ops/index_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.1395410Z adding 'torch/include/ATen/ops/index_copy_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1396230Z adding 'torch/include/ATen/ops/index_copy_cpu_dispatch.h' 2025-08-14T20:48:16.1397060Z adding 'torch/include/ATen/ops/index_copy_cuda_dispatch.h' 2025-08-14T20:48:16.1397970Z adding 'torch/include/ATen/ops/index_copy_meta.h' 2025-08-14T20:48:16.1398840Z adding 'torch/include/ATen/ops/index_copy_meta_dispatch.h' 2025-08-14T20:48:16.1399680Z adding 'torch/include/ATen/ops/index_copy_mps_dispatch.h' 2025-08-14T20:48:16.1400550Z adding 'torch/include/ATen/ops/index_copy_native.h' 2025-08-14T20:48:16.1401660Z adding 'torch/include/ATen/ops/index_copy_ops.h' 2025-08-14T20:48:16.1402550Z adding 'torch/include/ATen/ops/index_cpu_dispatch.h' 2025-08-14T20:48:16.1403360Z adding 'torch/include/ATen/ops/index_cuda_dispatch.h' 2025-08-14T20:48:16.1404360Z adding 'torch/include/ATen/ops/index_fill.h' 2025-08-14T20:48:16.1405380Z adding 'torch/include/ATen/ops/index_fill_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.1406270Z adding 'torch/include/ATen/ops/index_fill_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1407070Z adding 'torch/include/ATen/ops/index_fill_cpu_dispatch.h' 2025-08-14T20:48:16.1407880Z adding 'torch/include/ATen/ops/index_fill_cuda_dispatch.h' 2025-08-14T20:48:16.1408680Z adding 'torch/include/ATen/ops/index_fill_meta_dispatch.h' 2025-08-14T20:48:16.1409500Z adding 'torch/include/ATen/ops/index_fill_mps_dispatch.h' 2025-08-14T20:48:16.1410400Z adding 'torch/include/ATen/ops/index_fill_native.h' 2025-08-14T20:48:16.1411800Z adding 'torch/include/ATen/ops/index_fill_ops.h' 2025-08-14T20:48:16.1412770Z adding 'torch/include/ATen/ops/index_meta.h' 2025-08-14T20:48:16.1413850Z adding 'torch/include/ATen/ops/index_meta_dispatch.h' 2025-08-14T20:48:16.1414440Z adding 'torch/include/ATen/ops/index_mps_dispatch.h' 2025-08-14T20:48:16.1415300Z adding 'torch/include/ATen/ops/index_native.h' 2025-08-14T20:48:16.1416290Z adding 'torch/include/ATen/ops/index_ops.h' 2025-08-14T20:48:16.1417240Z adding 'torch/include/ATen/ops/index_put.h' 2025-08-14T20:48:16.1418240Z adding 'torch/include/ATen/ops/index_put_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.1419050Z adding 'torch/include/ATen/ops/index_put_native.h' 2025-08-14T20:48:16.1420080Z adding 'torch/include/ATen/ops/index_put_ops.h' 2025-08-14T20:48:16.1421010Z adding 'torch/include/ATen/ops/index_reduce.h' 2025-08-14T20:48:16.1422110Z adding 'torch/include/ATen/ops/index_reduce_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.1422830Z adding 'torch/include/ATen/ops/index_reduce_cpu_dispatch.h' 2025-08-14T20:48:16.1423700Z adding 'torch/include/ATen/ops/index_reduce_cuda_dispatch.h' 2025-08-14T20:48:16.1424590Z adding 'torch/include/ATen/ops/index_reduce_meta.h' 2025-08-14T20:48:16.1425480Z adding 'torch/include/ATen/ops/index_reduce_meta_dispatch.h' 2025-08-14T20:48:16.1426370Z adding 'torch/include/ATen/ops/index_reduce_native.h' 2025-08-14T20:48:16.1427370Z adding 'torch/include/ATen/ops/index_reduce_ops.h' 2025-08-14T20:48:16.1428310Z adding 'torch/include/ATen/ops/index_select.h' 2025-08-14T20:48:16.1429280Z adding 'torch/include/ATen/ops/index_select_backward.h' 2025-08-14T20:48:16.1430270Z adding 'torch/include/ATen/ops/index_select_backward_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1431050Z adding 'torch/include/ATen/ops/index_select_backward_native.h' 2025-08-14T20:48:16.1431960Z adding 'torch/include/ATen/ops/index_select_backward_ops.h' 2025-08-14T20:48:16.1432920Z adding 'torch/include/ATen/ops/index_select_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1433700Z adding 'torch/include/ATen/ops/index_select_cpu_dispatch.h' 2025-08-14T20:48:16.1434530Z adding 'torch/include/ATen/ops/index_select_cuda_dispatch.h' 2025-08-14T20:48:16.1435330Z adding 'torch/include/ATen/ops/index_select_mps_dispatch.h' 2025-08-14T20:48:16.1436220Z adding 'torch/include/ATen/ops/index_select_native.h' 2025-08-14T20:48:16.1437300Z adding 'torch/include/ATen/ops/index_select_ops.h' 2025-08-14T20:48:16.1438110Z adding 'torch/include/ATen/ops/indices.h' 2025-08-14T20:48:16.1439060Z adding 'torch/include/ATen/ops/indices_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.1439860Z adding 'torch/include/ATen/ops/indices_copy.h' 2025-08-14T20:48:16.1440820Z adding 'torch/include/ATen/ops/indices_copy_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.1441720Z adding 'torch/include/ATen/ops/indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.1442440Z adding 'torch/include/ATen/ops/indices_copy_native.h' 2025-08-14T20:48:16.1443360Z adding 'torch/include/ATen/ops/indices_copy_ops.h' 2025-08-14T20:48:16.1444180Z adding 'torch/include/ATen/ops/indices_native.h' 2025-08-14T20:48:16.1445060Z adding 'torch/include/ATen/ops/indices_ops.h' 2025-08-14T20:48:16.1445970Z adding 'torch/include/ATen/ops/indices_sparsemps_dispatch.h' 2025-08-14T20:48:16.1446930Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward.h' 2025-08-14T20:48:16.1447900Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1448680Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward_native.h' 2025-08-14T20:48:16.1449550Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward_ops.h' 2025-08-14T20:48:16.1450320Z adding 'torch/include/ATen/ops/inner.h' 2025-08-14T20:48:16.1451280Z adding 'torch/include/ATen/ops/inner_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1452030Z adding 'torch/include/ATen/ops/inner_native.h' 2025-08-14T20:48:16.1452970Z adding 'torch/include/ATen/ops/inner_ops.h' 2025-08-14T20:48:16.1453920Z adding 'torch/include/ATen/ops/instance_norm.h' 2025-08-14T20:48:16.1454890Z adding 'torch/include/ATen/ops/instance_norm_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1455630Z adding 'torch/include/ATen/ops/instance_norm_native.h' 2025-08-14T20:48:16.1456580Z adding 'torch/include/ATen/ops/instance_norm_ops.h' 2025-08-14T20:48:16.1457440Z adding 'torch/include/ATen/ops/int_repr.h' 2025-08-14T20:48:16.1458400Z adding 'torch/include/ATen/ops/int_repr_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.1459130Z adding 'torch/include/ATen/ops/int_repr_native.h' 2025-08-14T20:48:16.1460380Z adding 'torch/include/ATen/ops/int_repr_ops.h' 2025-08-14T20:48:16.1461240Z adding 'torch/include/ATen/ops/inverse.h' 2025-08-14T20:48:16.1462220Z adding 'torch/include/ATen/ops/inverse_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1462930Z adding 'torch/include/ATen/ops/inverse_native.h' 2025-08-14T20:48:16.1463830Z adding 'torch/include/ATen/ops/inverse_ops.h' 2025-08-14T20:48:16.1464650Z adding 'torch/include/ATen/ops/is_coalesced.h' 2025-08-14T20:48:16.1465620Z adding 'torch/include/ATen/ops/is_coalesced_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.1466390Z adding 'torch/include/ATen/ops/is_coalesced_native.h' 2025-08-14T20:48:16.1467240Z adding 'torch/include/ATen/ops/is_coalesced_ops.h' 2025-08-14T20:48:16.1468150Z adding 'torch/include/ATen/ops/is_coalesced_sparsemps_dispatch.h' 2025-08-14T20:48:16.1468930Z adding 'torch/include/ATen/ops/is_complex.h' 2025-08-14T20:48:16.1469860Z adding 'torch/include/ATen/ops/is_complex_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1470590Z adding 'torch/include/ATen/ops/is_complex_native.h' 2025-08-14T20:48:16.1471470Z adding 'torch/include/ATen/ops/is_complex_ops.h' 2025-08-14T20:48:16.1472290Z adding 'torch/include/ATen/ops/is_conj.h' 2025-08-14T20:48:16.1473250Z adding 'torch/include/ATen/ops/is_conj_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1473990Z adding 'torch/include/ATen/ops/is_conj_native.h' 2025-08-14T20:48:16.1474860Z adding 'torch/include/ATen/ops/is_conj_ops.h' 2025-08-14T20:48:16.1475680Z adding 'torch/include/ATen/ops/is_distributed.h' 2025-08-14T20:48:16.1476630Z adding 'torch/include/ATen/ops/is_distributed_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1477370Z adding 'torch/include/ATen/ops/is_distributed_native.h' 2025-08-14T20:48:16.1478240Z adding 'torch/include/ATen/ops/is_distributed_ops.h' 2025-08-14T20:48:16.1479060Z adding 'torch/include/ATen/ops/is_floating_point.h' 2025-08-14T20:48:16.1480000Z adding 'torch/include/ATen/ops/is_floating_point_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1480740Z adding 'torch/include/ATen/ops/is_floating_point_native.h' 2025-08-14T20:48:16.1481600Z adding 'torch/include/ATen/ops/is_floating_point_ops.h' 2025-08-14T20:48:16.1482400Z adding 'torch/include/ATen/ops/is_inference.h' 2025-08-14T20:48:16.1483330Z adding 'torch/include/ATen/ops/is_inference_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1484070Z adding 'torch/include/ATen/ops/is_inference_native.h' 2025-08-14T20:48:16.1484900Z adding 'torch/include/ATen/ops/is_inference_ops.h' 2025-08-14T20:48:16.1485700Z adding 'torch/include/ATen/ops/is_leaf.h' 2025-08-14T20:48:16.1486620Z adding 'torch/include/ATen/ops/is_leaf_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1487330Z adding 'torch/include/ATen/ops/is_leaf_native.h' 2025-08-14T20:48:16.1488200Z adding 'torch/include/ATen/ops/is_leaf_ops.h' 2025-08-14T20:48:16.1489050Z adding 'torch/include/ATen/ops/is_neg.h' 2025-08-14T20:48:16.1489930Z adding 'torch/include/ATen/ops/is_neg_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1490640Z adding 'torch/include/ATen/ops/is_neg_native.h' 2025-08-14T20:48:16.1491500Z adding 'torch/include/ATen/ops/is_neg_ops.h' 2025-08-14T20:48:16.1492330Z adding 'torch/include/ATen/ops/is_nonzero.h' 2025-08-14T20:48:16.1493250Z adding 'torch/include/ATen/ops/is_nonzero_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1493970Z adding 'torch/include/ATen/ops/is_nonzero_native.h' 2025-08-14T20:48:16.1494820Z adding 'torch/include/ATen/ops/is_nonzero_ops.h' 2025-08-14T20:48:16.1495610Z adding 'torch/include/ATen/ops/is_pinned.h' 2025-08-14T20:48:16.1496560Z adding 'torch/include/ATen/ops/is_pinned_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.1497330Z adding 'torch/include/ATen/ops/is_pinned_native.h' 2025-08-14T20:48:16.1498190Z adding 'torch/include/ATen/ops/is_pinned_ops.h' 2025-08-14T20:48:16.1499030Z adding 'torch/include/ATen/ops/is_same_size.h' 2025-08-14T20:48:16.1499960Z adding 'torch/include/ATen/ops/is_same_size_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.1500710Z adding 'torch/include/ATen/ops/is_same_size_native.h' 2025-08-14T20:48:16.1501590Z adding 'torch/include/ATen/ops/is_same_size_ops.h' 2025-08-14T20:48:16.1502400Z adding 'torch/include/ATen/ops/is_set_to.h' 2025-08-14T20:48:16.1503250Z adding 'torch/include/ATen/ops/is_set_to_cpu_dispatch.h' 2025-08-14T20:48:16.1504070Z adding 'torch/include/ATen/ops/is_set_to_cuda_dispatch.h' 2025-08-14T20:48:16.1504860Z adding 'torch/include/ATen/ops/is_set_to_mps_dispatch.h' 2025-08-14T20:48:16.1505650Z adding 'torch/include/ATen/ops/is_set_to_native.h' 2025-08-14T20:48:16.1506530Z adding 'torch/include/ATen/ops/is_set_to_ops.h' 2025-08-14T20:48:16.1507340Z adding 'torch/include/ATen/ops/is_signed.h' 2025-08-14T20:48:16.1508250Z adding 'torch/include/ATen/ops/is_signed_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1508970Z adding 'torch/include/ATen/ops/is_signed_native.h' 2025-08-14T20:48:16.1509820Z adding 'torch/include/ATen/ops/is_signed_ops.h' 2025-08-14T20:48:16.1510670Z adding 'torch/include/ATen/ops/is_vulkan_available.h' 2025-08-14T20:48:16.1511600Z adding 'torch/include/ATen/ops/is_vulkan_available_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1512340Z adding 'torch/include/ATen/ops/is_vulkan_available_native.h' 2025-08-14T20:48:16.1513220Z adding 'torch/include/ATen/ops/is_vulkan_available_ops.h' 2025-08-14T20:48:16.1514040Z adding 'torch/include/ATen/ops/isclose.h' 2025-08-14T20:48:16.1515020Z adding 'torch/include/ATen/ops/isclose_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1515780Z adding 'torch/include/ATen/ops/isclose_native.h' 2025-08-14T20:48:16.1516680Z adding 'torch/include/ATen/ops/isclose_ops.h' 2025-08-14T20:48:16.1517510Z adding 'torch/include/ATen/ops/isfinite.h' 2025-08-14T20:48:16.1518450Z adding 'torch/include/ATen/ops/isfinite_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1519180Z adding 'torch/include/ATen/ops/isfinite_native.h' 2025-08-14T20:48:16.1520050Z adding 'torch/include/ATen/ops/isfinite_ops.h' 2025-08-14T20:48:16.1521090Z adding 'torch/include/ATen/ops/isin.h' 2025-08-14T20:48:16.1522130Z adding 'torch/include/ATen/ops/isin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.1522960Z adding 'torch/include/ATen/ops/isin_cpu_dispatch.h' 2025-08-14T20:48:16.1523850Z adding 'torch/include/ATen/ops/isin_cuda_dispatch.h' 2025-08-14T20:48:16.1524710Z adding 'torch/include/ATen/ops/isin_meta.h' 2025-08-14T20:48:16.1525610Z adding 'torch/include/ATen/ops/isin_meta_dispatch.h' 2025-08-14T20:48:16.1526470Z adding 'torch/include/ATen/ops/isin_mps_dispatch.h' 2025-08-14T20:48:16.1527350Z adding 'torch/include/ATen/ops/isin_native.h' 2025-08-14T20:48:16.1528480Z adding 'torch/include/ATen/ops/isin_ops.h' 2025-08-14T20:48:16.1529380Z adding 'torch/include/ATen/ops/isinf.h' 2025-08-14T20:48:16.1530320Z adding 'torch/include/ATen/ops/isinf_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.1531110Z adding 'torch/include/ATen/ops/isinf_native.h' 2025-08-14T20:48:16.1532010Z adding 'torch/include/ATen/ops/isinf_ops.h' 2025-08-14T20:48:16.1532880Z adding 'torch/include/ATen/ops/isnan.h' 2025-08-14T20:48:16.1533830Z adding 'torch/include/ATen/ops/isnan_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.1534600Z adding 'torch/include/ATen/ops/isnan_cpu_dispatch.h' 2025-08-14T20:48:16.1535410Z adding 'torch/include/ATen/ops/isnan_cuda_dispatch.h' 2025-08-14T20:48:16.1536220Z adding 'torch/include/ATen/ops/isnan_mps_dispatch.h' 2025-08-14T20:48:16.1537020Z adding 'torch/include/ATen/ops/isnan_native.h' 2025-08-14T20:48:16.1537950Z adding 'torch/include/ATen/ops/isnan_ops.h' 2025-08-14T20:48:16.1538810Z adding 'torch/include/ATen/ops/isneginf.h' 2025-08-14T20:48:16.1539780Z adding 'torch/include/ATen/ops/isneginf_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.1540530Z adding 'torch/include/ATen/ops/isneginf_cpu_dispatch.h' 2025-08-14T20:48:16.1546380Z adding 'torch/include/ATen/ops/isneginf_cuda_dispatch.h' 2025-08-14T20:48:16.1546580Z adding 'torch/include/ATen/ops/isneginf_meta.h' 2025-08-14T20:48:16.1546770Z adding 'torch/include/ATen/ops/isneginf_meta_dispatch.h' 2025-08-14T20:48:16.1546860Z adding 'torch/include/ATen/ops/isneginf_mps_dispatch.h' 2025-08-14T20:48:16.1546970Z adding 'torch/include/ATen/ops/isneginf_native.h' 2025-08-14T20:48:16.1547060Z adding 'torch/include/ATen/ops/isneginf_ops.h' 2025-08-14T20:48:16.1547130Z adding 'torch/include/ATen/ops/isposinf.h' 2025-08-14T20:48:16.1547330Z adding 'torch/include/ATen/ops/isposinf_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.1548150Z adding 'torch/include/ATen/ops/isposinf_cpu_dispatch.h' 2025-08-14T20:48:16.1548790Z adding 'torch/include/ATen/ops/isposinf_cuda_dispatch.h' 2025-08-14T20:48:16.1549710Z adding 'torch/include/ATen/ops/isposinf_meta.h' 2025-08-14T20:48:16.1550380Z adding 'torch/include/ATen/ops/isposinf_meta_dispatch.h' 2025-08-14T20:48:16.1551320Z adding 'torch/include/ATen/ops/isposinf_mps_dispatch.h' 2025-08-14T20:48:16.1552030Z adding 'torch/include/ATen/ops/isposinf_native.h' 2025-08-14T20:48:16.1552950Z adding 'torch/include/ATen/ops/isposinf_ops.h' 2025-08-14T20:48:16.1553770Z adding 'torch/include/ATen/ops/isreal.h' 2025-08-14T20:48:16.1554730Z adding 'torch/include/ATen/ops/isreal_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1555460Z adding 'torch/include/ATen/ops/isreal_native.h' 2025-08-14T20:48:16.1556320Z adding 'torch/include/ATen/ops/isreal_ops.h' 2025-08-14T20:48:16.1557240Z adding 'torch/include/ATen/ops/istft.h' 2025-08-14T20:48:16.1558230Z adding 'torch/include/ATen/ops/istft_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1559000Z adding 'torch/include/ATen/ops/istft_native.h' 2025-08-14T20:48:16.1559970Z adding 'torch/include/ATen/ops/istft_ops.h' 2025-08-14T20:48:16.1560790Z adding 'torch/include/ATen/ops/item.h' 2025-08-14T20:48:16.1561730Z adding 'torch/include/ATen/ops/item_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1562480Z adding 'torch/include/ATen/ops/item_native.h' 2025-08-14T20:48:16.1563340Z adding 'torch/include/ATen/ops/item_ops.h' 2025-08-14T20:48:16.1564490Z adding 'torch/include/ATen/ops/kaiser_window.h' 2025-08-14T20:48:16.1565600Z adding 'torch/include/ATen/ops/kaiser_window_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.1566420Z adding 'torch/include/ATen/ops/kaiser_window_native.h' 2025-08-14T20:48:16.1567590Z adding 'torch/include/ATen/ops/kaiser_window_ops.h' 2025-08-14T20:48:16.1568490Z adding 'torch/include/ATen/ops/kl_div.h' 2025-08-14T20:48:16.1569440Z adding 'torch/include/ATen/ops/kl_div_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1570200Z adding 'torch/include/ATen/ops/kl_div_native.h' 2025-08-14T20:48:16.1571110Z adding 'torch/include/ATen/ops/kl_div_ops.h' 2025-08-14T20:48:16.1572030Z adding 'torch/include/ATen/ops/kron.h' 2025-08-14T20:48:16.1572970Z adding 'torch/include/ATen/ops/kron_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1573760Z adding 'torch/include/ATen/ops/kron_native.h' 2025-08-14T20:48:16.1574660Z adding 'torch/include/ATen/ops/kron_ops.h' 2025-08-14T20:48:16.1575990Z adding 'torch/include/ATen/ops/kthvalue.h' 2025-08-14T20:48:16.1577000Z adding 'torch/include/ATen/ops/kthvalue_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.1577940Z adding 'torch/include/ATen/ops/kthvalue_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1578790Z adding 'torch/include/ATen/ops/kthvalue_cpu_dispatch.h' 2025-08-14T20:48:16.1579660Z adding 'torch/include/ATen/ops/kthvalue_cuda_dispatch.h' 2025-08-14T20:48:16.1580530Z adding 'torch/include/ATen/ops/kthvalue_native.h' 2025-08-14T20:48:16.1581610Z adding 'torch/include/ATen/ops/kthvalue_ops.h' 2025-08-14T20:48:16.1582470Z adding 'torch/include/ATen/ops/l1_loss.h' 2025-08-14T20:48:16.1583430Z adding 'torch/include/ATen/ops/l1_loss_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1584180Z adding 'torch/include/ATen/ops/l1_loss_native.h' 2025-08-14T20:48:16.1585090Z adding 'torch/include/ATen/ops/l1_loss_ops.h' 2025-08-14T20:48:16.1586070Z adding 'torch/include/ATen/ops/layer_norm.h' 2025-08-14T20:48:16.1587080Z adding 'torch/include/ATen/ops/layer_norm_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1587850Z adding 'torch/include/ATen/ops/layer_norm_native.h' 2025-08-14T20:48:16.1588820Z adding 'torch/include/ATen/ops/layer_norm_ops.h' 2025-08-14T20:48:16.1589660Z adding 'torch/include/ATen/ops/lcm.h' 2025-08-14T20:48:16.1590670Z adding 'torch/include/ATen/ops/lcm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.1591420Z adding 'torch/include/ATen/ops/lcm_cpu_dispatch.h' 2025-08-14T20:48:16.1592260Z adding 'torch/include/ATen/ops/lcm_cuda_dispatch.h' 2025-08-14T20:48:16.1593080Z adding 'torch/include/ATen/ops/lcm_meta.h' 2025-08-14T20:48:16.1593910Z adding 'torch/include/ATen/ops/lcm_meta_dispatch.h' 2025-08-14T20:48:16.1594740Z adding 'torch/include/ATen/ops/lcm_native.h' 2025-08-14T20:48:16.1595720Z adding 'torch/include/ATen/ops/lcm_ops.h' 2025-08-14T20:48:16.1596620Z adding 'torch/include/ATen/ops/ldexp.h' 2025-08-14T20:48:16.1597550Z adding 'torch/include/ATen/ops/ldexp_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1598310Z adding 'torch/include/ATen/ops/ldexp_native.h' 2025-08-14T20:48:16.1599280Z adding 'torch/include/ATen/ops/ldexp_ops.h' 2025-08-14T20:48:16.1600230Z adding 'torch/include/ATen/ops/le.h' 2025-08-14T20:48:16.1601220Z adding 'torch/include/ATen/ops/le_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.1602010Z adding 'torch/include/ATen/ops/le_cpu_dispatch.h' 2025-08-14T20:48:16.1602850Z adding 'torch/include/ATen/ops/le_cuda_dispatch.h' 2025-08-14T20:48:16.1603710Z adding 'torch/include/ATen/ops/le_meta.h' 2025-08-14T20:48:16.1604560Z adding 'torch/include/ATen/ops/le_meta_dispatch.h' 2025-08-14T20:48:16.1605400Z adding 'torch/include/ATen/ops/le_mps_dispatch.h' 2025-08-14T20:48:16.1606290Z adding 'torch/include/ATen/ops/le_native.h' 2025-08-14T20:48:16.1607380Z adding 'torch/include/ATen/ops/le_ops.h' 2025-08-14T20:48:16.1608310Z adding 'torch/include/ATen/ops/leaky_relu.h' 2025-08-14T20:48:16.1609240Z adding 'torch/include/ATen/ops/leaky_relu_backward.h' 2025-08-14T20:48:16.1610270Z adding 'torch/include/ATen/ops/leaky_relu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.1611050Z adding 'torch/include/ATen/ops/leaky_relu_backward_cpu_dispatch.h' 2025-08-14T20:48:16.1611890Z adding 'torch/include/ATen/ops/leaky_relu_backward_cuda_dispatch.h' 2025-08-14T20:48:16.1612720Z adding 'torch/include/ATen/ops/leaky_relu_backward_meta.h' 2025-08-14T20:48:16.1613590Z adding 'torch/include/ATen/ops/leaky_relu_backward_meta_dispatch.h' 2025-08-14T20:48:16.1614410Z adding 'torch/include/ATen/ops/leaky_relu_backward_mps_dispatch.h' 2025-08-14T20:48:16.1615250Z adding 'torch/include/ATen/ops/leaky_relu_backward_native.h' 2025-08-14T20:48:16.1616230Z adding 'torch/include/ATen/ops/leaky_relu_backward_ops.h' 2025-08-14T20:48:16.1617250Z adding 'torch/include/ATen/ops/leaky_relu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.1617990Z adding 'torch/include/ATen/ops/leaky_relu_cpu_dispatch.h' 2025-08-14T20:48:16.1618830Z adding 'torch/include/ATen/ops/leaky_relu_cuda_dispatch.h' 2025-08-14T20:48:16.1619640Z adding 'torch/include/ATen/ops/leaky_relu_meta.h' 2025-08-14T20:48:16.1620490Z adding 'torch/include/ATen/ops/leaky_relu_meta_dispatch.h' 2025-08-14T20:48:16.1621320Z adding 'torch/include/ATen/ops/leaky_relu_mps_dispatch.h' 2025-08-14T20:48:16.1622160Z adding 'torch/include/ATen/ops/leaky_relu_native.h' 2025-08-14T20:48:16.1623160Z adding 'torch/include/ATen/ops/leaky_relu_ops.h' 2025-08-14T20:48:16.1624100Z adding 'torch/include/ATen/ops/lerp.h' 2025-08-14T20:48:16.1625120Z adding 'torch/include/ATen/ops/lerp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.1625930Z adding 'torch/include/ATen/ops/lerp_cpu_dispatch.h' 2025-08-14T20:48:16.1626780Z adding 'torch/include/ATen/ops/lerp_cuda_dispatch.h' 2025-08-14T20:48:16.1627610Z adding 'torch/include/ATen/ops/lerp_meta.h' 2025-08-14T20:48:16.1628510Z adding 'torch/include/ATen/ops/lerp_meta_dispatch.h' 2025-08-14T20:48:16.1629370Z adding 'torch/include/ATen/ops/lerp_mps_dispatch.h' 2025-08-14T20:48:16.1630210Z adding 'torch/include/ATen/ops/lerp_native.h' 2025-08-14T20:48:16.1631400Z adding 'torch/include/ATen/ops/lerp_ops.h' 2025-08-14T20:48:16.1632310Z adding 'torch/include/ATen/ops/less.h' 2025-08-14T20:48:16.1633300Z adding 'torch/include/ATen/ops/less_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1634170Z adding 'torch/include/ATen/ops/less_equal.h' 2025-08-14T20:48:16.1635200Z adding 'torch/include/ATen/ops/less_equal_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1635980Z adding 'torch/include/ATen/ops/less_equal_native.h' 2025-08-14T20:48:16.1637060Z adding 'torch/include/ATen/ops/less_equal_ops.h' 2025-08-14T20:48:16.1637920Z adding 'torch/include/ATen/ops/less_native.h' 2025-08-14T20:48:16.1638990Z adding 'torch/include/ATen/ops/less_ops.h' 2025-08-14T20:48:16.1639890Z adding 'torch/include/ATen/ops/lgamma.h' 2025-08-14T20:48:16.1640890Z adding 'torch/include/ATen/ops/lgamma_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.1641670Z adding 'torch/include/ATen/ops/lgamma_cpu_dispatch.h' 2025-08-14T20:48:16.1642490Z adding 'torch/include/ATen/ops/lgamma_cuda_dispatch.h' 2025-08-14T20:48:16.1643300Z adding 'torch/include/ATen/ops/lgamma_meta.h' 2025-08-14T20:48:16.1644140Z adding 'torch/include/ATen/ops/lgamma_meta_dispatch.h' 2025-08-14T20:48:16.1644970Z adding 'torch/include/ATen/ops/lgamma_mps_dispatch.h' 2025-08-14T20:48:16.1645790Z adding 'torch/include/ATen/ops/lgamma_native.h' 2025-08-14T20:48:16.1646750Z adding 'torch/include/ATen/ops/lgamma_ops.h' 2025-08-14T20:48:16.1647610Z adding 'torch/include/ATen/ops/lift.h' 2025-08-14T20:48:16.1648570Z adding 'torch/include/ATen/ops/lift_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.1649360Z adding 'torch/include/ATen/ops/lift_fresh.h' 2025-08-14T20:48:16.1650310Z adding 'torch/include/ATen/ops/lift_fresh_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.1651100Z adding 'torch/include/ATen/ops/lift_fresh_copy.h' 2025-08-14T20:48:16.1652060Z adding 'torch/include/ATen/ops/lift_fresh_copy_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.1653190Z adding 'torch/include/ATen/ops/lift_fresh_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.1653690Z adding 'torch/include/ATen/ops/lift_fresh_copy_native.h' 2025-08-14T20:48:16.1654620Z adding 'torch/include/ATen/ops/lift_fresh_copy_ops.h' 2025-08-14T20:48:16.1655430Z adding 'torch/include/ATen/ops/lift_fresh_native.h' 2025-08-14T20:48:16.1656310Z adding 'torch/include/ATen/ops/lift_fresh_ops.h' 2025-08-14T20:48:16.1657130Z adding 'torch/include/ATen/ops/lift_native.h' 2025-08-14T20:48:16.1658050Z adding 'torch/include/ATen/ops/lift_ops.h' 2025-08-14T20:48:16.1658970Z adding 'torch/include/ATen/ops/linalg_cholesky.h' 2025-08-14T20:48:16.1659970Z adding 'torch/include/ATen/ops/linalg_cholesky_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1660860Z adding 'torch/include/ATen/ops/linalg_cholesky_ex.h' 2025-08-14T20:48:16.1662180Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.1662970Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_cpu_dispatch.h' 2025-08-14T20:48:16.1663830Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_cuda_dispatch.h' 2025-08-14T20:48:16.1664700Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_meta.h' 2025-08-14T20:48:16.1665570Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_meta_dispatch.h' 2025-08-14T20:48:16.1666410Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_mps_dispatch.h' 2025-08-14T20:48:16.1667230Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_native.h' 2025-08-14T20:48:16.1668250Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_ops.h' 2025-08-14T20:48:16.1669120Z adding 'torch/include/ATen/ops/linalg_cholesky_native.h' 2025-08-14T20:48:16.1670070Z adding 'torch/include/ATen/ops/linalg_cholesky_ops.h' 2025-08-14T20:48:16.1671010Z adding 'torch/include/ATen/ops/linalg_cond.h' 2025-08-14T20:48:16.1672020Z adding 'torch/include/ATen/ops/linalg_cond_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1672820Z adding 'torch/include/ATen/ops/linalg_cond_native.h' 2025-08-14T20:48:16.1673860Z adding 'torch/include/ATen/ops/linalg_cond_ops.h' 2025-08-14T20:48:16.1674760Z adding 'torch/include/ATen/ops/linalg_cross.h' 2025-08-14T20:48:16.1675800Z adding 'torch/include/ATen/ops/linalg_cross_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.1676560Z adding 'torch/include/ATen/ops/linalg_cross_cpu_dispatch.h' 2025-08-14T20:48:16.1677420Z adding 'torch/include/ATen/ops/linalg_cross_cuda_dispatch.h' 2025-08-14T20:48:16.1678250Z adding 'torch/include/ATen/ops/linalg_cross_meta.h' 2025-08-14T20:48:16.1679120Z adding 'torch/include/ATen/ops/linalg_cross_meta_dispatch.h' 2025-08-14T20:48:16.1679940Z adding 'torch/include/ATen/ops/linalg_cross_mps_dispatch.h' 2025-08-14T20:48:16.1680780Z adding 'torch/include/ATen/ops/linalg_cross_native.h' 2025-08-14T20:48:16.1681730Z adding 'torch/include/ATen/ops/linalg_cross_ops.h' 2025-08-14T20:48:16.1682590Z adding 'torch/include/ATen/ops/linalg_det.h' 2025-08-14T20:48:16.1683540Z adding 'torch/include/ATen/ops/linalg_det_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1684280Z adding 'torch/include/ATen/ops/linalg_det_native.h' 2025-08-14T20:48:16.1685200Z adding 'torch/include/ATen/ops/linalg_det_ops.h' 2025-08-14T20:48:16.1686080Z adding 'torch/include/ATen/ops/linalg_diagonal.h' 2025-08-14T20:48:16.1687050Z adding 'torch/include/ATen/ops/linalg_diagonal_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1687810Z adding 'torch/include/ATen/ops/linalg_diagonal_native.h' 2025-08-14T20:48:16.1688720Z adding 'torch/include/ATen/ops/linalg_diagonal_ops.h' 2025-08-14T20:48:16.1689580Z adding 'torch/include/ATen/ops/linalg_eig.h' 2025-08-14T20:48:16.1690500Z adding 'torch/include/ATen/ops/linalg_eig_cpu_dispatch.h' 2025-08-14T20:48:16.1691310Z adding 'torch/include/ATen/ops/linalg_eig_cuda_dispatch.h' 2025-08-14T20:48:16.1692140Z adding 'torch/include/ATen/ops/linalg_eig_native.h' 2025-08-14T20:48:16.1693100Z adding 'torch/include/ATen/ops/linalg_eig_ops.h' 2025-08-14T20:48:16.1694000Z adding 'torch/include/ATen/ops/linalg_eigh.h' 2025-08-14T20:48:16.1695010Z adding 'torch/include/ATen/ops/linalg_eigh_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1695780Z adding 'torch/include/ATen/ops/linalg_eigh_native.h' 2025-08-14T20:48:16.1696760Z adding 'torch/include/ATen/ops/linalg_eigh_ops.h' 2025-08-14T20:48:16.1697610Z adding 'torch/include/ATen/ops/linalg_eigvals.h' 2025-08-14T20:48:16.1698570Z adding 'torch/include/ATen/ops/linalg_eigvals_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1699360Z adding 'torch/include/ATen/ops/linalg_eigvals_cpu_dispatch.h' 2025-08-14T20:48:16.1700180Z adding 'torch/include/ATen/ops/linalg_eigvals_cuda_dispatch.h' 2025-08-14T20:48:16.1700980Z adding 'torch/include/ATen/ops/linalg_eigvals_native.h' 2025-08-14T20:48:16.1701920Z adding 'torch/include/ATen/ops/linalg_eigvals_ops.h' 2025-08-14T20:48:16.1702770Z adding 'torch/include/ATen/ops/linalg_eigvalsh.h' 2025-08-14T20:48:16.1703730Z adding 'torch/include/ATen/ops/linalg_eigvalsh_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1704500Z adding 'torch/include/ATen/ops/linalg_eigvalsh_native.h' 2025-08-14T20:48:16.1705430Z adding 'torch/include/ATen/ops/linalg_eigvalsh_ops.h' 2025-08-14T20:48:16.1706350Z adding 'torch/include/ATen/ops/linalg_householder_product.h' 2025-08-14T20:48:16.1707270Z adding 'torch/include/ATen/ops/linalg_householder_product_cpu_dispatch.h' 2025-08-14T20:48:16.1708130Z adding 'torch/include/ATen/ops/linalg_householder_product_cuda_dispatch.h' 2025-08-14T20:48:16.1708940Z adding 'torch/include/ATen/ops/linalg_householder_product_native.h' 2025-08-14T20:48:16.1709860Z adding 'torch/include/ATen/ops/linalg_householder_product_ops.h' 2025-08-14T20:48:16.1710710Z adding 'torch/include/ATen/ops/linalg_inv.h' 2025-08-14T20:48:16.1711680Z adding 'torch/include/ATen/ops/linalg_inv_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1712530Z adding 'torch/include/ATen/ops/linalg_inv_ex.h' 2025-08-14T20:48:16.1713520Z adding 'torch/include/ATen/ops/linalg_inv_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.1714330Z adding 'torch/include/ATen/ops/linalg_inv_ex_cpu_dispatch.h' 2025-08-14T20:48:16.1715140Z adding 'torch/include/ATen/ops/linalg_inv_ex_cuda_dispatch.h' 2025-08-14T20:48:16.1715950Z adding 'torch/include/ATen/ops/linalg_inv_ex_meta.h' 2025-08-14T20:48:16.1716810Z adding 'torch/include/ATen/ops/linalg_inv_ex_meta_dispatch.h' 2025-08-14T20:48:16.1717620Z adding 'torch/include/ATen/ops/linalg_inv_ex_mps_dispatch.h' 2025-08-14T20:48:16.1718490Z adding 'torch/include/ATen/ops/linalg_inv_ex_native.h' 2025-08-14T20:48:16.1719440Z adding 'torch/include/ATen/ops/linalg_inv_ex_ops.h' 2025-08-14T20:48:16.1720260Z adding 'torch/include/ATen/ops/linalg_inv_native.h' 2025-08-14T20:48:16.1721180Z adding 'torch/include/ATen/ops/linalg_inv_ops.h' 2025-08-14T20:48:16.1722110Z adding 'torch/include/ATen/ops/linalg_ldl_factor.h' 2025-08-14T20:48:16.1723110Z adding 'torch/include/ATen/ops/linalg_ldl_factor_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1723950Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex.h' 2025-08-14T20:48:16.1724980Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.1725750Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_cpu_dispatch.h' 2025-08-14T20:48:16.1726610Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_cuda_dispatch.h' 2025-08-14T20:48:16.1727420Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_meta.h' 2025-08-14T20:48:16.1728280Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_meta_dispatch.h' 2025-08-14T20:48:16.1729130Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_native.h' 2025-08-14T20:48:16.1730110Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_ops.h' 2025-08-14T20:48:16.1730960Z adding 'torch/include/ATen/ops/linalg_ldl_factor_native.h' 2025-08-14T20:48:16.1731920Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ops.h' 2025-08-14T20:48:16.1732830Z adding 'torch/include/ATen/ops/linalg_ldl_solve.h' 2025-08-14T20:48:16.1733860Z adding 'torch/include/ATen/ops/linalg_ldl_solve_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.1734670Z adding 'torch/include/ATen/ops/linalg_ldl_solve_cpu_dispatch.h' 2025-08-14T20:48:16.1735480Z adding 'torch/include/ATen/ops/linalg_ldl_solve_cuda_dispatch.h' 2025-08-14T20:48:16.1736320Z adding 'torch/include/ATen/ops/linalg_ldl_solve_meta.h' 2025-08-14T20:48:16.1737180Z adding 'torch/include/ATen/ops/linalg_ldl_solve_meta_dispatch.h' 2025-08-14T20:48:16.1738000Z adding 'torch/include/ATen/ops/linalg_ldl_solve_native.h' 2025-08-14T20:48:16.1738970Z adding 'torch/include/ATen/ops/linalg_ldl_solve_ops.h' 2025-08-14T20:48:16.1739950Z adding 'torch/include/ATen/ops/linalg_lstsq.h' 2025-08-14T20:48:16.1740970Z adding 'torch/include/ATen/ops/linalg_lstsq_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.1741780Z adding 'torch/include/ATen/ops/linalg_lstsq_cpu_dispatch.h' 2025-08-14T20:48:16.1742630Z adding 'torch/include/ATen/ops/linalg_lstsq_cuda_dispatch.h' 2025-08-14T20:48:16.1743500Z adding 'torch/include/ATen/ops/linalg_lstsq_native.h' 2025-08-14T20:48:16.1744540Z adding 'torch/include/ATen/ops/linalg_lstsq_ops.h' 2025-08-14T20:48:16.1745470Z adding 'torch/include/ATen/ops/linalg_lu.h' 2025-08-14T20:48:16.1746500Z adding 'torch/include/ATen/ops/linalg_lu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.1747290Z adding 'torch/include/ATen/ops/linalg_lu_cpu_dispatch.h' 2025-08-14T20:48:16.1748130Z adding 'torch/include/ATen/ops/linalg_lu_cuda_dispatch.h' 2025-08-14T20:48:16.1749000Z adding 'torch/include/ATen/ops/linalg_lu_factor.h' 2025-08-14T20:48:16.1749990Z adding 'torch/include/ATen/ops/linalg_lu_factor_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1750830Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex.h' 2025-08-14T20:48:16.1751850Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.1752650Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_cpu_dispatch.h' 2025-08-14T20:48:16.1753570Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_cuda_dispatch.h' 2025-08-14T20:48:16.1754340Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_meta.h' 2025-08-14T20:48:16.1755230Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_meta_dispatch.h' 2025-08-14T20:48:16.1756040Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_mps_dispatch.h' 2025-08-14T20:48:16.1756910Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_native.h' 2025-08-14T20:48:16.1757900Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_ops.h' 2025-08-14T20:48:16.1758790Z adding 'torch/include/ATen/ops/linalg_lu_factor_mps_dispatch.h' 2025-08-14T20:48:16.1759630Z adding 'torch/include/ATen/ops/linalg_lu_factor_native.h' 2025-08-14T20:48:16.1760610Z adding 'torch/include/ATen/ops/linalg_lu_factor_ops.h' 2025-08-14T20:48:16.1761420Z adding 'torch/include/ATen/ops/linalg_lu_meta.h' 2025-08-14T20:48:16.1762280Z adding 'torch/include/ATen/ops/linalg_lu_meta_dispatch.h' 2025-08-14T20:48:16.1763100Z adding 'torch/include/ATen/ops/linalg_lu_native.h' 2025-08-14T20:48:16.1764070Z adding 'torch/include/ATen/ops/linalg_lu_ops.h' 2025-08-14T20:48:16.1765000Z adding 'torch/include/ATen/ops/linalg_lu_solve.h' 2025-08-14T20:48:16.1765990Z adding 'torch/include/ATen/ops/linalg_lu_solve_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.1766770Z adding 'torch/include/ATen/ops/linalg_lu_solve_cpu_dispatch.h' 2025-08-14T20:48:16.1767570Z adding 'torch/include/ATen/ops/linalg_lu_solve_cuda_dispatch.h' 2025-08-14T20:48:16.1768400Z adding 'torch/include/ATen/ops/linalg_lu_solve_meta.h' 2025-08-14T20:48:16.1769260Z adding 'torch/include/ATen/ops/linalg_lu_solve_meta_dispatch.h' 2025-08-14T20:48:16.1770110Z adding 'torch/include/ATen/ops/linalg_lu_solve_native.h' 2025-08-14T20:48:16.1771080Z adding 'torch/include/ATen/ops/linalg_lu_solve_ops.h' 2025-08-14T20:48:16.1771950Z adding 'torch/include/ATen/ops/linalg_matmul.h' 2025-08-14T20:48:16.1772940Z adding 'torch/include/ATen/ops/linalg_matmul_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1773690Z adding 'torch/include/ATen/ops/linalg_matmul_native.h' 2025-08-14T20:48:16.1774620Z adding 'torch/include/ATen/ops/linalg_matmul_ops.h' 2025-08-14T20:48:16.1775490Z adding 'torch/include/ATen/ops/linalg_matrix_exp.h' 2025-08-14T20:48:16.1776450Z adding 'torch/include/ATen/ops/linalg_matrix_exp_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.1777240Z adding 'torch/include/ATen/ops/linalg_matrix_exp_cpu_dispatch.h' 2025-08-14T20:48:16.1778040Z adding 'torch/include/ATen/ops/linalg_matrix_exp_cuda_dispatch.h' 2025-08-14T20:48:16.1778860Z adding 'torch/include/ATen/ops/linalg_matrix_exp_native.h' 2025-08-14T20:48:16.1779800Z adding 'torch/include/ATen/ops/linalg_matrix_exp_ops.h' 2025-08-14T20:48:16.1780820Z adding 'torch/include/ATen/ops/linalg_matrix_norm.h' 2025-08-14T20:48:16.1781860Z adding 'torch/include/ATen/ops/linalg_matrix_norm_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1782680Z adding 'torch/include/ATen/ops/linalg_matrix_norm_native.h' 2025-08-14T20:48:16.1783750Z adding 'torch/include/ATen/ops/linalg_matrix_norm_ops.h' 2025-08-14T20:48:16.1784630Z adding 'torch/include/ATen/ops/linalg_matrix_power.h' 2025-08-14T20:48:16.1785590Z adding 'torch/include/ATen/ops/linalg_matrix_power_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1786360Z adding 'torch/include/ATen/ops/linalg_matrix_power_native.h' 2025-08-14T20:48:16.1787280Z adding 'torch/include/ATen/ops/linalg_matrix_power_ops.h' 2025-08-14T20:48:16.1788390Z adding 'torch/include/ATen/ops/linalg_matrix_rank.h' 2025-08-14T20:48:16.1789480Z adding 'torch/include/ATen/ops/linalg_matrix_rank_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1790320Z adding 'torch/include/ATen/ops/linalg_matrix_rank_native.h' 2025-08-14T20:48:16.1791550Z adding 'torch/include/ATen/ops/linalg_matrix_rank_ops.h' 2025-08-14T20:48:16.1792440Z adding 'torch/include/ATen/ops/linalg_multi_dot.h' 2025-08-14T20:48:16.1793420Z adding 'torch/include/ATen/ops/linalg_multi_dot_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1794210Z adding 'torch/include/ATen/ops/linalg_multi_dot_native.h' 2025-08-14T20:48:16.1795100Z adding 'torch/include/ATen/ops/linalg_multi_dot_ops.h' 2025-08-14T20:48:16.1796110Z adding 'torch/include/ATen/ops/linalg_norm.h' 2025-08-14T20:48:16.1797140Z adding 'torch/include/ATen/ops/linalg_norm_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1797940Z adding 'torch/include/ATen/ops/linalg_norm_native.h' 2025-08-14T20:48:16.1799070Z adding 'torch/include/ATen/ops/linalg_norm_ops.h' 2025-08-14T20:48:16.1800160Z adding 'torch/include/ATen/ops/linalg_pinv.h' 2025-08-14T20:48:16.1801170Z adding 'torch/include/ATen/ops/linalg_pinv_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.1802090Z adding 'torch/include/ATen/ops/linalg_pinv_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.1803020Z adding 'torch/include/ATen/ops/linalg_pinv_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1803960Z adding 'torch/include/ATen/ops/linalg_pinv_native.h' 2025-08-14T20:48:16.1805300Z adding 'torch/include/ATen/ops/linalg_pinv_ops.h' 2025-08-14T20:48:16.1806400Z adding 'torch/include/ATen/ops/linalg_qr.h' 2025-08-14T20:48:16.1807520Z adding 'torch/include/ATen/ops/linalg_qr_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.1808390Z adding 'torch/include/ATen/ops/linalg_qr_cpu_dispatch.h' 2025-08-14T20:48:16.1809270Z adding 'torch/include/ATen/ops/linalg_qr_cuda_dispatch.h' 2025-08-14T20:48:16.1810080Z adding 'torch/include/ATen/ops/linalg_qr_meta.h' 2025-08-14T20:48:16.1810940Z adding 'torch/include/ATen/ops/linalg_qr_meta_dispatch.h' 2025-08-14T20:48:16.1811750Z adding 'torch/include/ATen/ops/linalg_qr_native.h' 2025-08-14T20:48:16.1812710Z adding 'torch/include/ATen/ops/linalg_qr_ops.h' 2025-08-14T20:48:16.1813610Z adding 'torch/include/ATen/ops/linalg_slogdet.h' 2025-08-14T20:48:16.1814570Z adding 'torch/include/ATen/ops/linalg_slogdet_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1815340Z adding 'torch/include/ATen/ops/linalg_slogdet_native.h' 2025-08-14T20:48:16.1816290Z adding 'torch/include/ATen/ops/linalg_slogdet_ops.h' 2025-08-14T20:48:16.1817180Z adding 'torch/include/ATen/ops/linalg_solve.h' 2025-08-14T20:48:16.1818170Z adding 'torch/include/ATen/ops/linalg_solve_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1819000Z adding 'torch/include/ATen/ops/linalg_solve_ex.h' 2025-08-14T20:48:16.1820030Z adding 'torch/include/ATen/ops/linalg_solve_ex_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1820770Z adding 'torch/include/ATen/ops/linalg_solve_ex_native.h' 2025-08-14T20:48:16.1821750Z adding 'torch/include/ATen/ops/linalg_solve_ex_ops.h' 2025-08-14T20:48:16.1822570Z adding 'torch/include/ATen/ops/linalg_solve_native.h' 2025-08-14T20:48:16.1823550Z adding 'torch/include/ATen/ops/linalg_solve_ops.h' 2025-08-14T20:48:16.1824440Z adding 'torch/include/ATen/ops/linalg_solve_triangular.h' 2025-08-14T20:48:16.1825360Z adding 'torch/include/ATen/ops/linalg_solve_triangular_cpu_dispatch.h' 2025-08-14T20:48:16.1826220Z adding 'torch/include/ATen/ops/linalg_solve_triangular_cuda_dispatch.h' 2025-08-14T20:48:16.1827030Z adding 'torch/include/ATen/ops/linalg_solve_triangular_mps_dispatch.h' 2025-08-14T20:48:16.1827860Z adding 'torch/include/ATen/ops/linalg_solve_triangular_native.h' 2025-08-14T20:48:16.1828820Z adding 'torch/include/ATen/ops/linalg_solve_triangular_ops.h' 2025-08-14T20:48:16.1829730Z adding 'torch/include/ATen/ops/linalg_svd.h' 2025-08-14T20:48:16.1830710Z adding 'torch/include/ATen/ops/linalg_svd_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1831500Z adding 'torch/include/ATen/ops/linalg_svd_native.h' 2025-08-14T20:48:16.1832470Z adding 'torch/include/ATen/ops/linalg_svd_ops.h' 2025-08-14T20:48:16.1833370Z adding 'torch/include/ATen/ops/linalg_svdvals.h' 2025-08-14T20:48:16.1834360Z adding 'torch/include/ATen/ops/linalg_svdvals_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1835130Z adding 'torch/include/ATen/ops/linalg_svdvals_native.h' 2025-08-14T20:48:16.1836070Z adding 'torch/include/ATen/ops/linalg_svdvals_ops.h' 2025-08-14T20:48:16.1836990Z adding 'torch/include/ATen/ops/linalg_tensorinv.h' 2025-08-14T20:48:16.1837940Z adding 'torch/include/ATen/ops/linalg_tensorinv_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1838700Z adding 'torch/include/ATen/ops/linalg_tensorinv_native.h' 2025-08-14T20:48:16.1839670Z adding 'torch/include/ATen/ops/linalg_tensorinv_ops.h' 2025-08-14T20:48:16.1840610Z adding 'torch/include/ATen/ops/linalg_tensorsolve.h' 2025-08-14T20:48:16.1841570Z adding 'torch/include/ATen/ops/linalg_tensorsolve_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1842370Z adding 'torch/include/ATen/ops/linalg_tensorsolve_native.h' 2025-08-14T20:48:16.1843320Z adding 'torch/include/ATen/ops/linalg_tensorsolve_ops.h' 2025-08-14T20:48:16.1844220Z adding 'torch/include/ATen/ops/linalg_vander.h' 2025-08-14T20:48:16.1845180Z adding 'torch/include/ATen/ops/linalg_vander_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1845950Z adding 'torch/include/ATen/ops/linalg_vander_native.h' 2025-08-14T20:48:16.1846840Z adding 'torch/include/ATen/ops/linalg_vander_ops.h' 2025-08-14T20:48:16.1847710Z adding 'torch/include/ATen/ops/linalg_vecdot.h' 2025-08-14T20:48:16.1848700Z adding 'torch/include/ATen/ops/linalg_vecdot_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1849440Z adding 'torch/include/ATen/ops/linalg_vecdot_native.h' 2025-08-14T20:48:16.1850350Z adding 'torch/include/ATen/ops/linalg_vecdot_ops.h' 2025-08-14T20:48:16.1851320Z adding 'torch/include/ATen/ops/linalg_vector_norm.h' 2025-08-14T20:48:16.1852360Z adding 'torch/include/ATen/ops/linalg_vector_norm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.1853150Z adding 'torch/include/ATen/ops/linalg_vector_norm_cpu_dispatch.h' 2025-08-14T20:48:16.1854010Z adding 'torch/include/ATen/ops/linalg_vector_norm_cuda_dispatch.h' 2025-08-14T20:48:16.1854840Z adding 'torch/include/ATen/ops/linalg_vector_norm_meta.h' 2025-08-14T20:48:16.1855720Z adding 'torch/include/ATen/ops/linalg_vector_norm_meta_dispatch.h' 2025-08-14T20:48:16.1856550Z adding 'torch/include/ATen/ops/linalg_vector_norm_mps_dispatch.h' 2025-08-14T20:48:16.1857400Z adding 'torch/include/ATen/ops/linalg_vector_norm_native.h' 2025-08-14T20:48:16.1858350Z adding 'torch/include/ATen/ops/linalg_vector_norm_ops.h' 2025-08-14T20:48:16.1859250Z adding 'torch/include/ATen/ops/linear.h' 2025-08-14T20:48:16.1860210Z adding 'torch/include/ATen/ops/linear_backward.h' 2025-08-14T20:48:16.1861210Z adding 'torch/include/ATen/ops/linear_backward_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.1862030Z adding 'torch/include/ATen/ops/linear_backward_mps_dispatch.h' 2025-08-14T20:48:16.1862880Z adding 'torch/include/ATen/ops/linear_backward_native.h' 2025-08-14T20:48:16.1863910Z adding 'torch/include/ATen/ops/linear_backward_ops.h' 2025-08-14T20:48:16.1864830Z adding 'torch/include/ATen/ops/linear_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.1865690Z adding 'torch/include/ATen/ops/linear_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1866490Z adding 'torch/include/ATen/ops/linear_mps_dispatch.h' 2025-08-14T20:48:16.1867340Z adding 'torch/include/ATen/ops/linear_native.h' 2025-08-14T20:48:16.1868270Z adding 'torch/include/ATen/ops/linear_ops.h' 2025-08-14T20:48:16.1870190Z adding 'torch/include/ATen/ops/linspace.h' 2025-08-14T20:48:16.1871030Z adding 'torch/include/ATen/ops/linspace_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.1871830Z adding 'torch/include/ATen/ops/linspace_cpu_dispatch.h' 2025-08-14T20:48:16.1872650Z adding 'torch/include/ATen/ops/linspace_cuda_dispatch.h' 2025-08-14T20:48:16.1873460Z adding 'torch/include/ATen/ops/linspace_meta_dispatch.h' 2025-08-14T20:48:16.1874290Z adding 'torch/include/ATen/ops/linspace_mps_dispatch.h' 2025-08-14T20:48:16.1875190Z adding 'torch/include/ATen/ops/linspace_native.h' 2025-08-14T20:48:16.1876560Z adding 'torch/include/ATen/ops/linspace_ops.h' 2025-08-14T20:48:16.1877430Z adding 'torch/include/ATen/ops/log.h' 2025-08-14T20:48:16.1878350Z adding 'torch/include/ATen/ops/log10.h' 2025-08-14T20:48:16.1879360Z adding 'torch/include/ATen/ops/log10_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.1880100Z adding 'torch/include/ATen/ops/log10_cpu_dispatch.h' 2025-08-14T20:48:16.1880930Z adding 'torch/include/ATen/ops/log10_cuda_dispatch.h' 2025-08-14T20:48:16.1881740Z adding 'torch/include/ATen/ops/log10_meta.h' 2025-08-14T20:48:16.1882600Z adding 'torch/include/ATen/ops/log10_meta_dispatch.h' 2025-08-14T20:48:16.1883380Z adding 'torch/include/ATen/ops/log10_mps_dispatch.h' 2025-08-14T20:48:16.1884200Z adding 'torch/include/ATen/ops/log10_native.h' 2025-08-14T20:48:16.1885180Z adding 'torch/include/ATen/ops/log10_ops.h' 2025-08-14T20:48:16.1886060Z adding 'torch/include/ATen/ops/log1p.h' 2025-08-14T20:48:16.1887050Z adding 'torch/include/ATen/ops/log1p_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.1887800Z adding 'torch/include/ATen/ops/log1p_cpu_dispatch.h' 2025-08-14T20:48:16.1888580Z adding 'torch/include/ATen/ops/log1p_cuda_dispatch.h' 2025-08-14T20:48:16.1889420Z adding 'torch/include/ATen/ops/log1p_meta.h' 2025-08-14T20:48:16.1890270Z adding 'torch/include/ATen/ops/log1p_meta_dispatch.h' 2025-08-14T20:48:16.1891050Z adding 'torch/include/ATen/ops/log1p_mps_dispatch.h' 2025-08-14T20:48:16.1891890Z adding 'torch/include/ATen/ops/log1p_native.h' 2025-08-14T20:48:16.1892860Z adding 'torch/include/ATen/ops/log1p_ops.h' 2025-08-14T20:48:16.1893770Z adding 'torch/include/ATen/ops/log2.h' 2025-08-14T20:48:16.1894750Z adding 'torch/include/ATen/ops/log2_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.1895500Z adding 'torch/include/ATen/ops/log2_cpu_dispatch.h' 2025-08-14T20:48:16.1896310Z adding 'torch/include/ATen/ops/log2_cuda_dispatch.h' 2025-08-14T20:48:16.1897130Z adding 'torch/include/ATen/ops/log2_meta.h' 2025-08-14T20:48:16.1897960Z adding 'torch/include/ATen/ops/log2_meta_dispatch.h' 2025-08-14T20:48:16.1898760Z adding 'torch/include/ATen/ops/log2_mps_dispatch.h' 2025-08-14T20:48:16.1899600Z adding 'torch/include/ATen/ops/log2_native.h' 2025-08-14T20:48:16.1900540Z adding 'torch/include/ATen/ops/log2_ops.h' 2025-08-14T20:48:16.1901520Z adding 'torch/include/ATen/ops/log_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.1902250Z adding 'torch/include/ATen/ops/log_cpu_dispatch.h' 2025-08-14T20:48:16.1903040Z adding 'torch/include/ATen/ops/log_cuda_dispatch.h' 2025-08-14T20:48:16.1903870Z adding 'torch/include/ATen/ops/log_meta.h' 2025-08-14T20:48:16.1904710Z adding 'torch/include/ATen/ops/log_meta_dispatch.h' 2025-08-14T20:48:16.1905500Z adding 'torch/include/ATen/ops/log_mps_dispatch.h' 2025-08-14T20:48:16.1906310Z adding 'torch/include/ATen/ops/log_native.h' 2025-08-14T20:48:16.1907250Z adding 'torch/include/ATen/ops/log_normal.h' 2025-08-14T20:48:16.1908230Z adding 'torch/include/ATen/ops/log_normal_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.1909040Z adding 'torch/include/ATen/ops/log_normal_cpu_dispatch.h' 2025-08-14T20:48:16.1909880Z adding 'torch/include/ATen/ops/log_normal_cuda_dispatch.h' 2025-08-14T20:48:16.1910690Z adding 'torch/include/ATen/ops/log_normal_meta_dispatch.h' 2025-08-14T20:48:16.1911510Z adding 'torch/include/ATen/ops/log_normal_native.h' 2025-08-14T20:48:16.1912540Z adding 'torch/include/ATen/ops/log_normal_ops.h' 2025-08-14T20:48:16.1913500Z adding 'torch/include/ATen/ops/log_ops.h' 2025-08-14T20:48:16.1914390Z adding 'torch/include/ATen/ops/log_sigmoid.h' 2025-08-14T20:48:16.1915330Z adding 'torch/include/ATen/ops/log_sigmoid_backward.h' 2025-08-14T20:48:16.1916270Z adding 'torch/include/ATen/ops/log_sigmoid_backward_cpu_dispatch.h' 2025-08-14T20:48:16.1917110Z adding 'torch/include/ATen/ops/log_sigmoid_backward_cuda_dispatch.h' 2025-08-14T20:48:16.1917920Z adding 'torch/include/ATen/ops/log_sigmoid_backward_mps_dispatch.h' 2025-08-14T20:48:16.1918780Z adding 'torch/include/ATen/ops/log_sigmoid_backward_native.h' 2025-08-14T20:48:16.1919750Z adding 'torch/include/ATen/ops/log_sigmoid_backward_ops.h' 2025-08-14T20:48:16.1920760Z adding 'torch/include/ATen/ops/log_sigmoid_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1921550Z adding 'torch/include/ATen/ops/log_sigmoid_forward.h' 2025-08-14T20:48:16.1922480Z adding 'torch/include/ATen/ops/log_sigmoid_forward_cpu_dispatch.h' 2025-08-14T20:48:16.1923380Z adding 'torch/include/ATen/ops/log_sigmoid_forward_cuda_dispatch.h' 2025-08-14T20:48:16.1924240Z adding 'torch/include/ATen/ops/log_sigmoid_forward_mps_dispatch.h' 2025-08-14T20:48:16.1925130Z adding 'torch/include/ATen/ops/log_sigmoid_forward_native.h' 2025-08-14T20:48:16.1926110Z adding 'torch/include/ATen/ops/log_sigmoid_forward_ops.h' 2025-08-14T20:48:16.1926940Z adding 'torch/include/ATen/ops/log_sigmoid_native.h' 2025-08-14T20:48:16.1927850Z adding 'torch/include/ATen/ops/log_sigmoid_ops.h' 2025-08-14T20:48:16.1928790Z adding 'torch/include/ATen/ops/log_softmax.h' 2025-08-14T20:48:16.1929770Z adding 'torch/include/ATen/ops/log_softmax_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.1930660Z adding 'torch/include/ATen/ops/log_softmax_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1931430Z adding 'torch/include/ATen/ops/log_softmax_native.h' 2025-08-14T20:48:16.1932430Z adding 'torch/include/ATen/ops/log_softmax_ops.h' 2025-08-14T20:48:16.1933320Z adding 'torch/include/ATen/ops/logaddexp.h' 2025-08-14T20:48:16.1934230Z adding 'torch/include/ATen/ops/logaddexp2.h' 2025-08-14T20:48:16.1935270Z adding 'torch/include/ATen/ops/logaddexp2_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.1936040Z adding 'torch/include/ATen/ops/logaddexp2_cpu_dispatch.h' 2025-08-14T20:48:16.1936890Z adding 'torch/include/ATen/ops/logaddexp2_cuda_dispatch.h' 2025-08-14T20:48:16.1937700Z adding 'torch/include/ATen/ops/logaddexp2_meta.h' 2025-08-14T20:48:16.1938570Z adding 'torch/include/ATen/ops/logaddexp2_meta_dispatch.h' 2025-08-14T20:48:16.1939440Z adding 'torch/include/ATen/ops/logaddexp2_mps_dispatch.h' 2025-08-14T20:48:16.1940290Z adding 'torch/include/ATen/ops/logaddexp2_native.h' 2025-08-14T20:48:16.1941220Z adding 'torch/include/ATen/ops/logaddexp2_ops.h' 2025-08-14T20:48:16.1942220Z adding 'torch/include/ATen/ops/logaddexp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.1942980Z adding 'torch/include/ATen/ops/logaddexp_cpu_dispatch.h' 2025-08-14T20:48:16.1943770Z adding 'torch/include/ATen/ops/logaddexp_cuda_dispatch.h' 2025-08-14T20:48:16.1944590Z adding 'torch/include/ATen/ops/logaddexp_meta.h' 2025-08-14T20:48:16.1945440Z adding 'torch/include/ATen/ops/logaddexp_meta_dispatch.h' 2025-08-14T20:48:16.1946240Z adding 'torch/include/ATen/ops/logaddexp_mps_dispatch.h' 2025-08-14T20:48:16.1947120Z adding 'torch/include/ATen/ops/logaddexp_native.h' 2025-08-14T20:48:16.1948060Z adding 'torch/include/ATen/ops/logaddexp_ops.h' 2025-08-14T20:48:16.1949060Z adding 'torch/include/ATen/ops/logcumsumexp.h' 2025-08-14T20:48:16.1950010Z adding 'torch/include/ATen/ops/logcumsumexp_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.1950870Z adding 'torch/include/ATen/ops/logcumsumexp_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1951630Z adding 'torch/include/ATen/ops/logcumsumexp_native.h' 2025-08-14T20:48:16.1952650Z adding 'torch/include/ATen/ops/logcumsumexp_ops.h' 2025-08-14T20:48:16.1953490Z adding 'torch/include/ATen/ops/logdet.h' 2025-08-14T20:48:16.1954450Z adding 'torch/include/ATen/ops/logdet_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.1955210Z adding 'torch/include/ATen/ops/logdet_native.h' 2025-08-14T20:48:16.1956080Z adding 'torch/include/ATen/ops/logdet_ops.h' 2025-08-14T20:48:16.1956970Z adding 'torch/include/ATen/ops/logical_and.h' 2025-08-14T20:48:16.1957920Z adding 'torch/include/ATen/ops/logical_and_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.1958710Z adding 'torch/include/ATen/ops/logical_and_cpu_dispatch.h' 2025-08-14T20:48:16.1959510Z adding 'torch/include/ATen/ops/logical_and_cuda_dispatch.h' 2025-08-14T20:48:16.1960320Z adding 'torch/include/ATen/ops/logical_and_mps_dispatch.h' 2025-08-14T20:48:16.1961180Z adding 'torch/include/ATen/ops/logical_and_native.h' 2025-08-14T20:48:16.1962190Z adding 'torch/include/ATen/ops/logical_and_ops.h' 2025-08-14T20:48:16.1963050Z adding 'torch/include/ATen/ops/logical_not.h' 2025-08-14T20:48:16.1964010Z adding 'torch/include/ATen/ops/logical_not_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.1964790Z adding 'torch/include/ATen/ops/logical_not_cpu_dispatch.h' 2025-08-14T20:48:16.1965610Z adding 'torch/include/ATen/ops/logical_not_cuda_dispatch.h' 2025-08-14T20:48:16.1966440Z adding 'torch/include/ATen/ops/logical_not_mps_dispatch.h' 2025-08-14T20:48:16.1967260Z adding 'torch/include/ATen/ops/logical_not_native.h' 2025-08-14T20:48:16.1968240Z adding 'torch/include/ATen/ops/logical_not_ops.h' 2025-08-14T20:48:16.1969160Z adding 'torch/include/ATen/ops/logical_or.h' 2025-08-14T20:48:16.1970140Z adding 'torch/include/ATen/ops/logical_or_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.1970960Z adding 'torch/include/ATen/ops/logical_or_cpu_dispatch.h' 2025-08-14T20:48:16.1971780Z adding 'torch/include/ATen/ops/logical_or_cuda_dispatch.h' 2025-08-14T20:48:16.1972650Z adding 'torch/include/ATen/ops/logical_or_mps_dispatch.h' 2025-08-14T20:48:16.1973480Z adding 'torch/include/ATen/ops/logical_or_native.h' 2025-08-14T20:48:16.1974470Z adding 'torch/include/ATen/ops/logical_or_ops.h' 2025-08-14T20:48:16.1975360Z adding 'torch/include/ATen/ops/logical_xor.h' 2025-08-14T20:48:16.1976330Z adding 'torch/include/ATen/ops/logical_xor_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.1977150Z adding 'torch/include/ATen/ops/logical_xor_cpu_dispatch.h' 2025-08-14T20:48:16.1977990Z adding 'torch/include/ATen/ops/logical_xor_cuda_dispatch.h' 2025-08-14T20:48:16.1978780Z adding 'torch/include/ATen/ops/logical_xor_mps_dispatch.h' 2025-08-14T20:48:16.1979660Z adding 'torch/include/ATen/ops/logical_xor_native.h' 2025-08-14T20:48:16.1980710Z adding 'torch/include/ATen/ops/logical_xor_ops.h' 2025-08-14T20:48:16.1981650Z adding 'torch/include/ATen/ops/logit.h' 2025-08-14T20:48:16.1982600Z adding 'torch/include/ATen/ops/logit_backward.h' 2025-08-14T20:48:16.1983640Z adding 'torch/include/ATen/ops/logit_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.1984430Z adding 'torch/include/ATen/ops/logit_backward_cpu_dispatch.h' 2025-08-14T20:48:16.1985260Z adding 'torch/include/ATen/ops/logit_backward_cuda_dispatch.h' 2025-08-14T20:48:16.1986100Z adding 'torch/include/ATen/ops/logit_backward_meta.h' 2025-08-14T20:48:16.1986970Z adding 'torch/include/ATen/ops/logit_backward_meta_dispatch.h' 2025-08-14T20:48:16.1987790Z adding 'torch/include/ATen/ops/logit_backward_mps_dispatch.h' 2025-08-14T20:48:16.1988650Z adding 'torch/include/ATen/ops/logit_backward_native.h' 2025-08-14T20:48:16.1989660Z adding 'torch/include/ATen/ops/logit_backward_ops.h' 2025-08-14T20:48:16.1990540Z adding 'torch/include/ATen/ops/logit_cpu_dispatch.h' 2025-08-14T20:48:16.1991360Z adding 'torch/include/ATen/ops/logit_cuda_dispatch.h' 2025-08-14T20:48:16.1992220Z adding 'torch/include/ATen/ops/logit_meta_dispatch.h' 2025-08-14T20:48:16.1993070Z adding 'torch/include/ATen/ops/logit_mps_dispatch.h' 2025-08-14T20:48:16.1993900Z adding 'torch/include/ATen/ops/logit_native.h' 2025-08-14T20:48:16.1994860Z adding 'torch/include/ATen/ops/logit_ops.h' 2025-08-14T20:48:16.1996190Z adding 'torch/include/ATen/ops/logspace.h' 2025-08-14T20:48:16.1997330Z adding 'torch/include/ATen/ops/logspace_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.1998150Z adding 'torch/include/ATen/ops/logspace_cpu_dispatch.h' 2025-08-14T20:48:16.1999000Z adding 'torch/include/ATen/ops/logspace_cuda_dispatch.h' 2025-08-14T20:48:16.1999830Z adding 'torch/include/ATen/ops/logspace_meta_dispatch.h' 2025-08-14T20:48:16.2000730Z adding 'torch/include/ATen/ops/logspace_native.h' 2025-08-14T20:48:16.2002150Z adding 'torch/include/ATen/ops/logspace_ops.h' 2025-08-14T20:48:16.2003120Z adding 'torch/include/ATen/ops/logsumexp.h' 2025-08-14T20:48:16.2004100Z adding 'torch/include/ATen/ops/logsumexp_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2005060Z adding 'torch/include/ATen/ops/logsumexp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.2005880Z adding 'torch/include/ATen/ops/logsumexp_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2006660Z adding 'torch/include/ATen/ops/logsumexp_native.h' 2025-08-14T20:48:16.2007690Z adding 'torch/include/ATen/ops/logsumexp_ops.h' 2025-08-14T20:48:16.2008650Z adding 'torch/include/ATen/ops/lshift.h' 2025-08-14T20:48:16.2009660Z adding 'torch/include/ATen/ops/lshift_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2010490Z adding 'torch/include/ATen/ops/lshift_cpu_dispatch.h' 2025-08-14T20:48:16.2011340Z adding 'torch/include/ATen/ops/lshift_cuda_dispatch.h' 2025-08-14T20:48:16.2012200Z adding 'torch/include/ATen/ops/lshift_meta_dispatch.h' 2025-08-14T20:48:16.2012990Z adding 'torch/include/ATen/ops/lshift_mps_dispatch.h' 2025-08-14T20:48:16.2013840Z adding 'torch/include/ATen/ops/lshift_native.h' 2025-08-14T20:48:16.2014960Z adding 'torch/include/ATen/ops/lshift_ops.h' 2025-08-14T20:48:16.2015920Z adding 'torch/include/ATen/ops/lstm.h' 2025-08-14T20:48:16.2016820Z adding 'torch/include/ATen/ops/lstm_cell.h' 2025-08-14T20:48:16.2017780Z adding 'torch/include/ATen/ops/lstm_cell_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2018530Z adding 'torch/include/ATen/ops/lstm_cell_native.h' 2025-08-14T20:48:16.2019480Z adding 'torch/include/ATen/ops/lstm_cell_ops.h' 2025-08-14T20:48:16.2020460Z adding 'torch/include/ATen/ops/lstm_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2021460Z adding 'torch/include/ATen/ops/lstm_mps_backward.h' 2025-08-14T20:48:16.2022510Z adding 'torch/include/ATen/ops/lstm_mps_backward_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2023380Z adding 'torch/include/ATen/ops/lstm_mps_backward_mps_dispatch.h' 2025-08-14T20:48:16.2024270Z adding 'torch/include/ATen/ops/lstm_mps_backward_native.h' 2025-08-14T20:48:16.2025410Z adding 'torch/include/ATen/ops/lstm_mps_backward_ops.h' 2025-08-14T20:48:16.2026330Z adding 'torch/include/ATen/ops/lstm_native.h' 2025-08-14T20:48:16.2027350Z adding 'torch/include/ATen/ops/lstm_ops.h' 2025-08-14T20:48:16.2028290Z adding 'torch/include/ATen/ops/lt.h' 2025-08-14T20:48:16.2029310Z adding 'torch/include/ATen/ops/lt_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.2030100Z adding 'torch/include/ATen/ops/lt_cpu_dispatch.h' 2025-08-14T20:48:16.2030950Z adding 'torch/include/ATen/ops/lt_cuda_dispatch.h' 2025-08-14T20:48:16.2031850Z adding 'torch/include/ATen/ops/lt_meta.h' 2025-08-14T20:48:16.2032710Z adding 'torch/include/ATen/ops/lt_meta_dispatch.h' 2025-08-14T20:48:16.2033550Z adding 'torch/include/ATen/ops/lt_mps_dispatch.h' 2025-08-14T20:48:16.2034480Z adding 'torch/include/ATen/ops/lt_native.h' 2025-08-14T20:48:16.2035620Z adding 'torch/include/ATen/ops/lt_ops.h' 2025-08-14T20:48:16.2036560Z adding 'torch/include/ATen/ops/lu_solve.h' 2025-08-14T20:48:16.2037600Z adding 'torch/include/ATen/ops/lu_solve_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2038360Z adding 'torch/include/ATen/ops/lu_solve_native.h' 2025-08-14T20:48:16.2039320Z adding 'torch/include/ATen/ops/lu_solve_ops.h' 2025-08-14T20:48:16.2040330Z adding 'torch/include/ATen/ops/lu_unpack.h' 2025-08-14T20:48:16.2041340Z adding 'torch/include/ATen/ops/lu_unpack_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.2042120Z adding 'torch/include/ATen/ops/lu_unpack_cpu_dispatch.h' 2025-08-14T20:48:16.2043010Z adding 'torch/include/ATen/ops/lu_unpack_cuda_dispatch.h' 2025-08-14T20:48:16.2043840Z adding 'torch/include/ATen/ops/lu_unpack_meta.h' 2025-08-14T20:48:16.2049310Z adding 'torch/include/ATen/ops/lu_unpack_meta_dispatch.h' 2025-08-14T20:48:16.2049540Z adding 'torch/include/ATen/ops/lu_unpack_mps_dispatch.h' 2025-08-14T20:48:16.2049660Z adding 'torch/include/ATen/ops/lu_unpack_native.h' 2025-08-14T20:48:16.2049740Z adding 'torch/include/ATen/ops/lu_unpack_ops.h' 2025-08-14T20:48:16.2049810Z adding 'torch/include/ATen/ops/mH.h' 2025-08-14T20:48:16.2049950Z adding 'torch/include/ATen/ops/mH_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2050190Z adding 'torch/include/ATen/ops/mH_native.h' 2025-08-14T20:48:16.2050710Z adding 'torch/include/ATen/ops/mH_ops.h' 2025-08-14T20:48:16.2051500Z adding 'torch/include/ATen/ops/mT.h' 2025-08-14T20:48:16.2052450Z adding 'torch/include/ATen/ops/mT_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2053190Z adding 'torch/include/ATen/ops/mT_native.h' 2025-08-14T20:48:16.2054060Z adding 'torch/include/ATen/ops/mT_ops.h' 2025-08-14T20:48:16.2054980Z adding 'torch/include/ATen/ops/margin_ranking_loss.h' 2025-08-14T20:48:16.2055990Z adding 'torch/include/ATen/ops/margin_ranking_loss_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2056900Z adding 'torch/include/ATen/ops/margin_ranking_loss_native.h' 2025-08-14T20:48:16.2057740Z adding 'torch/include/ATen/ops/margin_ranking_loss_ops.h' 2025-08-14T20:48:16.2058710Z adding 'torch/include/ATen/ops/masked_fill.h' 2025-08-14T20:48:16.2059720Z adding 'torch/include/ATen/ops/masked_fill_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2060520Z adding 'torch/include/ATen/ops/masked_fill_cpu_dispatch.h' 2025-08-14T20:48:16.2061340Z adding 'torch/include/ATen/ops/masked_fill_cuda_dispatch.h' 2025-08-14T20:48:16.2062170Z adding 'torch/include/ATen/ops/masked_fill_meta_dispatch.h' 2025-08-14T20:48:16.2062950Z adding 'torch/include/ATen/ops/masked_fill_mps_dispatch.h' 2025-08-14T20:48:16.2063870Z adding 'torch/include/ATen/ops/masked_fill_native.h' 2025-08-14T20:48:16.2065010Z adding 'torch/include/ATen/ops/masked_fill_ops.h' 2025-08-14T20:48:16.2065920Z adding 'torch/include/ATen/ops/masked_scatter.h' 2025-08-14T20:48:16.2066900Z adding 'torch/include/ATen/ops/masked_scatter_backward.h' 2025-08-14T20:48:16.2067910Z adding 'torch/include/ATen/ops/masked_scatter_backward_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2068700Z adding 'torch/include/ATen/ops/masked_scatter_backward_native.h' 2025-08-14T20:48:16.2069630Z adding 'torch/include/ATen/ops/masked_scatter_backward_ops.h' 2025-08-14T20:48:16.2070610Z adding 'torch/include/ATen/ops/masked_scatter_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2071400Z adding 'torch/include/ATen/ops/masked_scatter_cpu_dispatch.h' 2025-08-14T20:48:16.2072250Z adding 'torch/include/ATen/ops/masked_scatter_cuda_dispatch.h' 2025-08-14T20:48:16.2073040Z adding 'torch/include/ATen/ops/masked_scatter_meta_dispatch.h' 2025-08-14T20:48:16.2073850Z adding 'torch/include/ATen/ops/masked_scatter_mps_dispatch.h' 2025-08-14T20:48:16.2074690Z adding 'torch/include/ATen/ops/masked_scatter_native.h' 2025-08-14T20:48:16.2076030Z adding 'torch/include/ATen/ops/masked_scatter_ops.h' 2025-08-14T20:48:16.2076910Z adding 'torch/include/ATen/ops/masked_select.h' 2025-08-14T20:48:16.2077840Z adding 'torch/include/ATen/ops/masked_select_backward.h' 2025-08-14T20:48:16.2078770Z adding 'torch/include/ATen/ops/masked_select_backward_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2079530Z adding 'torch/include/ATen/ops/masked_select_backward_native.h' 2025-08-14T20:48:16.2080460Z adding 'torch/include/ATen/ops/masked_select_backward_ops.h' 2025-08-14T20:48:16.2081320Z adding 'torch/include/ATen/ops/masked_select_cpu_dispatch.h' 2025-08-14T20:48:16.2082210Z adding 'torch/include/ATen/ops/masked_select_cuda_dispatch.h' 2025-08-14T20:48:16.2083020Z adding 'torch/include/ATen/ops/masked_select_mps_dispatch.h' 2025-08-14T20:48:16.2083870Z adding 'torch/include/ATen/ops/masked_select_native.h' 2025-08-14T20:48:16.2084800Z adding 'torch/include/ATen/ops/masked_select_ops.h' 2025-08-14T20:48:16.2085710Z adding 'torch/include/ATen/ops/matmul.h' 2025-08-14T20:48:16.2086650Z adding 'torch/include/ATen/ops/matmul_backward.h' 2025-08-14T20:48:16.2087650Z adding 'torch/include/ATen/ops/matmul_backward_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2088440Z adding 'torch/include/ATen/ops/matmul_backward_native.h' 2025-08-14T20:48:16.2089430Z adding 'torch/include/ATen/ops/matmul_backward_ops.h' 2025-08-14T20:48:16.2090370Z adding 'torch/include/ATen/ops/matmul_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2091180Z adding 'torch/include/ATen/ops/matmul_native.h' 2025-08-14T20:48:16.2092080Z adding 'torch/include/ATen/ops/matmul_ops.h' 2025-08-14T20:48:16.2092900Z adding 'torch/include/ATen/ops/matrix_H.h' 2025-08-14T20:48:16.2093840Z adding 'torch/include/ATen/ops/matrix_H_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2094590Z adding 'torch/include/ATen/ops/matrix_H_native.h' 2025-08-14T20:48:16.2095460Z adding 'torch/include/ATen/ops/matrix_H_ops.h' 2025-08-14T20:48:16.2096310Z adding 'torch/include/ATen/ops/matrix_exp.h' 2025-08-14T20:48:16.2097180Z adding 'torch/include/ATen/ops/matrix_exp_backward.h' 2025-08-14T20:48:16.2098170Z adding 'torch/include/ATen/ops/matrix_exp_backward_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2098920Z adding 'torch/include/ATen/ops/matrix_exp_backward_native.h' 2025-08-14T20:48:16.2099850Z adding 'torch/include/ATen/ops/matrix_exp_backward_ops.h' 2025-08-14T20:48:16.2100780Z adding 'torch/include/ATen/ops/matrix_exp_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2101520Z adding 'torch/include/ATen/ops/matrix_exp_native.h' 2025-08-14T20:48:16.2102440Z adding 'torch/include/ATen/ops/matrix_exp_ops.h' 2025-08-14T20:48:16.2103340Z adding 'torch/include/ATen/ops/matrix_power.h' 2025-08-14T20:48:16.2104340Z adding 'torch/include/ATen/ops/matrix_power_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2105090Z adding 'torch/include/ATen/ops/matrix_power_native.h' 2025-08-14T20:48:16.2106070Z adding 'torch/include/ATen/ops/matrix_power_ops.h' 2025-08-14T20:48:16.2107230Z adding 'torch/include/ATen/ops/max.h' 2025-08-14T20:48:16.2108280Z adding 'torch/include/ATen/ops/max_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.2109200Z adding 'torch/include/ATen/ops/max_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2110040Z adding 'torch/include/ATen/ops/max_cpu_dispatch.h' 2025-08-14T20:48:16.2110900Z adding 'torch/include/ATen/ops/max_cuda_dispatch.h' 2025-08-14T20:48:16.2111830Z adding 'torch/include/ATen/ops/max_meta.h' 2025-08-14T20:48:16.2112740Z adding 'torch/include/ATen/ops/max_meta_dispatch.h' 2025-08-14T20:48:16.2113610Z adding 'torch/include/ATen/ops/max_mps_dispatch.h' 2025-08-14T20:48:16.2114530Z adding 'torch/include/ATen/ops/max_native.h' 2025-08-14T20:48:16.2115790Z adding 'torch/include/ATen/ops/max_ops.h' 2025-08-14T20:48:16.2116740Z adding 'torch/include/ATen/ops/max_pool1d.h' 2025-08-14T20:48:16.2117760Z adding 'torch/include/ATen/ops/max_pool1d_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2118550Z adding 'torch/include/ATen/ops/max_pool1d_native.h' 2025-08-14T20:48:16.2119520Z adding 'torch/include/ATen/ops/max_pool1d_ops.h' 2025-08-14T20:48:16.2120460Z adding 'torch/include/ATen/ops/max_pool1d_with_indices.h' 2025-08-14T20:48:16.2121450Z adding 'torch/include/ATen/ops/max_pool1d_with_indices_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2122230Z adding 'torch/include/ATen/ops/max_pool1d_with_indices_native.h' 2025-08-14T20:48:16.2123170Z adding 'torch/include/ATen/ops/max_pool1d_with_indices_ops.h' 2025-08-14T20:48:16.2124150Z adding 'torch/include/ATen/ops/max_pool2d.h' 2025-08-14T20:48:16.2125180Z adding 'torch/include/ATen/ops/max_pool2d_backward.h' 2025-08-14T20:48:16.2126200Z adding 'torch/include/ATen/ops/max_pool2d_backward_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2127050Z adding 'torch/include/ATen/ops/max_pool2d_backward_mps_dispatch.h' 2025-08-14T20:48:16.2127940Z adding 'torch/include/ATen/ops/max_pool2d_backward_native.h' 2025-08-14T20:48:16.2128980Z adding 'torch/include/ATen/ops/max_pool2d_backward_ops.h' 2025-08-14T20:48:16.2129970Z adding 'torch/include/ATen/ops/max_pool2d_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2130810Z adding 'torch/include/ATen/ops/max_pool2d_mps_dispatch.h' 2025-08-14T20:48:16.2131690Z adding 'torch/include/ATen/ops/max_pool2d_native.h' 2025-08-14T20:48:16.2132630Z adding 'torch/include/ATen/ops/max_pool2d_ops.h' 2025-08-14T20:48:16.2133660Z adding 'torch/include/ATen/ops/max_pool2d_with_indices.h' 2025-08-14T20:48:16.2134670Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward.h' 2025-08-14T20:48:16.2135710Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.2136520Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_cpu_dispatch.h' 2025-08-14T20:48:16.2137370Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_cuda_dispatch.h' 2025-08-14T20:48:16.2138250Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_meta.h' 2025-08-14T20:48:16.2139130Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_meta_dispatch.h' 2025-08-14T20:48:16.2140000Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_mps_dispatch.h' 2025-08-14T20:48:16.2140920Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_native.h' 2025-08-14T20:48:16.2141960Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_ops.h' 2025-08-14T20:48:16.2142950Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.2143770Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_cpu_dispatch.h' 2025-08-14T20:48:16.2144680Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_cuda_dispatch.h' 2025-08-14T20:48:16.2145570Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_meta.h' 2025-08-14T20:48:16.2146470Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_meta_dispatch.h' 2025-08-14T20:48:16.2147390Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_mps_dispatch.h' 2025-08-14T20:48:16.2148290Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_native.h' 2025-08-14T20:48:16.2149390Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_ops.h' 2025-08-14T20:48:16.2150320Z adding 'torch/include/ATen/ops/max_pool3d.h' 2025-08-14T20:48:16.2151280Z adding 'torch/include/ATen/ops/max_pool3d_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2152070Z adding 'torch/include/ATen/ops/max_pool3d_native.h' 2025-08-14T20:48:16.2153020Z adding 'torch/include/ATen/ops/max_pool3d_ops.h' 2025-08-14T20:48:16.2154120Z adding 'torch/include/ATen/ops/max_pool3d_with_indices.h' 2025-08-14T20:48:16.2155150Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward.h' 2025-08-14T20:48:16.2156120Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_cpu_dispatch.h' 2025-08-14T20:48:16.2157020Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_cuda_dispatch.h' 2025-08-14T20:48:16.2158010Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_mps_dispatch.h' 2025-08-14T20:48:16.2158940Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_native.h' 2025-08-14T20:48:16.2159970Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_ops.h' 2025-08-14T20:48:16.2160830Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_cpu_dispatch.h' 2025-08-14T20:48:16.2161710Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_cuda_dispatch.h' 2025-08-14T20:48:16.2162630Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_mps_dispatch.h' 2025-08-14T20:48:16.2163650Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_native.h' 2025-08-14T20:48:16.2164670Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_ops.h' 2025-08-14T20:48:16.2165730Z adding 'torch/include/ATen/ops/max_unpool2d.h' 2025-08-14T20:48:16.2166720Z adding 'torch/include/ATen/ops/max_unpool2d_cpu_dispatch.h' 2025-08-14T20:48:16.2167630Z adding 'torch/include/ATen/ops/max_unpool2d_cuda_dispatch.h' 2025-08-14T20:48:16.2168550Z adding 'torch/include/ATen/ops/max_unpool2d_mps_dispatch.h' 2025-08-14T20:48:16.2169420Z adding 'torch/include/ATen/ops/max_unpool2d_native.h' 2025-08-14T20:48:16.2170380Z adding 'torch/include/ATen/ops/max_unpool2d_ops.h' 2025-08-14T20:48:16.2171530Z adding 'torch/include/ATen/ops/max_unpool3d.h' 2025-08-14T20:48:16.2172520Z adding 'torch/include/ATen/ops/max_unpool3d_cpu_dispatch.h' 2025-08-14T20:48:16.2173440Z adding 'torch/include/ATen/ops/max_unpool3d_cuda_dispatch.h' 2025-08-14T20:48:16.2174420Z adding 'torch/include/ATen/ops/max_unpool3d_mps_dispatch.h' 2025-08-14T20:48:16.2175270Z adding 'torch/include/ATen/ops/max_unpool3d_native.h' 2025-08-14T20:48:16.2176300Z adding 'torch/include/ATen/ops/max_unpool3d_ops.h' 2025-08-14T20:48:16.2177220Z adding 'torch/include/ATen/ops/maximum.h' 2025-08-14T20:48:16.2178410Z adding 'torch/include/ATen/ops/maximum_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.2179170Z adding 'torch/include/ATen/ops/maximum_cpu_dispatch.h' 2025-08-14T20:48:16.2179980Z adding 'torch/include/ATen/ops/maximum_cuda_dispatch.h' 2025-08-14T20:48:16.2180850Z adding 'torch/include/ATen/ops/maximum_meta.h' 2025-08-14T20:48:16.2181690Z adding 'torch/include/ATen/ops/maximum_meta_dispatch.h' 2025-08-14T20:48:16.2182500Z adding 'torch/include/ATen/ops/maximum_mps_dispatch.h' 2025-08-14T20:48:16.2183330Z adding 'torch/include/ATen/ops/maximum_native.h' 2025-08-14T20:48:16.2184250Z adding 'torch/include/ATen/ops/maximum_ops.h' 2025-08-14T20:48:16.2185290Z adding 'torch/include/ATen/ops/mean.h' 2025-08-14T20:48:16.2186260Z adding 'torch/include/ATen/ops/mean_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2187170Z adding 'torch/include/ATen/ops/mean_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.2188020Z adding 'torch/include/ATen/ops/mean_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2188840Z adding 'torch/include/ATen/ops/mean_cpu_dispatch.h' 2025-08-14T20:48:16.2189690Z adding 'torch/include/ATen/ops/mean_cuda_dispatch.h' 2025-08-14T20:48:16.2190520Z adding 'torch/include/ATen/ops/mean_meta.h' 2025-08-14T20:48:16.2191380Z adding 'torch/include/ATen/ops/mean_meta_dispatch.h' 2025-08-14T20:48:16.2192190Z adding 'torch/include/ATen/ops/mean_mps_dispatch.h' 2025-08-14T20:48:16.2193120Z adding 'torch/include/ATen/ops/mean_native.h' 2025-08-14T20:48:16.2194270Z adding 'torch/include/ATen/ops/mean_ops.h' 2025-08-14T20:48:16.2195320Z adding 'torch/include/ATen/ops/median.h' 2025-08-14T20:48:16.2196310Z adding 'torch/include/ATen/ops/median_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2197220Z adding 'torch/include/ATen/ops/median_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2198040Z adding 'torch/include/ATen/ops/median_cpu_dispatch.h' 2025-08-14T20:48:16.2198880Z adding 'torch/include/ATen/ops/median_cuda_dispatch.h' 2025-08-14T20:48:16.2199700Z adding 'torch/include/ATen/ops/median_mps_dispatch.h' 2025-08-14T20:48:16.2200600Z adding 'torch/include/ATen/ops/median_native.h' 2025-08-14T20:48:16.2201740Z adding 'torch/include/ATen/ops/median_ops.h' 2025-08-14T20:48:16.2202680Z adding 'torch/include/ATen/ops/meshgrid.h' 2025-08-14T20:48:16.2203730Z adding 'torch/include/ATen/ops/meshgrid_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2204550Z adding 'torch/include/ATen/ops/meshgrid_native.h' 2025-08-14T20:48:16.2205490Z adding 'torch/include/ATen/ops/meshgrid_ops.h' 2025-08-14T20:48:16.2206580Z adding 'torch/include/ATen/ops/min.h' 2025-08-14T20:48:16.2207620Z adding 'torch/include/ATen/ops/min_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.2208620Z adding 'torch/include/ATen/ops/min_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2209460Z adding 'torch/include/ATen/ops/min_cpu_dispatch.h' 2025-08-14T20:48:16.2210300Z adding 'torch/include/ATen/ops/min_cuda_dispatch.h' 2025-08-14T20:48:16.2211230Z adding 'torch/include/ATen/ops/min_meta.h' 2025-08-14T20:48:16.2212150Z adding 'torch/include/ATen/ops/min_meta_dispatch.h' 2025-08-14T20:48:16.2213070Z adding 'torch/include/ATen/ops/min_mps_dispatch.h' 2025-08-14T20:48:16.2214010Z adding 'torch/include/ATen/ops/min_native.h' 2025-08-14T20:48:16.2215250Z adding 'torch/include/ATen/ops/min_ops.h' 2025-08-14T20:48:16.2216200Z adding 'torch/include/ATen/ops/minimum.h' 2025-08-14T20:48:16.2217250Z adding 'torch/include/ATen/ops/minimum_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.2218020Z adding 'torch/include/ATen/ops/minimum_cpu_dispatch.h' 2025-08-14T20:48:16.2218920Z adding 'torch/include/ATen/ops/minimum_cuda_dispatch.h' 2025-08-14T20:48:16.2219690Z adding 'torch/include/ATen/ops/minimum_meta.h' 2025-08-14T20:48:16.2220540Z adding 'torch/include/ATen/ops/minimum_meta_dispatch.h' 2025-08-14T20:48:16.2221340Z adding 'torch/include/ATen/ops/minimum_mps_dispatch.h' 2025-08-14T20:48:16.2222200Z adding 'torch/include/ATen/ops/minimum_native.h' 2025-08-14T20:48:16.2223170Z adding 'torch/include/ATen/ops/minimum_ops.h' 2025-08-14T20:48:16.2224240Z adding 'torch/include/ATen/ops/miopen_batch_norm.h' 2025-08-14T20:48:16.2225280Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward.h' 2025-08-14T20:48:16.2226330Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2227180Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_cuda_dispatch.h' 2025-08-14T20:48:16.2228050Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_native.h' 2025-08-14T20:48:16.2229130Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_ops.h' 2025-08-14T20:48:16.2230180Z adding 'torch/include/ATen/ops/miopen_batch_norm_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2231020Z adding 'torch/include/ATen/ops/miopen_batch_norm_cuda_dispatch.h' 2025-08-14T20:48:16.2231890Z adding 'torch/include/ATen/ops/miopen_batch_norm_native.h' 2025-08-14T20:48:16.2232940Z adding 'torch/include/ATen/ops/miopen_batch_norm_ops.h' 2025-08-14T20:48:16.2234180Z adding 'torch/include/ATen/ops/miopen_convolution.h' 2025-08-14T20:48:16.2235250Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu.h' 2025-08-14T20:48:16.2236240Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu_cuda_dispatch.h' 2025-08-14T20:48:16.2237080Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu_native.h' 2025-08-14T20:48:16.2238070Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu_ops.h' 2025-08-14T20:48:16.2239080Z adding 'torch/include/ATen/ops/miopen_convolution_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2239930Z adding 'torch/include/ATen/ops/miopen_convolution_cuda_dispatch.h' 2025-08-14T20:48:16.2240800Z adding 'torch/include/ATen/ops/miopen_convolution_native.h' 2025-08-14T20:48:16.2241850Z adding 'torch/include/ATen/ops/miopen_convolution_ops.h' 2025-08-14T20:48:16.2242830Z adding 'torch/include/ATen/ops/miopen_convolution_relu.h' 2025-08-14T20:48:16.2243770Z adding 'torch/include/ATen/ops/miopen_convolution_relu_cuda_dispatch.h' 2025-08-14T20:48:16.2244610Z adding 'torch/include/ATen/ops/miopen_convolution_relu_native.h' 2025-08-14T20:48:16.2245540Z adding 'torch/include/ATen/ops/miopen_convolution_relu_ops.h' 2025-08-14T20:48:16.2246870Z adding 'torch/include/ATen/ops/miopen_convolution_transpose.h' 2025-08-14T20:48:16.2247960Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2248780Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_cuda_dispatch.h' 2025-08-14T20:48:16.2249650Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_native.h' 2025-08-14T20:48:16.2250690Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_ops.h' 2025-08-14T20:48:16.2251900Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution.h' 2025-08-14T20:48:16.2253000Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2253830Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_cuda_dispatch.h' 2025-08-14T20:48:16.2254680Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_native.h' 2025-08-14T20:48:16.2255700Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_ops.h' 2025-08-14T20:48:16.2256750Z adding 'torch/include/ATen/ops/miopen_rnn.h' 2025-08-14T20:48:16.2257950Z adding 'torch/include/ATen/ops/miopen_rnn_backward.h' 2025-08-14T20:48:16.2259040Z adding 'torch/include/ATen/ops/miopen_rnn_backward_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2259930Z adding 'torch/include/ATen/ops/miopen_rnn_backward_cuda_dispatch.h' 2025-08-14T20:48:16.2260910Z adding 'torch/include/ATen/ops/miopen_rnn_backward_native.h' 2025-08-14T20:48:16.2262130Z adding 'torch/include/ATen/ops/miopen_rnn_backward_ops.h' 2025-08-14T20:48:16.2263130Z adding 'torch/include/ATen/ops/miopen_rnn_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2263980Z adding 'torch/include/ATen/ops/miopen_rnn_cuda_dispatch.h' 2025-08-14T20:48:16.2264840Z adding 'torch/include/ATen/ops/miopen_rnn_native.h' 2025-08-14T20:48:16.2266010Z adding 'torch/include/ATen/ops/miopen_rnn_ops.h' 2025-08-14T20:48:16.2266890Z adding 'torch/include/ATen/ops/mish.h' 2025-08-14T20:48:16.2267780Z adding 'torch/include/ATen/ops/mish_backward.h' 2025-08-14T20:48:16.2268750Z adding 'torch/include/ATen/ops/mish_backward_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2269540Z adding 'torch/include/ATen/ops/mish_backward_cpu_dispatch.h' 2025-08-14T20:48:16.2270340Z adding 'torch/include/ATen/ops/mish_backward_cuda_dispatch.h' 2025-08-14T20:48:16.2271140Z adding 'torch/include/ATen/ops/mish_backward_mps_dispatch.h' 2025-08-14T20:48:16.2271970Z adding 'torch/include/ATen/ops/mish_backward_native.h' 2025-08-14T20:48:16.2272860Z adding 'torch/include/ATen/ops/mish_backward_ops.h' 2025-08-14T20:48:16.2273830Z adding 'torch/include/ATen/ops/mish_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.2274570Z adding 'torch/include/ATen/ops/mish_cpu_dispatch.h' 2025-08-14T20:48:16.2275400Z adding 'torch/include/ATen/ops/mish_cuda_dispatch.h' 2025-08-14T20:48:16.2276210Z adding 'torch/include/ATen/ops/mish_meta.h' 2025-08-14T20:48:16.2277060Z adding 'torch/include/ATen/ops/mish_meta_dispatch.h' 2025-08-14T20:48:16.2277870Z adding 'torch/include/ATen/ops/mish_mps_dispatch.h' 2025-08-14T20:48:16.2278730Z adding 'torch/include/ATen/ops/mish_native.h' 2025-08-14T20:48:16.2279690Z adding 'torch/include/ATen/ops/mish_ops.h' 2025-08-14T20:48:16.2280680Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d.h' 2025-08-14T20:48:16.2281650Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward.h' 2025-08-14T20:48:16.2282680Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2283440Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_native.h' 2025-08-14T20:48:16.2284420Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_ops.h' 2025-08-14T20:48:16.2285260Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_native.h' 2025-08-14T20:48:16.2286220Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_ops.h' 2025-08-14T20:48:16.2287390Z adding 'torch/include/ATen/ops/mkldnn_convolution.h' 2025-08-14T20:48:16.2288520Z adding 'torch/include/ATen/ops/mkldnn_convolution_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2289380Z adding 'torch/include/ATen/ops/mkldnn_convolution_native.h' 2025-08-14T20:48:16.2290380Z adding 'torch/include/ATen/ops/mkldnn_convolution_ops.h' 2025-08-14T20:48:16.2291660Z adding 'torch/include/ATen/ops/mkldnn_linear.h' 2025-08-14T20:48:16.2292630Z adding 'torch/include/ATen/ops/mkldnn_linear_backward.h' 2025-08-14T20:48:16.2293670Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2294540Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input.h' 2025-08-14T20:48:16.2295630Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2296440Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input_native.h' 2025-08-14T20:48:16.2297410Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input_ops.h' 2025-08-14T20:48:16.2298290Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_native.h' 2025-08-14T20:48:16.2299300Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_ops.h' 2025-08-14T20:48:16.2300250Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights.h' 2025-08-14T20:48:16.2301280Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2302100Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights_native.h' 2025-08-14T20:48:16.2303120Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights_ops.h' 2025-08-14T20:48:16.2304170Z adding 'torch/include/ATen/ops/mkldnn_linear_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2304980Z adding 'torch/include/ATen/ops/mkldnn_linear_native.h' 2025-08-14T20:48:16.2305920Z adding 'torch/include/ATen/ops/mkldnn_linear_ops.h' 2025-08-14T20:48:16.2306920Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d.h' 2025-08-14T20:48:16.2307890Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward.h' 2025-08-14T20:48:16.2308920Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2309750Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward_native.h' 2025-08-14T20:48:16.2310790Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward_ops.h' 2025-08-14T20:48:16.2311800Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2312590Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_native.h' 2025-08-14T20:48:16.2313610Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_ops.h' 2025-08-14T20:48:16.2314550Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d.h' 2025-08-14T20:48:16.2315560Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward.h' 2025-08-14T20:48:16.2316600Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2317370Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward_native.h' 2025-08-14T20:48:16.2318380Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward_ops.h' 2025-08-14T20:48:16.2319340Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2320130Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_native.h' 2025-08-14T20:48:16.2321110Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_ops.h' 2025-08-14T20:48:16.2322430Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight.h' 2025-08-14T20:48:16.2323530Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2324330Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_native.h' 2025-08-14T20:48:16.2325340Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_ops.h' 2025-08-14T20:48:16.2326600Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight.h' 2025-08-14T20:48:16.2327630Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2328440Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_native.h' 2025-08-14T20:48:16.2329470Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_ops.h' 2025-08-14T20:48:16.2330470Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer.h' 2025-08-14T20:48:16.2331690Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward.h' 2025-08-14T20:48:16.2332820Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2333700Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_cpu_dispatch.h' 2025-08-14T20:48:16.2334630Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_native.h' 2025-08-14T20:48:16.2335890Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_ops.h' 2025-08-14T20:48:16.2336980Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2337830Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_cpu_dispatch.h' 2025-08-14T20:48:16.2338730Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_native.h' 2025-08-14T20:48:16.2339850Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_ops.h' 2025-08-14T20:48:16.2340770Z adding 'torch/include/ATen/ops/mm.h' 2025-08-14T20:48:16.2341770Z adding 'torch/include/ATen/ops/mm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.2342580Z adding 'torch/include/ATen/ops/mm_cpu_dispatch.h' 2025-08-14T20:48:16.2343470Z adding 'torch/include/ATen/ops/mm_cuda_dispatch.h' 2025-08-14T20:48:16.2344300Z adding 'torch/include/ATen/ops/mm_meta.h' 2025-08-14T20:48:16.2345180Z adding 'torch/include/ATen/ops/mm_meta_dispatch.h' 2025-08-14T20:48:16.2345990Z adding 'torch/include/ATen/ops/mm_mps_dispatch.h' 2025-08-14T20:48:16.2346940Z adding 'torch/include/ATen/ops/mm_native.h' 2025-08-14T20:48:16.2347990Z adding 'torch/include/ATen/ops/mm_ops.h' 2025-08-14T20:48:16.2348990Z adding 'torch/include/ATen/ops/mode.h' 2025-08-14T20:48:16.2349970Z adding 'torch/include/ATen/ops/mode_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2350880Z adding 'torch/include/ATen/ops/mode_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2351670Z adding 'torch/include/ATen/ops/mode_cpu_dispatch.h' 2025-08-14T20:48:16.2352490Z adding 'torch/include/ATen/ops/mode_cuda_dispatch.h' 2025-08-14T20:48:16.2353360Z adding 'torch/include/ATen/ops/mode_native.h' 2025-08-14T20:48:16.2354420Z adding 'torch/include/ATen/ops/mode_ops.h' 2025-08-14T20:48:16.2355300Z adding 'torch/include/ATen/ops/moveaxis.h' 2025-08-14T20:48:16.2356270Z adding 'torch/include/ATen/ops/moveaxis_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2357020Z adding 'torch/include/ATen/ops/moveaxis_native.h' 2025-08-14T20:48:16.2357970Z adding 'torch/include/ATen/ops/moveaxis_ops.h' 2025-08-14T20:48:16.2358830Z adding 'torch/include/ATen/ops/movedim.h' 2025-08-14T20:48:16.2359780Z adding 'torch/include/ATen/ops/movedim_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2360540Z adding 'torch/include/ATen/ops/movedim_native.h' 2025-08-14T20:48:16.2361490Z adding 'torch/include/ATen/ops/movedim_ops.h' 2025-08-14T20:48:16.2362840Z adding 'torch/include/ATen/ops/mps_convolution_backward.h' 2025-08-14T20:48:16.2363930Z adding 'torch/include/ATen/ops/mps_convolution_backward_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2364790Z adding 'torch/include/ATen/ops/mps_convolution_backward_mps_dispatch.h' 2025-08-14T20:48:16.2365670Z adding 'torch/include/ATen/ops/mps_convolution_backward_native.h' 2025-08-14T20:48:16.2366720Z adding 'torch/include/ATen/ops/mps_convolution_backward_ops.h' 2025-08-14T20:48:16.2368110Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward.h' 2025-08-14T20:48:16.2369300Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2370180Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward_mps_dispatch.h' 2025-08-14T20:48:16.2371060Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward_native.h' 2025-08-14T20:48:16.2372120Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward_ops.h' 2025-08-14T20:48:16.2372960Z adding 'torch/include/ATen/ops/mse_loss.h' 2025-08-14T20:48:16.2374060Z adding 'torch/include/ATen/ops/mse_loss_backward.h' 2025-08-14T20:48:16.2374940Z adding 'torch/include/ATen/ops/mse_loss_backward_cpu_dispatch.h' 2025-08-14T20:48:16.2375820Z adding 'torch/include/ATen/ops/mse_loss_backward_cuda_dispatch.h' 2025-08-14T20:48:16.2376680Z adding 'torch/include/ATen/ops/mse_loss_backward_mps_dispatch.h' 2025-08-14T20:48:16.2377530Z adding 'torch/include/ATen/ops/mse_loss_backward_native.h' 2025-08-14T20:48:16.2378490Z adding 'torch/include/ATen/ops/mse_loss_backward_ops.h' 2025-08-14T20:48:16.2379520Z adding 'torch/include/ATen/ops/mse_loss_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.2380340Z adding 'torch/include/ATen/ops/mse_loss_cpu_dispatch.h' 2025-08-14T20:48:16.2381230Z adding 'torch/include/ATen/ops/mse_loss_cuda_dispatch.h' 2025-08-14T20:48:16.2382130Z adding 'torch/include/ATen/ops/mse_loss_meta.h' 2025-08-14T20:48:16.2383000Z adding 'torch/include/ATen/ops/mse_loss_meta_dispatch.h' 2025-08-14T20:48:16.2383820Z adding 'torch/include/ATen/ops/mse_loss_mps_dispatch.h' 2025-08-14T20:48:16.2384650Z adding 'torch/include/ATen/ops/mse_loss_native.h' 2025-08-14T20:48:16.2385620Z adding 'torch/include/ATen/ops/mse_loss_ops.h' 2025-08-14T20:48:16.2386480Z adding 'torch/include/ATen/ops/msort.h' 2025-08-14T20:48:16.2387480Z adding 'torch/include/ATen/ops/msort_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2388200Z adding 'torch/include/ATen/ops/msort_native.h' 2025-08-14T20:48:16.2389160Z adding 'torch/include/ATen/ops/msort_ops.h' 2025-08-14T20:48:16.2390080Z adding 'torch/include/ATen/ops/mul.h' 2025-08-14T20:48:16.2391040Z adding 'torch/include/ATen/ops/mul_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2391950Z adding 'torch/include/ATen/ops/mul_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.2392710Z adding 'torch/include/ATen/ops/mul_cpu_dispatch.h' 2025-08-14T20:48:16.2393560Z adding 'torch/include/ATen/ops/mul_cuda_dispatch.h' 2025-08-14T20:48:16.2394390Z adding 'torch/include/ATen/ops/mul_meta.h' 2025-08-14T20:48:16.2395250Z adding 'torch/include/ATen/ops/mul_meta_dispatch.h' 2025-08-14T20:48:16.2396070Z adding 'torch/include/ATen/ops/mul_mps_dispatch.h' 2025-08-14T20:48:16.2397030Z adding 'torch/include/ATen/ops/mul_native.h' 2025-08-14T20:48:16.2398130Z adding 'torch/include/ATen/ops/mul_ops.h' 2025-08-14T20:48:16.2399120Z adding 'torch/include/ATen/ops/multi_margin_loss.h' 2025-08-14T20:48:16.2400150Z adding 'torch/include/ATen/ops/multi_margin_loss_backward.h' 2025-08-14T20:48:16.2401120Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_cpu_dispatch.h' 2025-08-14T20:48:16.2402040Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_cuda_dispatch.h' 2025-08-14T20:48:16.2402930Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_native.h' 2025-08-14T20:48:16.2403950Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_ops.h' 2025-08-14T20:48:16.2404860Z adding 'torch/include/ATen/ops/multi_margin_loss_cpu_dispatch.h' 2025-08-14T20:48:16.2405710Z adding 'torch/include/ATen/ops/multi_margin_loss_cuda_dispatch.h' 2025-08-14T20:48:16.2406590Z adding 'torch/include/ATen/ops/multi_margin_loss_native.h' 2025-08-14T20:48:16.2407560Z adding 'torch/include/ATen/ops/multi_margin_loss_ops.h' 2025-08-14T20:48:16.2408490Z adding 'torch/include/ATen/ops/multilabel_margin_loss.h' 2025-08-14T20:48:16.2409460Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward.h' 2025-08-14T20:48:16.2410440Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_cpu_dispatch.h' 2025-08-14T20:48:16.2411360Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_cuda_dispatch.h' 2025-08-14T20:48:16.2412210Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_native.h' 2025-08-14T20:48:16.2413200Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_ops.h' 2025-08-14T20:48:16.2414190Z adding 'torch/include/ATen/ops/multilabel_margin_loss_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2415030Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward.h' 2025-08-14T20:48:16.2416010Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_cpu_dispatch.h' 2025-08-14T20:48:16.2416860Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_cuda_dispatch.h' 2025-08-14T20:48:16.2417750Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_native.h' 2025-08-14T20:48:16.2418780Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_ops.h' 2025-08-14T20:48:16.2419650Z adding 'torch/include/ATen/ops/multilabel_margin_loss_native.h' 2025-08-14T20:48:16.2420610Z adding 'torch/include/ATen/ops/multilabel_margin_loss_ops.h' 2025-08-14T20:48:16.2421690Z adding 'torch/include/ATen/ops/multinomial.h' 2025-08-14T20:48:16.2422710Z adding 'torch/include/ATen/ops/multinomial_cpu_dispatch.h' 2025-08-14T20:48:16.2423610Z adding 'torch/include/ATen/ops/multinomial_cuda_dispatch.h' 2025-08-14T20:48:16.2424510Z adding 'torch/include/ATen/ops/multinomial_mps_dispatch.h' 2025-08-14T20:48:16.2425410Z adding 'torch/include/ATen/ops/multinomial_native.h' 2025-08-14T20:48:16.2426380Z adding 'torch/include/ATen/ops/multinomial_ops.h' 2025-08-14T20:48:16.2427290Z adding 'torch/include/ATen/ops/multiply.h' 2025-08-14T20:48:16.2428290Z adding 'torch/include/ATen/ops/multiply_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2429730Z adding 'torch/include/ATen/ops/multiply_native.h' 2025-08-14T20:48:16.2430760Z adding 'torch/include/ATen/ops/multiply_ops.h' 2025-08-14T20:48:16.2431660Z adding 'torch/include/ATen/ops/mv.h' 2025-08-14T20:48:16.2432670Z adding 'torch/include/ATen/ops/mv_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2433420Z adding 'torch/include/ATen/ops/mv_native.h' 2025-08-14T20:48:16.2434410Z adding 'torch/include/ATen/ops/mv_ops.h' 2025-08-14T20:48:16.2435290Z adding 'torch/include/ATen/ops/mvlgamma.h' 2025-08-14T20:48:16.2436250Z adding 'torch/include/ATen/ops/mvlgamma_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2437050Z adding 'torch/include/ATen/ops/mvlgamma_cpu_dispatch.h' 2025-08-14T20:48:16.2437890Z adding 'torch/include/ATen/ops/mvlgamma_cuda_dispatch.h' 2025-08-14T20:48:16.2438700Z adding 'torch/include/ATen/ops/mvlgamma_native.h' 2025-08-14T20:48:16.2439690Z adding 'torch/include/ATen/ops/mvlgamma_ops.h' 2025-08-14T20:48:16.2440640Z adding 'torch/include/ATen/ops/nan_to_num.h' 2025-08-14T20:48:16.2441660Z adding 'torch/include/ATen/ops/nan_to_num_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2442520Z adding 'torch/include/ATen/ops/nan_to_num_cpu_dispatch.h' 2025-08-14T20:48:16.2443410Z adding 'torch/include/ATen/ops/nan_to_num_cuda_dispatch.h' 2025-08-14T20:48:16.2444290Z adding 'torch/include/ATen/ops/nan_to_num_mps_dispatch.h' 2025-08-14T20:48:16.2445170Z adding 'torch/include/ATen/ops/nan_to_num_native.h' 2025-08-14T20:48:16.2446220Z adding 'torch/include/ATen/ops/nan_to_num_ops.h' 2025-08-14T20:48:16.2447180Z adding 'torch/include/ATen/ops/nanmean.h' 2025-08-14T20:48:16.2448220Z adding 'torch/include/ATen/ops/nanmean_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2449070Z adding 'torch/include/ATen/ops/nanmean_native.h' 2025-08-14T20:48:16.2450100Z adding 'torch/include/ATen/ops/nanmean_ops.h' 2025-08-14T20:48:16.2451140Z adding 'torch/include/ATen/ops/nanmedian.h' 2025-08-14T20:48:16.2452160Z adding 'torch/include/ATen/ops/nanmedian_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2453070Z adding 'torch/include/ATen/ops/nanmedian_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2453910Z adding 'torch/include/ATen/ops/nanmedian_cpu_dispatch.h' 2025-08-14T20:48:16.2454770Z adding 'torch/include/ATen/ops/nanmedian_cuda_dispatch.h' 2025-08-14T20:48:16.2455600Z adding 'torch/include/ATen/ops/nanmedian_mps_dispatch.h' 2025-08-14T20:48:16.2456560Z adding 'torch/include/ATen/ops/nanmedian_native.h' 2025-08-14T20:48:16.2457690Z adding 'torch/include/ATen/ops/nanmedian_ops.h' 2025-08-14T20:48:16.2458720Z adding 'torch/include/ATen/ops/nanquantile.h' 2025-08-14T20:48:16.2459770Z adding 'torch/include/ATen/ops/nanquantile_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2460610Z adding 'torch/include/ATen/ops/nanquantile_native.h' 2025-08-14T20:48:16.2461660Z adding 'torch/include/ATen/ops/nanquantile_ops.h' 2025-08-14T20:48:16.2462650Z adding 'torch/include/ATen/ops/nansum.h' 2025-08-14T20:48:16.2463560Z adding 'torch/include/ATen/ops/nansum_cpu_dispatch.h' 2025-08-14T20:48:16.2464400Z adding 'torch/include/ATen/ops/nansum_cuda_dispatch.h' 2025-08-14T20:48:16.2465200Z adding 'torch/include/ATen/ops/nansum_mps_dispatch.h' 2025-08-14T20:48:16.2466050Z adding 'torch/include/ATen/ops/nansum_native.h' 2025-08-14T20:48:16.2467060Z adding 'torch/include/ATen/ops/nansum_ops.h' 2025-08-14T20:48:16.2468030Z adding 'torch/include/ATen/ops/narrow.h' 2025-08-14T20:48:16.2469030Z adding 'torch/include/ATen/ops/narrow_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2469990Z adding 'torch/include/ATen/ops/narrow_copy.h' 2025-08-14T20:48:16.2471050Z adding 'torch/include/ATen/ops/narrow_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.2471940Z adding 'torch/include/ATen/ops/narrow_copy_cpu_dispatch.h' 2025-08-14T20:48:16.2472820Z adding 'torch/include/ATen/ops/narrow_copy_native.h' 2025-08-14T20:48:16.2473800Z adding 'torch/include/ATen/ops/narrow_copy_ops.h' 2025-08-14T20:48:16.2474660Z adding 'torch/include/ATen/ops/narrow_native.h' 2025-08-14T20:48:16.2475670Z adding 'torch/include/ATen/ops/narrow_ops.h' 2025-08-14T20:48:16.2476720Z adding 'torch/include/ATen/ops/native_batch_norm.h' 2025-08-14T20:48:16.2477830Z adding 'torch/include/ATen/ops/native_batch_norm_backward.h' 2025-08-14T20:48:16.2478900Z adding 'torch/include/ATen/ops/native_batch_norm_backward_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2479790Z adding 'torch/include/ATen/ops/native_batch_norm_backward_cpu_dispatch.h' 2025-08-14T20:48:16.2480710Z adding 'torch/include/ATen/ops/native_batch_norm_backward_cuda_dispatch.h' 2025-08-14T20:48:16.2481580Z adding 'torch/include/ATen/ops/native_batch_norm_backward_mps_dispatch.h' 2025-08-14T20:48:16.2482560Z adding 'torch/include/ATen/ops/native_batch_norm_backward_native.h' 2025-08-14T20:48:16.2483680Z adding 'torch/include/ATen/ops/native_batch_norm_backward_ops.h' 2025-08-14T20:48:16.2484670Z adding 'torch/include/ATen/ops/native_batch_norm_cpu_dispatch.h' 2025-08-14T20:48:16.2485580Z adding 'torch/include/ATen/ops/native_batch_norm_cuda_dispatch.h' 2025-08-14T20:48:16.2486510Z adding 'torch/include/ATen/ops/native_batch_norm_mps_dispatch.h' 2025-08-14T20:48:16.2487520Z adding 'torch/include/ATen/ops/native_batch_norm_native.h' 2025-08-14T20:48:16.2488620Z adding 'torch/include/ATen/ops/native_batch_norm_ops.h' 2025-08-14T20:48:16.2489570Z adding 'torch/include/ATen/ops/native_channel_shuffle.h' 2025-08-14T20:48:16.2490590Z adding 'torch/include/ATen/ops/native_channel_shuffle_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2491390Z adding 'torch/include/ATen/ops/native_channel_shuffle_cpu_dispatch.h' 2025-08-14T20:48:16.2492230Z adding 'torch/include/ATen/ops/native_channel_shuffle_native.h' 2025-08-14T20:48:16.2493120Z adding 'torch/include/ATen/ops/native_channel_shuffle_ops.h' 2025-08-14T20:48:16.2494040Z adding 'torch/include/ATen/ops/native_dropout.h' 2025-08-14T20:48:16.2494990Z adding 'torch/include/ATen/ops/native_dropout_backward.h' 2025-08-14T20:48:16.2495990Z adding 'torch/include/ATen/ops/native_dropout_backward_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2496850Z adding 'torch/include/ATen/ops/native_dropout_backward_cpu_dispatch.h' 2025-08-14T20:48:16.2497720Z adding 'torch/include/ATen/ops/native_dropout_backward_cuda_dispatch.h' 2025-08-14T20:48:16.2498820Z adding 'torch/include/ATen/ops/native_dropout_backward_native.h' 2025-08-14T20:48:16.2499810Z adding 'torch/include/ATen/ops/native_dropout_backward_ops.h' 2025-08-14T20:48:16.2500760Z adding 'torch/include/ATen/ops/native_dropout_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2501610Z adding 'torch/include/ATen/ops/native_dropout_cpu_dispatch.h' 2025-08-14T20:48:16.2502500Z adding 'torch/include/ATen/ops/native_dropout_cuda_dispatch.h' 2025-08-14T20:48:16.2503480Z adding 'torch/include/ATen/ops/native_dropout_native.h' 2025-08-14T20:48:16.2504440Z adding 'torch/include/ATen/ops/native_dropout_ops.h' 2025-08-14T20:48:16.2505680Z adding 'torch/include/ATen/ops/native_group_norm.h' 2025-08-14T20:48:16.2507340Z adding 'torch/include/ATen/ops/native_group_norm_backward.h' 2025-08-14T20:48:16.2508320Z adding 'torch/include/ATen/ops/native_group_norm_backward_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2509280Z adding 'torch/include/ATen/ops/native_group_norm_backward_cpu_dispatch.h' 2025-08-14T20:48:16.2510190Z adding 'torch/include/ATen/ops/native_group_norm_backward_cuda_dispatch.h' 2025-08-14T20:48:16.2511490Z adding 'torch/include/ATen/ops/native_group_norm_backward_native.h' 2025-08-14T20:48:16.2512710Z adding 'torch/include/ATen/ops/native_group_norm_backward_ops.h' 2025-08-14T20:48:16.2513820Z adding 'torch/include/ATen/ops/native_group_norm_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2514680Z adding 'torch/include/ATen/ops/native_group_norm_cpu_dispatch.h' 2025-08-14T20:48:16.2515720Z adding 'torch/include/ATen/ops/native_group_norm_cuda_dispatch.h' 2025-08-14T20:48:16.2516750Z adding 'torch/include/ATen/ops/native_group_norm_native.h' 2025-08-14T20:48:16.2517880Z adding 'torch/include/ATen/ops/native_group_norm_ops.h' 2025-08-14T20:48:16.2519060Z adding 'torch/include/ATen/ops/native_layer_norm.h' 2025-08-14T20:48:16.2520450Z adding 'torch/include/ATen/ops/native_layer_norm_backward.h' 2025-08-14T20:48:16.2521640Z adding 'torch/include/ATen/ops/native_layer_norm_backward_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2522510Z adding 'torch/include/ATen/ops/native_layer_norm_backward_cpu_dispatch.h' 2025-08-14T20:48:16.2523380Z adding 'torch/include/ATen/ops/native_layer_norm_backward_cuda_dispatch.h' 2025-08-14T20:48:16.2524270Z adding 'torch/include/ATen/ops/native_layer_norm_backward_mps_dispatch.h' 2025-08-14T20:48:16.2525170Z adding 'torch/include/ATen/ops/native_layer_norm_backward_native.h' 2025-08-14T20:48:16.2526230Z adding 'torch/include/ATen/ops/native_layer_norm_backward_ops.h' 2025-08-14T20:48:16.2527270Z adding 'torch/include/ATen/ops/native_layer_norm_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2528080Z adding 'torch/include/ATen/ops/native_layer_norm_cpu_dispatch.h' 2025-08-14T20:48:16.2528920Z adding 'torch/include/ATen/ops/native_layer_norm_cuda_dispatch.h' 2025-08-14T20:48:16.2529750Z adding 'torch/include/ATen/ops/native_layer_norm_mps_dispatch.h' 2025-08-14T20:48:16.2530640Z adding 'torch/include/ATen/ops/native_layer_norm_native.h' 2025-08-14T20:48:16.2531680Z adding 'torch/include/ATen/ops/native_layer_norm_ops.h' 2025-08-14T20:48:16.2532820Z adding 'torch/include/ATen/ops/native_norm.h' 2025-08-14T20:48:16.2533850Z adding 'torch/include/ATen/ops/native_norm_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2534700Z adding 'torch/include/ATen/ops/native_norm_native.h' 2025-08-14T20:48:16.2535750Z adding 'torch/include/ATen/ops/native_norm_ops.h' 2025-08-14T20:48:16.2536700Z adding 'torch/include/ATen/ops/ne.h' 2025-08-14T20:48:16.2537710Z adding 'torch/include/ATen/ops/ne_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.2538520Z adding 'torch/include/ATen/ops/ne_cpu_dispatch.h' 2025-08-14T20:48:16.2539470Z adding 'torch/include/ATen/ops/ne_cuda_dispatch.h' 2025-08-14T20:48:16.2540360Z adding 'torch/include/ATen/ops/ne_meta.h' 2025-08-14T20:48:16.2541270Z adding 'torch/include/ATen/ops/ne_meta_dispatch.h' 2025-08-14T20:48:16.2542120Z adding 'torch/include/ATen/ops/ne_mps_dispatch.h' 2025-08-14T20:48:16.2542990Z adding 'torch/include/ATen/ops/ne_native.h' 2025-08-14T20:48:16.2544150Z adding 'torch/include/ATen/ops/ne_ops.h' 2025-08-14T20:48:16.2545040Z adding 'torch/include/ATen/ops/neg.h' 2025-08-14T20:48:16.2546020Z adding 'torch/include/ATen/ops/neg_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.2546850Z adding 'torch/include/ATen/ops/neg_cpu_dispatch.h' 2025-08-14T20:48:16.2547630Z adding 'torch/include/ATen/ops/neg_cuda_dispatch.h' 2025-08-14T20:48:16.2548450Z adding 'torch/include/ATen/ops/neg_meta.h' 2025-08-14T20:48:16.2549260Z adding 'torch/include/ATen/ops/neg_meta_dispatch.h' 2025-08-14T20:48:16.2550080Z adding 'torch/include/ATen/ops/neg_mps_dispatch.h' 2025-08-14T20:48:16.2550940Z adding 'torch/include/ATen/ops/neg_native.h' 2025-08-14T20:48:16.2551900Z adding 'torch/include/ATen/ops/neg_ops.h' 2025-08-14T20:48:16.2552800Z adding 'torch/include/ATen/ops/negative.h' 2025-08-14T20:48:16.2553760Z adding 'torch/include/ATen/ops/negative_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2554530Z adding 'torch/include/ATen/ops/negative_native.h' 2025-08-14T20:48:16.2555480Z adding 'torch/include/ATen/ops/negative_ops.h' 2025-08-14T20:48:16.2556400Z adding 'torch/include/ATen/ops/nested_to_padded_tensor.h' 2025-08-14T20:48:16.2557400Z adding 'torch/include/ATen/ops/nested_to_padded_tensor_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2558150Z adding 'torch/include/ATen/ops/nested_to_padded_tensor_native.h' 2025-08-14T20:48:16.2559050Z adding 'torch/include/ATen/ops/nested_to_padded_tensor_ops.h' 2025-08-14T20:48:16.2560140Z adding 'torch/include/ATen/ops/new_empty.h' 2025-08-14T20:48:16.2561180Z adding 'torch/include/ATen/ops/new_empty_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2562010Z adding 'torch/include/ATen/ops/new_empty_native.h' 2025-08-14T20:48:16.2562960Z adding 'torch/include/ATen/ops/new_empty_ops.h' 2025-08-14T20:48:16.2564120Z adding 'torch/include/ATen/ops/new_empty_strided.h' 2025-08-14T20:48:16.2565120Z adding 'torch/include/ATen/ops/new_empty_strided_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2566090Z adding 'torch/include/ATen/ops/new_empty_strided_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.2566850Z adding 'torch/include/ATen/ops/new_empty_strided_native.h' 2025-08-14T20:48:16.2567850Z adding 'torch/include/ATen/ops/new_empty_strided_ops.h' 2025-08-14T20:48:16.2568950Z adding 'torch/include/ATen/ops/new_full.h' 2025-08-14T20:48:16.2570030Z adding 'torch/include/ATen/ops/new_full_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2570800Z adding 'torch/include/ATen/ops/new_full_native.h' 2025-08-14T20:48:16.2571810Z adding 'torch/include/ATen/ops/new_full_ops.h' 2025-08-14T20:48:16.2577600Z adding 'torch/include/ATen/ops/new_ones.h' 2025-08-14T20:48:16.2577880Z adding 'torch/include/ATen/ops/new_ones_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2577970Z adding 'torch/include/ATen/ops/new_ones_native.h' 2025-08-14T20:48:16.2578340Z adding 'torch/include/ATen/ops/new_ones_ops.h' 2025-08-14T20:48:16.2578420Z adding 'torch/include/ATen/ops/new_zeros.h' 2025-08-14T20:48:16.2578580Z adding 'torch/include/ATen/ops/new_zeros_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2578670Z adding 'torch/include/ATen/ops/new_zeros_native.h' 2025-08-14T20:48:16.2579650Z adding 'torch/include/ATen/ops/new_zeros_ops.h' 2025-08-14T20:48:16.2580560Z adding 'torch/include/ATen/ops/nextafter.h' 2025-08-14T20:48:16.2581570Z adding 'torch/include/ATen/ops/nextafter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.2582320Z adding 'torch/include/ATen/ops/nextafter_cpu_dispatch.h' 2025-08-14T20:48:16.2583150Z adding 'torch/include/ATen/ops/nextafter_cuda_dispatch.h' 2025-08-14T20:48:16.2583990Z adding 'torch/include/ATen/ops/nextafter_meta.h' 2025-08-14T20:48:16.2584850Z adding 'torch/include/ATen/ops/nextafter_meta_dispatch.h' 2025-08-14T20:48:16.2585660Z adding 'torch/include/ATen/ops/nextafter_mps_dispatch.h' 2025-08-14T20:48:16.2586570Z adding 'torch/include/ATen/ops/nextafter_native.h' 2025-08-14T20:48:16.2587670Z adding 'torch/include/ATen/ops/nextafter_ops.h' 2025-08-14T20:48:16.2588640Z adding 'torch/include/ATen/ops/nll_loss.h' 2025-08-14T20:48:16.2589810Z adding 'torch/include/ATen/ops/nll_loss2d.h' 2025-08-14T20:48:16.2591070Z adding 'torch/include/ATen/ops/nll_loss2d_backward.h' 2025-08-14T20:48:16.2592050Z adding 'torch/include/ATen/ops/nll_loss2d_backward_cpu_dispatch.h' 2025-08-14T20:48:16.2593090Z adding 'torch/include/ATen/ops/nll_loss2d_backward_cuda_dispatch.h' 2025-08-14T20:48:16.2593940Z adding 'torch/include/ATen/ops/nll_loss2d_backward_mps_dispatch.h' 2025-08-14T20:48:16.2594810Z adding 'torch/include/ATen/ops/nll_loss2d_backward_native.h' 2025-08-14T20:48:16.2595870Z adding 'torch/include/ATen/ops/nll_loss2d_backward_ops.h' 2025-08-14T20:48:16.2596970Z adding 'torch/include/ATen/ops/nll_loss2d_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2598040Z adding 'torch/include/ATen/ops/nll_loss2d_forward.h' 2025-08-14T20:48:16.2599060Z adding 'torch/include/ATen/ops/nll_loss2d_forward_cpu_dispatch.h' 2025-08-14T20:48:16.2599990Z adding 'torch/include/ATen/ops/nll_loss2d_forward_cuda_dispatch.h' 2025-08-14T20:48:16.2600850Z adding 'torch/include/ATen/ops/nll_loss2d_forward_mps_dispatch.h' 2025-08-14T20:48:16.2601800Z adding 'torch/include/ATen/ops/nll_loss2d_forward_native.h' 2025-08-14T20:48:16.2602790Z adding 'torch/include/ATen/ops/nll_loss2d_forward_ops.h' 2025-08-14T20:48:16.2603690Z adding 'torch/include/ATen/ops/nll_loss2d_native.h' 2025-08-14T20:48:16.2604680Z adding 'torch/include/ATen/ops/nll_loss2d_ops.h' 2025-08-14T20:48:16.2605900Z adding 'torch/include/ATen/ops/nll_loss_backward.h' 2025-08-14T20:48:16.2607020Z adding 'torch/include/ATen/ops/nll_loss_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.2607880Z adding 'torch/include/ATen/ops/nll_loss_backward_cpu_dispatch.h' 2025-08-14T20:48:16.2608720Z adding 'torch/include/ATen/ops/nll_loss_backward_cuda_dispatch.h' 2025-08-14T20:48:16.2609590Z adding 'torch/include/ATen/ops/nll_loss_backward_meta.h' 2025-08-14T20:48:16.2610510Z adding 'torch/include/ATen/ops/nll_loss_backward_meta_dispatch.h' 2025-08-14T20:48:16.2611440Z adding 'torch/include/ATen/ops/nll_loss_backward_mps_dispatch.h' 2025-08-14T20:48:16.2612300Z adding 'torch/include/ATen/ops/nll_loss_backward_native.h' 2025-08-14T20:48:16.2613330Z adding 'torch/include/ATen/ops/nll_loss_backward_ops.h' 2025-08-14T20:48:16.2614370Z adding 'torch/include/ATen/ops/nll_loss_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2615470Z adding 'torch/include/ATen/ops/nll_loss_forward.h' 2025-08-14T20:48:16.2616560Z adding 'torch/include/ATen/ops/nll_loss_forward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.2617410Z adding 'torch/include/ATen/ops/nll_loss_forward_cpu_dispatch.h' 2025-08-14T20:48:16.2618330Z adding 'torch/include/ATen/ops/nll_loss_forward_cuda_dispatch.h' 2025-08-14T20:48:16.2619170Z adding 'torch/include/ATen/ops/nll_loss_forward_meta.h' 2025-08-14T20:48:16.2620110Z adding 'torch/include/ATen/ops/nll_loss_forward_meta_dispatch.h' 2025-08-14T20:48:16.2621060Z adding 'torch/include/ATen/ops/nll_loss_forward_mps_dispatch.h' 2025-08-14T20:48:16.2621950Z adding 'torch/include/ATen/ops/nll_loss_forward_native.h' 2025-08-14T20:48:16.2623000Z adding 'torch/include/ATen/ops/nll_loss_forward_ops.h' 2025-08-14T20:48:16.2623880Z adding 'torch/include/ATen/ops/nll_loss_native.h' 2025-08-14T20:48:16.2624810Z adding 'torch/include/ATen/ops/nll_loss_nd.h' 2025-08-14T20:48:16.2625800Z adding 'torch/include/ATen/ops/nll_loss_nd_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2626640Z adding 'torch/include/ATen/ops/nll_loss_nd_native.h' 2025-08-14T20:48:16.2627550Z adding 'torch/include/ATen/ops/nll_loss_nd_ops.h' 2025-08-14T20:48:16.2628500Z adding 'torch/include/ATen/ops/nll_loss_ops.h' 2025-08-14T20:48:16.2629390Z adding 'torch/include/ATen/ops/nonzero.h' 2025-08-14T20:48:16.2630310Z adding 'torch/include/ATen/ops/nonzero_cpu_dispatch.h' 2025-08-14T20:48:16.2631120Z adding 'torch/include/ATen/ops/nonzero_cuda_dispatch.h' 2025-08-14T20:48:16.2631930Z adding 'torch/include/ATen/ops/nonzero_mps_dispatch.h' 2025-08-14T20:48:16.2632760Z adding 'torch/include/ATen/ops/nonzero_native.h' 2025-08-14T20:48:16.2633610Z adding 'torch/include/ATen/ops/nonzero_numpy.h' 2025-08-14T20:48:16.2634560Z adding 'torch/include/ATen/ops/nonzero_numpy_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2635350Z adding 'torch/include/ATen/ops/nonzero_numpy_native.h' 2025-08-14T20:48:16.2636280Z adding 'torch/include/ATen/ops/nonzero_numpy_ops.h' 2025-08-14T20:48:16.2637200Z adding 'torch/include/ATen/ops/nonzero_ops.h' 2025-08-14T20:48:16.2638250Z adding 'torch/include/ATen/ops/nonzero_static.h' 2025-08-14T20:48:16.2639260Z adding 'torch/include/ATen/ops/nonzero_static_cpu_dispatch.h' 2025-08-14T20:48:16.2640130Z adding 'torch/include/ATen/ops/nonzero_static_cuda_dispatch.h' 2025-08-14T20:48:16.2640990Z adding 'torch/include/ATen/ops/nonzero_static_native.h' 2025-08-14T20:48:16.2641940Z adding 'torch/include/ATen/ops/nonzero_static_ops.h' 2025-08-14T20:48:16.2643140Z adding 'torch/include/ATen/ops/norm.h' 2025-08-14T20:48:16.2644200Z adding 'torch/include/ATen/ops/norm_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2645150Z adding 'torch/include/ATen/ops/norm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.2646020Z adding 'torch/include/ATen/ops/norm_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2646930Z adding 'torch/include/ATen/ops/norm_cpu_dispatch.h' 2025-08-14T20:48:16.2647750Z adding 'torch/include/ATen/ops/norm_cuda_dispatch.h' 2025-08-14T20:48:16.2648610Z adding 'torch/include/ATen/ops/norm_except_dim.h' 2025-08-14T20:48:16.2649600Z adding 'torch/include/ATen/ops/norm_except_dim_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2650340Z adding 'torch/include/ATen/ops/norm_except_dim_native.h' 2025-08-14T20:48:16.2651250Z adding 'torch/include/ATen/ops/norm_except_dim_ops.h' 2025-08-14T20:48:16.2652130Z adding 'torch/include/ATen/ops/norm_meta.h' 2025-08-14T20:48:16.2653020Z adding 'torch/include/ATen/ops/norm_meta_dispatch.h' 2025-08-14T20:48:16.2653830Z adding 'torch/include/ATen/ops/norm_mps_dispatch.h' 2025-08-14T20:48:16.2654830Z adding 'torch/include/ATen/ops/norm_native.h' 2025-08-14T20:48:16.2656460Z adding 'torch/include/ATen/ops/norm_ops.h' 2025-08-14T20:48:16.2657850Z adding 'torch/include/ATen/ops/normal.h' 2025-08-14T20:48:16.2658990Z adding 'torch/include/ATen/ops/normal_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2659870Z adding 'torch/include/ATen/ops/normal_cpu_dispatch.h' 2025-08-14T20:48:16.2660770Z adding 'torch/include/ATen/ops/normal_cuda_dispatch.h' 2025-08-14T20:48:16.2661650Z adding 'torch/include/ATen/ops/normal_meta_dispatch.h' 2025-08-14T20:48:16.2662540Z adding 'torch/include/ATen/ops/normal_mps_dispatch.h' 2025-08-14T20:48:16.2663570Z adding 'torch/include/ATen/ops/normal_native.h' 2025-08-14T20:48:16.2665170Z adding 'torch/include/ATen/ops/normal_ops.h' 2025-08-14T20:48:16.2665980Z adding 'torch/include/ATen/ops/not_equal.h' 2025-08-14T20:48:16.2667010Z adding 'torch/include/ATen/ops/not_equal_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2667790Z adding 'torch/include/ATen/ops/not_equal_native.h' 2025-08-14T20:48:16.2668910Z adding 'torch/include/ATen/ops/not_equal_ops.h' 2025-08-14T20:48:16.2669850Z adding 'torch/include/ATen/ops/nuclear_norm.h' 2025-08-14T20:48:16.2670880Z adding 'torch/include/ATen/ops/nuclear_norm_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2671630Z adding 'torch/include/ATen/ops/nuclear_norm_native.h' 2025-08-14T20:48:16.2672660Z adding 'torch/include/ATen/ops/nuclear_norm_ops.h' 2025-08-14T20:48:16.2673500Z adding 'torch/include/ATen/ops/numpy_T.h' 2025-08-14T20:48:16.2674460Z adding 'torch/include/ATen/ops/numpy_T_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2675230Z adding 'torch/include/ATen/ops/numpy_T_native.h' 2025-08-14T20:48:16.2676100Z adding 'torch/include/ATen/ops/numpy_T_ops.h' 2025-08-14T20:48:16.2676950Z adding 'torch/include/ATen/ops/one_hot.h' 2025-08-14T20:48:16.2677920Z adding 'torch/include/ATen/ops/one_hot_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2678680Z adding 'torch/include/ATen/ops/one_hot_native.h' 2025-08-14T20:48:16.2679570Z adding 'torch/include/ATen/ops/one_hot_ops.h' 2025-08-14T20:48:16.2680810Z adding 'torch/include/ATen/ops/ones.h' 2025-08-14T20:48:16.2681900Z adding 'torch/include/ATen/ops/ones_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2682910Z adding 'torch/include/ATen/ops/ones_like.h' 2025-08-14T20:48:16.2683870Z adding 'torch/include/ATen/ops/ones_like_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2684660Z adding 'torch/include/ATen/ops/ones_like_native.h' 2025-08-14T20:48:16.2685650Z adding 'torch/include/ATen/ops/ones_like_ops.h' 2025-08-14T20:48:16.2686520Z adding 'torch/include/ATen/ops/ones_native.h' 2025-08-14T20:48:16.2687590Z adding 'torch/include/ATen/ops/ones_ops.h' 2025-08-14T20:48:16.2688470Z adding 'torch/include/ATen/ops/or.h' 2025-08-14T20:48:16.2689420Z adding 'torch/include/ATen/ops/or_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2690180Z adding 'torch/include/ATen/ops/or_native.h' 2025-08-14T20:48:16.2691190Z adding 'torch/include/ATen/ops/or_ops.h' 2025-08-14T20:48:16.2692070Z adding 'torch/include/ATen/ops/orgqr.h' 2025-08-14T20:48:16.2693040Z adding 'torch/include/ATen/ops/orgqr_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2693790Z adding 'torch/include/ATen/ops/orgqr_native.h' 2025-08-14T20:48:16.2694710Z adding 'torch/include/ATen/ops/orgqr_ops.h' 2025-08-14T20:48:16.2695610Z adding 'torch/include/ATen/ops/ormqr.h' 2025-08-14T20:48:16.2696530Z adding 'torch/include/ATen/ops/ormqr_cpu_dispatch.h' 2025-08-14T20:48:16.2697410Z adding 'torch/include/ATen/ops/ormqr_cuda_dispatch.h' 2025-08-14T20:48:16.2698210Z adding 'torch/include/ATen/ops/ormqr_native.h' 2025-08-14T20:48:16.2699150Z adding 'torch/include/ATen/ops/ormqr_ops.h' 2025-08-14T20:48:16.2700020Z adding 'torch/include/ATen/ops/outer.h' 2025-08-14T20:48:16.2700980Z adding 'torch/include/ATen/ops/outer_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2701760Z adding 'torch/include/ATen/ops/outer_native.h' 2025-08-14T20:48:16.2702670Z adding 'torch/include/ATen/ops/outer_ops.h' 2025-08-14T20:48:16.2703480Z adding 'torch/include/ATen/ops/output_nr.h' 2025-08-14T20:48:16.2704430Z adding 'torch/include/ATen/ops/output_nr_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2705170Z adding 'torch/include/ATen/ops/output_nr_native.h' 2025-08-14T20:48:16.2706030Z adding 'torch/include/ATen/ops/output_nr_ops.h' 2025-08-14T20:48:16.2706960Z adding 'torch/include/ATen/ops/pad.h' 2025-08-14T20:48:16.2707920Z adding 'torch/include/ATen/ops/pad_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2708670Z adding 'torch/include/ATen/ops/pad_native.h' 2025-08-14T20:48:16.2709580Z adding 'torch/include/ATen/ops/pad_ops.h' 2025-08-14T20:48:16.2710450Z adding 'torch/include/ATen/ops/pad_sequence.h' 2025-08-14T20:48:16.2711450Z adding 'torch/include/ATen/ops/pad_sequence_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2712190Z adding 'torch/include/ATen/ops/pad_sequence_native.h' 2025-08-14T20:48:16.2713080Z adding 'torch/include/ATen/ops/pad_sequence_ops.h' 2025-08-14T20:48:16.2713930Z adding 'torch/include/ATen/ops/pairwise_distance.h' 2025-08-14T20:48:16.2714900Z adding 'torch/include/ATen/ops/pairwise_distance_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2715650Z adding 'torch/include/ATen/ops/pairwise_distance_native.h' 2025-08-14T20:48:16.2716540Z adding 'torch/include/ATen/ops/pairwise_distance_ops.h' 2025-08-14T20:48:16.2717370Z adding 'torch/include/ATen/ops/pdist.h' 2025-08-14T20:48:16.2718310Z adding 'torch/include/ATen/ops/pdist_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2719080Z adding 'torch/include/ATen/ops/pdist_native.h' 2025-08-14T20:48:16.2719940Z adding 'torch/include/ATen/ops/pdist_ops.h' 2025-08-14T20:48:16.2720860Z adding 'torch/include/ATen/ops/permute.h' 2025-08-14T20:48:16.2721800Z adding 'torch/include/ATen/ops/permute_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2722600Z adding 'torch/include/ATen/ops/permute_copy.h' 2025-08-14T20:48:16.2723540Z adding 'torch/include/ATen/ops/permute_copy_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2724450Z adding 'torch/include/ATen/ops/permute_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.2725180Z adding 'torch/include/ATen/ops/permute_copy_native.h' 2025-08-14T20:48:16.2726140Z adding 'torch/include/ATen/ops/permute_copy_ops.h' 2025-08-14T20:48:16.2726990Z adding 'torch/include/ATen/ops/permute_mps_dispatch.h' 2025-08-14T20:48:16.2728110Z adding 'torch/include/ATen/ops/permute_native.h' 2025-08-14T20:48:16.2729010Z adding 'torch/include/ATen/ops/permute_ops.h' 2025-08-14T20:48:16.2729840Z adding 'torch/include/ATen/ops/pin_memory.h' 2025-08-14T20:48:16.2730830Z adding 'torch/include/ATen/ops/pin_memory_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2731550Z adding 'torch/include/ATen/ops/pin_memory_native.h' 2025-08-14T20:48:16.2732480Z adding 'torch/include/ATen/ops/pin_memory_ops.h' 2025-08-14T20:48:16.2733300Z adding 'torch/include/ATen/ops/pinverse.h' 2025-08-14T20:48:16.2734280Z adding 'torch/include/ATen/ops/pinverse_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2734980Z adding 'torch/include/ATen/ops/pinverse_native.h' 2025-08-14T20:48:16.2735890Z adding 'torch/include/ATen/ops/pinverse_ops.h' 2025-08-14T20:48:16.2736760Z adding 'torch/include/ATen/ops/pixel_shuffle.h' 2025-08-14T20:48:16.2737720Z adding 'torch/include/ATen/ops/pixel_shuffle_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2738660Z adding 'torch/include/ATen/ops/pixel_shuffle_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.2739420Z adding 'torch/include/ATen/ops/pixel_shuffle_cpu_dispatch.h' 2025-08-14T20:48:16.2740200Z adding 'torch/include/ATen/ops/pixel_shuffle_mps_dispatch.h' 2025-08-14T20:48:16.2741020Z adding 'torch/include/ATen/ops/pixel_shuffle_native.h' 2025-08-14T20:48:16.2741960Z adding 'torch/include/ATen/ops/pixel_shuffle_ops.h' 2025-08-14T20:48:16.2742910Z adding 'torch/include/ATen/ops/pixel_unshuffle.h' 2025-08-14T20:48:16.2743890Z adding 'torch/include/ATen/ops/pixel_unshuffle_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2744820Z adding 'torch/include/ATen/ops/pixel_unshuffle_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.2745590Z adding 'torch/include/ATen/ops/pixel_unshuffle_cpu_dispatch.h' 2025-08-14T20:48:16.2746430Z adding 'torch/include/ATen/ops/pixel_unshuffle_mps_dispatch.h' 2025-08-14T20:48:16.2747300Z adding 'torch/include/ATen/ops/pixel_unshuffle_native.h' 2025-08-14T20:48:16.2748290Z adding 'torch/include/ATen/ops/pixel_unshuffle_ops.h' 2025-08-14T20:48:16.2749200Z adding 'torch/include/ATen/ops/poisson.h' 2025-08-14T20:48:16.2750200Z adding 'torch/include/ATen/ops/poisson_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2750990Z adding 'torch/include/ATen/ops/poisson_cpu_dispatch.h' 2025-08-14T20:48:16.2751800Z adding 'torch/include/ATen/ops/poisson_cuda_dispatch.h' 2025-08-14T20:48:16.2752610Z adding 'torch/include/ATen/ops/poisson_native.h' 2025-08-14T20:48:16.2753490Z adding 'torch/include/ATen/ops/poisson_nll_loss.h' 2025-08-14T20:48:16.2754460Z adding 'torch/include/ATen/ops/poisson_nll_loss_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2755210Z adding 'torch/include/ATen/ops/poisson_nll_loss_native.h' 2025-08-14T20:48:16.2756110Z adding 'torch/include/ATen/ops/poisson_nll_loss_ops.h' 2025-08-14T20:48:16.2757030Z adding 'torch/include/ATen/ops/poisson_ops.h' 2025-08-14T20:48:16.2757900Z adding 'torch/include/ATen/ops/polar.h' 2025-08-14T20:48:16.2758860Z adding 'torch/include/ATen/ops/polar_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2759630Z adding 'torch/include/ATen/ops/polar_cpu_dispatch.h' 2025-08-14T20:48:16.2760440Z adding 'torch/include/ATen/ops/polar_cuda_dispatch.h' 2025-08-14T20:48:16.2761240Z adding 'torch/include/ATen/ops/polar_mps_dispatch.h' 2025-08-14T20:48:16.2762070Z adding 'torch/include/ATen/ops/polar_native.h' 2025-08-14T20:48:16.2763000Z adding 'torch/include/ATen/ops/polar_ops.h' 2025-08-14T20:48:16.2763860Z adding 'torch/include/ATen/ops/polygamma.h' 2025-08-14T20:48:16.2764830Z adding 'torch/include/ATen/ops/polygamma_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2765730Z adding 'torch/include/ATen/ops/polygamma_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.2766500Z adding 'torch/include/ATen/ops/polygamma_cpu_dispatch.h' 2025-08-14T20:48:16.2767380Z adding 'torch/include/ATen/ops/polygamma_cuda_dispatch.h' 2025-08-14T20:48:16.2768230Z adding 'torch/include/ATen/ops/polygamma_meta.h' 2025-08-14T20:48:16.2769120Z adding 'torch/include/ATen/ops/polygamma_meta_dispatch.h' 2025-08-14T20:48:16.2770010Z adding 'torch/include/ATen/ops/polygamma_mps_dispatch.h' 2025-08-14T20:48:16.2770860Z adding 'torch/include/ATen/ops/polygamma_native.h' 2025-08-14T20:48:16.2771850Z adding 'torch/include/ATen/ops/polygamma_ops.h' 2025-08-14T20:48:16.2772700Z adding 'torch/include/ATen/ops/positive.h' 2025-08-14T20:48:16.2773620Z adding 'torch/include/ATen/ops/positive_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2774370Z adding 'torch/include/ATen/ops/positive_native.h' 2025-08-14T20:48:16.2775260Z adding 'torch/include/ATen/ops/positive_ops.h' 2025-08-14T20:48:16.2776250Z adding 'torch/include/ATen/ops/pow.h' 2025-08-14T20:48:16.2777280Z adding 'torch/include/ATen/ops/pow_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.2778090Z adding 'torch/include/ATen/ops/pow_cpu_dispatch.h' 2025-08-14T20:48:16.2778920Z adding 'torch/include/ATen/ops/pow_cuda_dispatch.h' 2025-08-14T20:48:16.2779770Z adding 'torch/include/ATen/ops/pow_meta.h' 2025-08-14T20:48:16.2780680Z adding 'torch/include/ATen/ops/pow_meta_dispatch.h' 2025-08-14T20:48:16.2781530Z adding 'torch/include/ATen/ops/pow_mps_dispatch.h' 2025-08-14T20:48:16.2782440Z adding 'torch/include/ATen/ops/pow_native.h' 2025-08-14T20:48:16.2783630Z adding 'torch/include/ATen/ops/pow_ops.h' 2025-08-14T20:48:16.2784500Z adding 'torch/include/ATen/ops/prelu.h' 2025-08-14T20:48:16.2785460Z adding 'torch/include/ATen/ops/prelu_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2786190Z adding 'torch/include/ATen/ops/prelu_native.h' 2025-08-14T20:48:16.2787050Z adding 'torch/include/ATen/ops/prelu_ops.h' 2025-08-14T20:48:16.2788070Z adding 'torch/include/ATen/ops/prod.h' 2025-08-14T20:48:16.2789070Z adding 'torch/include/ATen/ops/prod_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2789990Z adding 'torch/include/ATen/ops/prod_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.2790840Z adding 'torch/include/ATen/ops/prod_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2791630Z adding 'torch/include/ATen/ops/prod_cpu_dispatch.h' 2025-08-14T20:48:16.2792480Z adding 'torch/include/ATen/ops/prod_cuda_dispatch.h' 2025-08-14T20:48:16.2793310Z adding 'torch/include/ATen/ops/prod_meta.h' 2025-08-14T20:48:16.2794210Z adding 'torch/include/ATen/ops/prod_meta_dispatch.h' 2025-08-14T20:48:16.2795040Z adding 'torch/include/ATen/ops/prod_mps_dispatch.h' 2025-08-14T20:48:16.2795970Z adding 'torch/include/ATen/ops/prod_native.h' 2025-08-14T20:48:16.2797110Z adding 'torch/include/ATen/ops/prod_ops.h' 2025-08-14T20:48:16.2797990Z adding 'torch/include/ATen/ops/promote_types.h' 2025-08-14T20:48:16.2798960Z adding 'torch/include/ATen/ops/promote_types_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2799720Z adding 'torch/include/ATen/ops/promote_types_native.h' 2025-08-14T20:48:16.2800600Z adding 'torch/include/ATen/ops/promote_types_ops.h' 2025-08-14T20:48:16.2801500Z adding 'torch/include/ATen/ops/put.h' 2025-08-14T20:48:16.2802510Z adding 'torch/include/ATen/ops/put_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2803280Z adding 'torch/include/ATen/ops/put_cpu_dispatch.h' 2025-08-14T20:48:16.2804070Z adding 'torch/include/ATen/ops/put_cuda_dispatch.h' 2025-08-14T20:48:16.2804890Z adding 'torch/include/ATen/ops/put_meta_dispatch.h' 2025-08-14T20:48:16.2805720Z adding 'torch/include/ATen/ops/put_native.h' 2025-08-14T20:48:16.2806710Z adding 'torch/include/ATen/ops/put_ops.h' 2025-08-14T20:48:16.2807610Z adding 'torch/include/ATen/ops/q_per_channel_axis.h' 2025-08-14T20:48:16.2808460Z adding 'torch/include/ATen/ops/q_per_channel_axis_native.h' 2025-08-14T20:48:16.2809340Z adding 'torch/include/ATen/ops/q_per_channel_axis_ops.h' 2025-08-14T20:48:16.2810210Z adding 'torch/include/ATen/ops/q_per_channel_scales.h' 2025-08-14T20:48:16.2811190Z adding 'torch/include/ATen/ops/q_per_channel_scales_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2811930Z adding 'torch/include/ATen/ops/q_per_channel_scales_native.h' 2025-08-14T20:48:16.2812870Z adding 'torch/include/ATen/ops/q_per_channel_scales_ops.h' 2025-08-14T20:48:16.2813760Z adding 'torch/include/ATen/ops/q_per_channel_zero_points.h' 2025-08-14T20:48:16.2814720Z adding 'torch/include/ATen/ops/q_per_channel_zero_points_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2815480Z adding 'torch/include/ATen/ops/q_per_channel_zero_points_native.h' 2025-08-14T20:48:16.2816400Z adding 'torch/include/ATen/ops/q_per_channel_zero_points_ops.h' 2025-08-14T20:48:16.2817180Z adding 'torch/include/ATen/ops/q_scale.h' 2025-08-14T20:48:16.2818020Z adding 'torch/include/ATen/ops/q_scale_native.h' 2025-08-14T20:48:16.2818910Z adding 'torch/include/ATen/ops/q_scale_ops.h' 2025-08-14T20:48:16.2819740Z adding 'torch/include/ATen/ops/q_zero_point.h' 2025-08-14T20:48:16.2820590Z adding 'torch/include/ATen/ops/q_zero_point_native.h' 2025-08-14T20:48:16.2821450Z adding 'torch/include/ATen/ops/q_zero_point_ops.h' 2025-08-14T20:48:16.2822320Z adding 'torch/include/ATen/ops/qr.h' 2025-08-14T20:48:16.2823310Z adding 'torch/include/ATen/ops/qr_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2824090Z adding 'torch/include/ATen/ops/qr_native.h' 2025-08-14T20:48:16.2825020Z adding 'torch/include/ATen/ops/qr_ops.h' 2025-08-14T20:48:16.2825820Z adding 'torch/include/ATen/ops/qscheme.h' 2025-08-14T20:48:16.2826630Z adding 'torch/include/ATen/ops/qscheme_native.h' 2025-08-14T20:48:16.2827510Z adding 'torch/include/ATen/ops/qscheme_ops.h' 2025-08-14T20:48:16.2828500Z adding 'torch/include/ATen/ops/quantile.h' 2025-08-14T20:48:16.2829540Z adding 'torch/include/ATen/ops/quantile_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2830330Z adding 'torch/include/ATen/ops/quantile_native.h' 2025-08-14T20:48:16.2831370Z adding 'torch/include/ATen/ops/quantile_ops.h' 2025-08-14T20:48:16.2832350Z adding 'torch/include/ATen/ops/quantize_per_channel.h' 2025-08-14T20:48:16.2833350Z adding 'torch/include/ATen/ops/quantize_per_channel_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2834140Z adding 'torch/include/ATen/ops/quantize_per_channel_cpu_dispatch.h' 2025-08-14T20:48:16.2834960Z adding 'torch/include/ATen/ops/quantize_per_channel_cuda_dispatch.h' 2025-08-14T20:48:16.2835820Z adding 'torch/include/ATen/ops/quantize_per_channel_native.h' 2025-08-14T20:48:16.2836780Z adding 'torch/include/ATen/ops/quantize_per_channel_ops.h' 2025-08-14T20:48:16.2837860Z adding 'torch/include/ATen/ops/quantize_per_tensor.h' 2025-08-14T20:48:16.2838920Z adding 'torch/include/ATen/ops/quantize_per_tensor_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2839760Z adding 'torch/include/ATen/ops/quantize_per_tensor_cpu_dispatch.h' 2025-08-14T20:48:16.2840640Z adding 'torch/include/ATen/ops/quantize_per_tensor_cuda_dispatch.h' 2025-08-14T20:48:16.2841530Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic.h' 2025-08-14T20:48:16.2842510Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2843330Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_cpu_dispatch.h' 2025-08-14T20:48:16.2844180Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_cuda_dispatch.h' 2025-08-14T20:48:16.2845000Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_native.h' 2025-08-14T20:48:16.2845980Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_ops.h' 2025-08-14T20:48:16.2846880Z adding 'torch/include/ATen/ops/quantize_per_tensor_native.h' 2025-08-14T20:48:16.2848190Z adding 'torch/include/ATen/ops/quantize_per_tensor_ops.h' 2025-08-14T20:48:16.2849230Z adding 'torch/include/ATen/ops/quantized_batch_norm.h' 2025-08-14T20:48:16.2850240Z adding 'torch/include/ATen/ops/quantized_batch_norm_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2851040Z adding 'torch/include/ATen/ops/quantized_batch_norm_native.h' 2025-08-14T20:48:16.2852080Z adding 'torch/include/ATen/ops/quantized_batch_norm_ops.h' 2025-08-14T20:48:16.2852980Z adding 'torch/include/ATen/ops/quantized_gru_cell.h' 2025-08-14T20:48:16.2854000Z adding 'torch/include/ATen/ops/quantized_gru_cell_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2854770Z adding 'torch/include/ATen/ops/quantized_gru_cell_native.h' 2025-08-14T20:48:16.2855750Z adding 'torch/include/ATen/ops/quantized_gru_cell_ops.h' 2025-08-14T20:48:16.2856700Z adding 'torch/include/ATen/ops/quantized_lstm_cell.h' 2025-08-14T20:48:16.2857700Z adding 'torch/include/ATen/ops/quantized_lstm_cell_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2858470Z adding 'torch/include/ATen/ops/quantized_lstm_cell_native.h' 2025-08-14T20:48:16.2859460Z adding 'torch/include/ATen/ops/quantized_lstm_cell_ops.h' 2025-08-14T20:48:16.2860410Z adding 'torch/include/ATen/ops/quantized_max_pool1d.h' 2025-08-14T20:48:16.2861400Z adding 'torch/include/ATen/ops/quantized_max_pool1d_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2862190Z adding 'torch/include/ATen/ops/quantized_max_pool1d_native.h' 2025-08-14T20:48:16.2863170Z adding 'torch/include/ATen/ops/quantized_max_pool1d_ops.h' 2025-08-14T20:48:16.2864100Z adding 'torch/include/ATen/ops/quantized_max_pool2d.h' 2025-08-14T20:48:16.2865130Z adding 'torch/include/ATen/ops/quantized_max_pool2d_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2865890Z adding 'torch/include/ATen/ops/quantized_max_pool2d_native.h' 2025-08-14T20:48:16.2866860Z adding 'torch/include/ATen/ops/quantized_max_pool2d_ops.h' 2025-08-14T20:48:16.2867860Z adding 'torch/include/ATen/ops/quantized_max_pool3d.h' 2025-08-14T20:48:16.2868910Z adding 'torch/include/ATen/ops/quantized_max_pool3d_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2869740Z adding 'torch/include/ATen/ops/quantized_max_pool3d_native.h' 2025-08-14T20:48:16.2870700Z adding 'torch/include/ATen/ops/quantized_max_pool3d_ops.h' 2025-08-14T20:48:16.2871660Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell.h' 2025-08-14T20:48:16.2872650Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2873410Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell_native.h' 2025-08-14T20:48:16.2874420Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell_ops.h' 2025-08-14T20:48:16.2875340Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell.h' 2025-08-14T20:48:16.2876320Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2877080Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell_native.h' 2025-08-14T20:48:16.2878040Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell_ops.h' 2025-08-14T20:48:16.2878910Z adding 'torch/include/ATen/ops/rad2deg.h' 2025-08-14T20:48:16.2879880Z adding 'torch/include/ATen/ops/rad2deg_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2880660Z adding 'torch/include/ATen/ops/rad2deg_native.h' 2025-08-14T20:48:16.2881800Z adding 'torch/include/ATen/ops/rad2deg_ops.h' 2025-08-14T20:48:16.2884140Z adding 'torch/include/ATen/ops/rand.h' 2025-08-14T20:48:16.2885310Z adding 'torch/include/ATen/ops/rand_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2886220Z adding 'torch/include/ATen/ops/rand_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2887140Z adding 'torch/include/ATen/ops/rand_like.h' 2025-08-14T20:48:16.2888150Z adding 'torch/include/ATen/ops/rand_like_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2888940Z adding 'torch/include/ATen/ops/rand_like_native.h' 2025-08-14T20:48:16.2889930Z adding 'torch/include/ATen/ops/rand_like_ops.h' 2025-08-14T20:48:16.2890860Z adding 'torch/include/ATen/ops/rand_native.h' 2025-08-14T20:48:16.2892160Z adding 'torch/include/ATen/ops/rand_ops.h' 2025-08-14T20:48:16.2894560Z adding 'torch/include/ATen/ops/randint.h' 2025-08-14T20:48:16.2895580Z adding 'torch/include/ATen/ops/randint_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2897470Z adding 'torch/include/ATen/ops/randint_like.h' 2025-08-14T20:48:16.2898520Z adding 'torch/include/ATen/ops/randint_like_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2899310Z adding 'torch/include/ATen/ops/randint_like_native.h' 2025-08-14T20:48:16.2900530Z adding 'torch/include/ATen/ops/randint_like_ops.h' 2025-08-14T20:48:16.2901460Z adding 'torch/include/ATen/ops/randint_native.h' 2025-08-14T20:48:16.2902790Z adding 'torch/include/ATen/ops/randint_ops.h' 2025-08-14T20:48:16.2905070Z adding 'torch/include/ATen/ops/randn.h' 2025-08-14T20:48:16.2906070Z adding 'torch/include/ATen/ops/randn_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2907020Z adding 'torch/include/ATen/ops/randn_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2907900Z adding 'torch/include/ATen/ops/randn_like.h' 2025-08-14T20:48:16.2908910Z adding 'torch/include/ATen/ops/randn_like_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2909830Z adding 'torch/include/ATen/ops/randn_like_compositeimplicitautogradnestedtensor_dispatch.h' 2025-08-14T20:48:16.2910570Z adding 'torch/include/ATen/ops/randn_like_native.h' 2025-08-14T20:48:16.2911570Z adding 'torch/include/ATen/ops/randn_like_ops.h' 2025-08-14T20:48:16.2912590Z adding 'torch/include/ATen/ops/randn_native.h' 2025-08-14T20:48:16.2913850Z adding 'torch/include/ATen/ops/randn_ops.h' 2025-08-14T20:48:16.2914920Z adding 'torch/include/ATen/ops/random.h' 2025-08-14T20:48:16.2915900Z adding 'torch/include/ATen/ops/random_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2916730Z adding 'torch/include/ATen/ops/random_cpu_dispatch.h' 2025-08-14T20:48:16.2917520Z adding 'torch/include/ATen/ops/random_cuda_dispatch.h' 2025-08-14T20:48:16.2918360Z adding 'torch/include/ATen/ops/random_meta_dispatch.h' 2025-08-14T20:48:16.2919170Z adding 'torch/include/ATen/ops/random_mps_dispatch.h' 2025-08-14T20:48:16.2920080Z adding 'torch/include/ATen/ops/random_native.h' 2025-08-14T20:48:16.2921280Z adding 'torch/include/ATen/ops/random_ops.h' 2025-08-14T20:48:16.2922870Z adding 'torch/include/ATen/ops/randperm.h' 2025-08-14T20:48:16.2923770Z adding 'torch/include/ATen/ops/randperm_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2924590Z adding 'torch/include/ATen/ops/randperm_cpu_dispatch.h' 2025-08-14T20:48:16.2925460Z adding 'torch/include/ATen/ops/randperm_cuda_dispatch.h' 2025-08-14T20:48:16.2926270Z adding 'torch/include/ATen/ops/randperm_mps_dispatch.h' 2025-08-14T20:48:16.2927130Z adding 'torch/include/ATen/ops/randperm_native.h' 2025-08-14T20:48:16.2928200Z adding 'torch/include/ATen/ops/randperm_ops.h' 2025-08-14T20:48:16.2929230Z adding 'torch/include/ATen/ops/range.h' 2025-08-14T20:48:16.2930260Z adding 'torch/include/ATen/ops/range_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.2931080Z adding 'torch/include/ATen/ops/range_cpu_dispatch.h' 2025-08-14T20:48:16.2931920Z adding 'torch/include/ATen/ops/range_cuda_dispatch.h' 2025-08-14T20:48:16.2932730Z adding 'torch/include/ATen/ops/range_meta_dispatch.h' 2025-08-14T20:48:16.2933540Z adding 'torch/include/ATen/ops/range_mps_dispatch.h' 2025-08-14T20:48:16.2934410Z adding 'torch/include/ATen/ops/range_native.h' 2025-08-14T20:48:16.2935490Z adding 'torch/include/ATen/ops/range_ops.h' 2025-08-14T20:48:16.2936350Z adding 'torch/include/ATen/ops/ravel.h' 2025-08-14T20:48:16.2937310Z adding 'torch/include/ATen/ops/ravel_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2938080Z adding 'torch/include/ATen/ops/ravel_native.h' 2025-08-14T20:48:16.2938960Z adding 'torch/include/ATen/ops/ravel_ops.h' 2025-08-14T20:48:16.2939810Z adding 'torch/include/ATen/ops/real.h' 2025-08-14T20:48:16.2940760Z adding 'torch/include/ATen/ops/real_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2941500Z adding 'torch/include/ATen/ops/real_native.h' 2025-08-14T20:48:16.2942370Z adding 'torch/include/ATen/ops/real_ops.h' 2025-08-14T20:48:16.2943580Z adding 'torch/include/ATen/ops/reciprocal.h' 2025-08-14T20:48:16.2944600Z adding 'torch/include/ATen/ops/reciprocal_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.2945370Z adding 'torch/include/ATen/ops/reciprocal_cpu_dispatch.h' 2025-08-14T20:48:16.2946150Z adding 'torch/include/ATen/ops/reciprocal_cuda_dispatch.h' 2025-08-14T20:48:16.2946970Z adding 'torch/include/ATen/ops/reciprocal_meta.h' 2025-08-14T20:48:16.2947810Z adding 'torch/include/ATen/ops/reciprocal_meta_dispatch.h' 2025-08-14T20:48:16.2948610Z adding 'torch/include/ATen/ops/reciprocal_mps_dispatch.h' 2025-08-14T20:48:16.2949420Z adding 'torch/include/ATen/ops/reciprocal_native.h' 2025-08-14T20:48:16.2950380Z adding 'torch/include/ATen/ops/reciprocal_ops.h' 2025-08-14T20:48:16.2951210Z adding 'torch/include/ATen/ops/record_stream.h' 2025-08-14T20:48:16.2952100Z adding 'torch/include/ATen/ops/record_stream_cuda_dispatch.h' 2025-08-14T20:48:16.2952900Z adding 'torch/include/ATen/ops/record_stream_native.h' 2025-08-14T20:48:16.2953790Z adding 'torch/include/ATen/ops/record_stream_ops.h' 2025-08-14T20:48:16.2954590Z adding 'torch/include/ATen/ops/refine_names.h' 2025-08-14T20:48:16.2955570Z adding 'torch/include/ATen/ops/refine_names_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.2956300Z adding 'torch/include/ATen/ops/refine_names_native.h' 2025-08-14T20:48:16.2957190Z adding 'torch/include/ATen/ops/refine_names_ops.h' 2025-08-14T20:48:16.2958230Z adding 'torch/include/ATen/ops/reflection_pad1d.h' 2025-08-14T20:48:16.2959410Z adding 'torch/include/ATen/ops/reflection_pad1d_backward.h' 2025-08-14T20:48:16.2960440Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.2961260Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_cpu_dispatch.h' 2025-08-14T20:48:16.2962110Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_cuda_dispatch.h' 2025-08-14T20:48:16.2962950Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_meta.h' 2025-08-14T20:48:16.2963870Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_meta_dispatch.h' 2025-08-14T20:48:16.2964700Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_mps_dispatch.h' 2025-08-14T20:48:16.2965560Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_native.h' 2025-08-14T20:48:16.2966520Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_ops.h' 2025-08-14T20:48:16.2967500Z adding 'torch/include/ATen/ops/reflection_pad1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.2968330Z adding 'torch/include/ATen/ops/reflection_pad1d_cpu_dispatch.h' 2025-08-14T20:48:16.2969160Z adding 'torch/include/ATen/ops/reflection_pad1d_cuda_dispatch.h' 2025-08-14T20:48:16.2969970Z adding 'torch/include/ATen/ops/reflection_pad1d_meta.h' 2025-08-14T20:48:16.2970860Z adding 'torch/include/ATen/ops/reflection_pad1d_meta_dispatch.h' 2025-08-14T20:48:16.2971740Z adding 'torch/include/ATen/ops/reflection_pad1d_mps_dispatch.h' 2025-08-14T20:48:16.2972570Z adding 'torch/include/ATen/ops/reflection_pad1d_native.h' 2025-08-14T20:48:16.2973530Z adding 'torch/include/ATen/ops/reflection_pad1d_ops.h' 2025-08-14T20:48:16.2974540Z adding 'torch/include/ATen/ops/reflection_pad2d.h' 2025-08-14T20:48:16.2975670Z adding 'torch/include/ATen/ops/reflection_pad2d_backward.h' 2025-08-14T20:48:16.2976620Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_cpu_dispatch.h' 2025-08-14T20:48:16.2977490Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_cuda_dispatch.h' 2025-08-14T20:48:16.2978340Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_mps_dispatch.h' 2025-08-14T20:48:16.2979200Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_native.h' 2025-08-14T20:48:16.2980170Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_ops.h' 2025-08-14T20:48:16.2981060Z adding 'torch/include/ATen/ops/reflection_pad2d_cpu_dispatch.h' 2025-08-14T20:48:16.2981920Z adding 'torch/include/ATen/ops/reflection_pad2d_cuda_dispatch.h' 2025-08-14T20:48:16.2982760Z adding 'torch/include/ATen/ops/reflection_pad2d_mps_dispatch.h' 2025-08-14T20:48:16.2983600Z adding 'torch/include/ATen/ops/reflection_pad2d_native.h' 2025-08-14T20:48:16.2984600Z adding 'torch/include/ATen/ops/reflection_pad2d_ops.h' 2025-08-14T20:48:16.2985600Z adding 'torch/include/ATen/ops/reflection_pad3d.h' 2025-08-14T20:48:16.2986770Z adding 'torch/include/ATen/ops/reflection_pad3d_backward.h' 2025-08-14T20:48:16.2987880Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.2988740Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_cpu_dispatch.h' 2025-08-14T20:48:16.2989640Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_cuda_dispatch.h' 2025-08-14T20:48:16.2990470Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_meta.h' 2025-08-14T20:48:16.2991350Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_meta_dispatch.h' 2025-08-14T20:48:16.2992190Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_mps_dispatch.h' 2025-08-14T20:48:16.2993050Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_native.h' 2025-08-14T20:48:16.2994020Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_ops.h' 2025-08-14T20:48:16.2995010Z adding 'torch/include/ATen/ops/reflection_pad3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.2995750Z adding 'torch/include/ATen/ops/reflection_pad3d_cpu_dispatch.h' 2025-08-14T20:48:16.2996600Z adding 'torch/include/ATen/ops/reflection_pad3d_cuda_dispatch.h' 2025-08-14T20:48:16.2997470Z adding 'torch/include/ATen/ops/reflection_pad3d_meta.h' 2025-08-14T20:48:16.2998310Z adding 'torch/include/ATen/ops/reflection_pad3d_meta_dispatch.h' 2025-08-14T20:48:16.2999140Z adding 'torch/include/ATen/ops/reflection_pad3d_mps_dispatch.h' 2025-08-14T20:48:16.3000000Z adding 'torch/include/ATen/ops/reflection_pad3d_native.h' 2025-08-14T20:48:16.3000920Z adding 'torch/include/ATen/ops/reflection_pad3d_ops.h' 2025-08-14T20:48:16.3001780Z adding 'torch/include/ATen/ops/relu.h' 2025-08-14T20:48:16.3002640Z adding 'torch/include/ATen/ops/relu6.h' 2025-08-14T20:48:16.3003590Z adding 'torch/include/ATen/ops/relu6_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3004340Z adding 'torch/include/ATen/ops/relu6_native.h' 2025-08-14T20:48:16.3005260Z adding 'torch/include/ATen/ops/relu6_ops.h' 2025-08-14T20:48:16.3006200Z adding 'torch/include/ATen/ops/relu_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.3006980Z adding 'torch/include/ATen/ops/relu_cpu_dispatch.h' 2025-08-14T20:48:16.3007800Z adding 'torch/include/ATen/ops/relu_cuda_dispatch.h' 2025-08-14T20:48:16.3008640Z adding 'torch/include/ATen/ops/relu_meta_dispatch.h' 2025-08-14T20:48:16.3009460Z adding 'torch/include/ATen/ops/relu_mps_dispatch.h' 2025-08-14T20:48:16.3010320Z adding 'torch/include/ATen/ops/relu_native.h' 2025-08-14T20:48:16.3011280Z adding 'torch/include/ATen/ops/relu_ops.h' 2025-08-14T20:48:16.3012280Z adding 'torch/include/ATen/ops/remainder.h' 2025-08-14T20:48:16.3013280Z adding 'torch/include/ATen/ops/remainder_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.3014180Z adding 'torch/include/ATen/ops/remainder_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3014940Z adding 'torch/include/ATen/ops/remainder_cpu_dispatch.h' 2025-08-14T20:48:16.3015770Z adding 'torch/include/ATen/ops/remainder_cuda_dispatch.h' 2025-08-14T20:48:16.3016580Z adding 'torch/include/ATen/ops/remainder_meta.h' 2025-08-14T20:48:16.3017460Z adding 'torch/include/ATen/ops/remainder_meta_dispatch.h' 2025-08-14T20:48:16.3018290Z adding 'torch/include/ATen/ops/remainder_mps_dispatch.h' 2025-08-14T20:48:16.3019150Z adding 'torch/include/ATen/ops/remainder_native.h' 2025-08-14T20:48:16.3020330Z adding 'torch/include/ATen/ops/remainder_ops.h' 2025-08-14T20:48:16.3021160Z adding 'torch/include/ATen/ops/rename.h' 2025-08-14T20:48:16.3022120Z adding 'torch/include/ATen/ops/rename_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3022920Z adding 'torch/include/ATen/ops/rename_native.h' 2025-08-14T20:48:16.3023840Z adding 'torch/include/ATen/ops/rename_ops.h' 2025-08-14T20:48:16.3024740Z adding 'torch/include/ATen/ops/renorm.h' 2025-08-14T20:48:16.3025810Z adding 'torch/include/ATen/ops/renorm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3026530Z adding 'torch/include/ATen/ops/renorm_cpu_dispatch.h' 2025-08-14T20:48:16.3027390Z adding 'torch/include/ATen/ops/renorm_cuda_dispatch.h' 2025-08-14T20:48:16.3028220Z adding 'torch/include/ATen/ops/renorm_meta.h' 2025-08-14T20:48:16.3029080Z adding 'torch/include/ATen/ops/renorm_meta_dispatch.h' 2025-08-14T20:48:16.3029890Z adding 'torch/include/ATen/ops/renorm_mps_dispatch.h' 2025-08-14T20:48:16.3030740Z adding 'torch/include/ATen/ops/renorm_native.h' 2025-08-14T20:48:16.3031760Z adding 'torch/include/ATen/ops/renorm_ops.h' 2025-08-14T20:48:16.3032770Z adding 'torch/include/ATen/ops/repeat.h' 2025-08-14T20:48:16.3033760Z adding 'torch/include/ATen/ops/repeat_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.3034990Z adding 'torch/include/ATen/ops/repeat_interleave.h' 2025-08-14T20:48:16.3036140Z adding 'torch/include/ATen/ops/repeat_interleave_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.3037080Z adding 'torch/include/ATen/ops/repeat_interleave_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3037870Z adding 'torch/include/ATen/ops/repeat_interleave_cpu_dispatch.h' 2025-08-14T20:48:16.3038690Z adding 'torch/include/ATen/ops/repeat_interleave_cuda_dispatch.h' 2025-08-14T20:48:16.3039550Z adding 'torch/include/ATen/ops/repeat_interleave_mps_dispatch.h' 2025-08-14T20:48:16.3040380Z adding 'torch/include/ATen/ops/repeat_interleave_native.h' 2025-08-14T20:48:16.3041480Z adding 'torch/include/ATen/ops/repeat_interleave_ops.h' 2025-08-14T20:48:16.3042360Z adding 'torch/include/ATen/ops/repeat_mps_dispatch.h' 2025-08-14T20:48:16.3043190Z adding 'torch/include/ATen/ops/repeat_native.h' 2025-08-14T20:48:16.3044110Z adding 'torch/include/ATen/ops/repeat_ops.h' 2025-08-14T20:48:16.3045170Z adding 'torch/include/ATen/ops/replication_pad1d.h' 2025-08-14T20:48:16.3046300Z adding 'torch/include/ATen/ops/replication_pad1d_backward.h' 2025-08-14T20:48:16.3047340Z adding 'torch/include/ATen/ops/replication_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3048140Z adding 'torch/include/ATen/ops/replication_pad1d_backward_cpu_dispatch.h' 2025-08-14T20:48:16.3049010Z adding 'torch/include/ATen/ops/replication_pad1d_backward_cuda_dispatch.h' 2025-08-14T20:48:16.3049850Z adding 'torch/include/ATen/ops/replication_pad1d_backward_meta.h' 2025-08-14T20:48:16.3050710Z adding 'torch/include/ATen/ops/replication_pad1d_backward_meta_dispatch.h' 2025-08-14T20:48:16.3051550Z adding 'torch/include/ATen/ops/replication_pad1d_backward_mps_dispatch.h' 2025-08-14T20:48:16.3052440Z adding 'torch/include/ATen/ops/replication_pad1d_backward_native.h' 2025-08-14T20:48:16.3053390Z adding 'torch/include/ATen/ops/replication_pad1d_backward_ops.h' 2025-08-14T20:48:16.3054370Z adding 'torch/include/ATen/ops/replication_pad1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3055130Z adding 'torch/include/ATen/ops/replication_pad1d_cpu_dispatch.h' 2025-08-14T20:48:16.3056020Z adding 'torch/include/ATen/ops/replication_pad1d_cuda_dispatch.h' 2025-08-14T20:48:16.3056850Z adding 'torch/include/ATen/ops/replication_pad1d_meta.h' 2025-08-14T20:48:16.3057720Z adding 'torch/include/ATen/ops/replication_pad1d_meta_dispatch.h' 2025-08-14T20:48:16.3058540Z adding 'torch/include/ATen/ops/replication_pad1d_mps_dispatch.h' 2025-08-14T20:48:16.3059410Z adding 'torch/include/ATen/ops/replication_pad1d_native.h' 2025-08-14T20:48:16.3060330Z adding 'torch/include/ATen/ops/replication_pad1d_ops.h' 2025-08-14T20:48:16.3061360Z adding 'torch/include/ATen/ops/replication_pad2d.h' 2025-08-14T20:48:16.3062480Z adding 'torch/include/ATen/ops/replication_pad2d_backward.h' 2025-08-14T20:48:16.3063460Z adding 'torch/include/ATen/ops/replication_pad2d_backward_cpu_dispatch.h' 2025-08-14T20:48:16.3064390Z adding 'torch/include/ATen/ops/replication_pad2d_backward_cuda_dispatch.h' 2025-08-14T20:48:16.3065270Z adding 'torch/include/ATen/ops/replication_pad2d_backward_mps_dispatch.h' 2025-08-14T20:48:16.3066150Z adding 'torch/include/ATen/ops/replication_pad2d_backward_native.h' 2025-08-14T20:48:16.3067110Z adding 'torch/include/ATen/ops/replication_pad2d_backward_ops.h' 2025-08-14T20:48:16.3068110Z adding 'torch/include/ATen/ops/replication_pad2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3068890Z adding 'torch/include/ATen/ops/replication_pad2d_cpu_dispatch.h' 2025-08-14T20:48:16.3069710Z adding 'torch/include/ATen/ops/replication_pad2d_cuda_dispatch.h' 2025-08-14T20:48:16.3070550Z adding 'torch/include/ATen/ops/replication_pad2d_meta.h' 2025-08-14T20:48:16.3071400Z adding 'torch/include/ATen/ops/replication_pad2d_meta_dispatch.h' 2025-08-14T20:48:16.3072230Z adding 'torch/include/ATen/ops/replication_pad2d_mps_dispatch.h' 2025-08-14T20:48:16.3073080Z adding 'torch/include/ATen/ops/replication_pad2d_native.h' 2025-08-14T20:48:16.3074010Z adding 'torch/include/ATen/ops/replication_pad2d_ops.h' 2025-08-14T20:48:16.3075050Z adding 'torch/include/ATen/ops/replication_pad3d.h' 2025-08-14T20:48:16.3076160Z adding 'torch/include/ATen/ops/replication_pad3d_backward.h' 2025-08-14T20:48:16.3077090Z adding 'torch/include/ATen/ops/replication_pad3d_backward_cpu_dispatch.h' 2025-08-14T20:48:16.3077910Z adding 'torch/include/ATen/ops/replication_pad3d_backward_cuda_dispatch.h' 2025-08-14T20:48:16.3078800Z adding 'torch/include/ATen/ops/replication_pad3d_backward_mps_dispatch.h' 2025-08-14T20:48:16.3079630Z adding 'torch/include/ATen/ops/replication_pad3d_backward_native.h' 2025-08-14T20:48:16.3080610Z adding 'torch/include/ATen/ops/replication_pad3d_backward_ops.h' 2025-08-14T20:48:16.3081590Z adding 'torch/include/ATen/ops/replication_pad3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3082370Z adding 'torch/include/ATen/ops/replication_pad3d_cpu_dispatch.h' 2025-08-14T20:48:16.3083200Z adding 'torch/include/ATen/ops/replication_pad3d_cuda_dispatch.h' 2025-08-14T20:48:16.3084060Z adding 'torch/include/ATen/ops/replication_pad3d_meta.h' 2025-08-14T20:48:16.3084960Z adding 'torch/include/ATen/ops/replication_pad3d_meta_dispatch.h' 2025-08-14T20:48:16.3085780Z adding 'torch/include/ATen/ops/replication_pad3d_mps_dispatch.h' 2025-08-14T20:48:16.3086620Z adding 'torch/include/ATen/ops/replication_pad3d_native.h' 2025-08-14T20:48:16.3087570Z adding 'torch/include/ATen/ops/replication_pad3d_ops.h' 2025-08-14T20:48:16.3088370Z adding 'torch/include/ATen/ops/requires_grad.h' 2025-08-14T20:48:16.3093900Z adding 'torch/include/ATen/ops/requires_grad_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3094120Z adding 'torch/include/ATen/ops/requires_grad_native.h' 2025-08-14T20:48:16.3094230Z adding 'torch/include/ATen/ops/requires_grad_ops.h' 2025-08-14T20:48:16.3094300Z adding 'torch/include/ATen/ops/reshape.h' 2025-08-14T20:48:16.3094370Z adding 'torch/include/ATen/ops/reshape_as.h' 2025-08-14T20:48:16.3094550Z adding 'torch/include/ATen/ops/reshape_as_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3094750Z adding 'torch/include/ATen/ops/reshape_as_compositeimplicitautogradnestedtensor_dispatch.h' 2025-08-14T20:48:16.3095340Z adding 'torch/include/ATen/ops/reshape_as_native.h' 2025-08-14T20:48:16.3096230Z adding 'torch/include/ATen/ops/reshape_as_ops.h' 2025-08-14T20:48:16.3097270Z adding 'torch/include/ATen/ops/reshape_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3098170Z adding 'torch/include/ATen/ops/reshape_compositeimplicitautogradnestedtensor_dispatch.h' 2025-08-14T20:48:16.3098890Z adding 'torch/include/ATen/ops/reshape_native.h' 2025-08-14T20:48:16.3099810Z adding 'torch/include/ATen/ops/reshape_ops.h' 2025-08-14T20:48:16.3100970Z adding 'torch/include/ATen/ops/resize.h' 2025-08-14T20:48:16.3101930Z adding 'torch/include/ATen/ops/resize_as.h' 2025-08-14T20:48:16.3102940Z adding 'torch/include/ATen/ops/resize_as_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.3103730Z adding 'torch/include/ATen/ops/resize_as_native.h' 2025-08-14T20:48:16.3104810Z adding 'torch/include/ATen/ops/resize_as_ops.h' 2025-08-14T20:48:16.3105750Z adding 'torch/include/ATen/ops/resize_as_sparse.h' 2025-08-14T20:48:16.3106810Z adding 'torch/include/ATen/ops/resize_as_sparse_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.3107590Z adding 'torch/include/ATen/ops/resize_as_sparse_meta_dispatch.h' 2025-08-14T20:48:16.3108440Z adding 'torch/include/ATen/ops/resize_as_sparse_native.h' 2025-08-14T20:48:16.3109450Z adding 'torch/include/ATen/ops/resize_as_sparse_ops.h' 2025-08-14T20:48:16.3110520Z adding 'torch/include/ATen/ops/resize_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.3111390Z adding 'torch/include/ATen/ops/resize_cpu_dispatch.h' 2025-08-14T20:48:16.3112350Z adding 'torch/include/ATen/ops/resize_cuda_dispatch.h' 2025-08-14T20:48:16.3113260Z adding 'torch/include/ATen/ops/resize_meta_dispatch.h' 2025-08-14T20:48:16.3114120Z adding 'torch/include/ATen/ops/resize_mps_dispatch.h' 2025-08-14T20:48:16.3115090Z adding 'torch/include/ATen/ops/resize_native.h' 2025-08-14T20:48:16.3116170Z adding 'torch/include/ATen/ops/resize_ops.h' 2025-08-14T20:48:16.3117090Z adding 'torch/include/ATen/ops/resolve_conj.h' 2025-08-14T20:48:16.3118210Z adding 'torch/include/ATen/ops/resolve_conj_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3119160Z adding 'torch/include/ATen/ops/resolve_conj_native.h' 2025-08-14T20:48:16.3120020Z adding 'torch/include/ATen/ops/resolve_conj_ops.h' 2025-08-14T20:48:16.3120860Z adding 'torch/include/ATen/ops/resolve_neg.h' 2025-08-14T20:48:16.3121820Z adding 'torch/include/ATen/ops/resolve_neg_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3122580Z adding 'torch/include/ATen/ops/resolve_neg_native.h' 2025-08-14T20:48:16.3123440Z adding 'torch/include/ATen/ops/resolve_neg_ops.h' 2025-08-14T20:48:16.3124380Z adding 'torch/include/ATen/ops/result_type.h' 2025-08-14T20:48:16.3125390Z adding 'torch/include/ATen/ops/result_type_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3126230Z adding 'torch/include/ATen/ops/result_type_native.h' 2025-08-14T20:48:16.3127240Z adding 'torch/include/ATen/ops/result_type_ops.h' 2025-08-14T20:48:16.3128070Z adding 'torch/include/ATen/ops/retain_grad.h' 2025-08-14T20:48:16.3129030Z adding 'torch/include/ATen/ops/retain_grad_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3129830Z adding 'torch/include/ATen/ops/retain_grad_native.h' 2025-08-14T20:48:16.3130760Z adding 'torch/include/ATen/ops/retain_grad_ops.h' 2025-08-14T20:48:16.3131590Z adding 'torch/include/ATen/ops/retains_grad.h' 2025-08-14T20:48:16.3132670Z adding 'torch/include/ATen/ops/retains_grad_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3133410Z adding 'torch/include/ATen/ops/retains_grad_native.h' 2025-08-14T20:48:16.3134320Z adding 'torch/include/ATen/ops/retains_grad_ops.h' 2025-08-14T20:48:16.3135380Z adding 'torch/include/ATen/ops/rms_norm.h' 2025-08-14T20:48:16.3136430Z adding 'torch/include/ATen/ops/rms_norm_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3137280Z adding 'torch/include/ATen/ops/rms_norm_native.h' 2025-08-14T20:48:16.3138250Z adding 'torch/include/ATen/ops/rms_norm_ops.h' 2025-08-14T20:48:16.3139230Z adding 'torch/include/ATen/ops/rnn_relu.h' 2025-08-14T20:48:16.3140100Z adding 'torch/include/ATen/ops/rnn_relu_cell.h' 2025-08-14T20:48:16.3141080Z adding 'torch/include/ATen/ops/rnn_relu_cell_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3141860Z adding 'torch/include/ATen/ops/rnn_relu_cell_native.h' 2025-08-14T20:48:16.3142790Z adding 'torch/include/ATen/ops/rnn_relu_cell_ops.h' 2025-08-14T20:48:16.3143810Z adding 'torch/include/ATen/ops/rnn_relu_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3144700Z adding 'torch/include/ATen/ops/rnn_relu_native.h' 2025-08-14T20:48:16.3145740Z adding 'torch/include/ATen/ops/rnn_relu_ops.h' 2025-08-14T20:48:16.3146700Z adding 'torch/include/ATen/ops/rnn_tanh.h' 2025-08-14T20:48:16.3147580Z adding 'torch/include/ATen/ops/rnn_tanh_cell.h' 2025-08-14T20:48:16.3148540Z adding 'torch/include/ATen/ops/rnn_tanh_cell_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3149290Z adding 'torch/include/ATen/ops/rnn_tanh_cell_native.h' 2025-08-14T20:48:16.3150260Z adding 'torch/include/ATen/ops/rnn_tanh_cell_ops.h' 2025-08-14T20:48:16.3151220Z adding 'torch/include/ATen/ops/rnn_tanh_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3155290Z adding 'torch/include/ATen/ops/rnn_tanh_native.h' 2025-08-14T20:48:16.3156070Z adding 'torch/include/ATen/ops/rnn_tanh_ops.h' 2025-08-14T20:48:16.3157110Z adding 'torch/include/ATen/ops/roll.h' 2025-08-14T20:48:16.3158090Z adding 'torch/include/ATen/ops/roll_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.3158910Z adding 'torch/include/ATen/ops/roll_cpu_dispatch.h' 2025-08-14T20:48:16.3159780Z adding 'torch/include/ATen/ops/roll_cuda_dispatch.h' 2025-08-14T20:48:16.3160640Z adding 'torch/include/ATen/ops/roll_mps_dispatch.h' 2025-08-14T20:48:16.3161490Z adding 'torch/include/ATen/ops/roll_native.h' 2025-08-14T20:48:16.3162430Z adding 'torch/include/ATen/ops/roll_ops.h' 2025-08-14T20:48:16.3163320Z adding 'torch/include/ATen/ops/rot90.h' 2025-08-14T20:48:16.3164320Z adding 'torch/include/ATen/ops/rot90_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.3165070Z adding 'torch/include/ATen/ops/rot90_native.h' 2025-08-14T20:48:16.3166020Z adding 'torch/include/ATen/ops/rot90_ops.h' 2025-08-14T20:48:16.3167040Z adding 'torch/include/ATen/ops/round.h' 2025-08-14T20:48:16.3168180Z adding 'torch/include/ATen/ops/round_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3168900Z adding 'torch/include/ATen/ops/round_cpu_dispatch.h' 2025-08-14T20:48:16.3169700Z adding 'torch/include/ATen/ops/round_cuda_dispatch.h' 2025-08-14T20:48:16.3170590Z adding 'torch/include/ATen/ops/round_meta.h' 2025-08-14T20:48:16.3171480Z adding 'torch/include/ATen/ops/round_meta_dispatch.h' 2025-08-14T20:48:16.3172280Z adding 'torch/include/ATen/ops/round_mps_dispatch.h' 2025-08-14T20:48:16.3173140Z adding 'torch/include/ATen/ops/round_native.h' 2025-08-14T20:48:16.3174200Z adding 'torch/include/ATen/ops/round_ops.h' 2025-08-14T20:48:16.3175030Z adding 'torch/include/ATen/ops/row_indices.h' 2025-08-14T20:48:16.3176000Z adding 'torch/include/ATen/ops/row_indices_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.3176770Z adding 'torch/include/ATen/ops/row_indices_copy.h' 2025-08-14T20:48:16.3177720Z adding 'torch/include/ATen/ops/row_indices_copy_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.3178630Z adding 'torch/include/ATen/ops/row_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3179330Z adding 'torch/include/ATen/ops/row_indices_copy_native.h' 2025-08-14T20:48:16.3180250Z adding 'torch/include/ATen/ops/row_indices_copy_ops.h' 2025-08-14T20:48:16.3181080Z adding 'torch/include/ATen/ops/row_indices_native.h' 2025-08-14T20:48:16.3182000Z adding 'torch/include/ATen/ops/row_indices_ops.h' 2025-08-14T20:48:16.3182850Z adding 'torch/include/ATen/ops/row_stack.h' 2025-08-14T20:48:16.3183840Z adding 'torch/include/ATen/ops/row_stack_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3184600Z adding 'torch/include/ATen/ops/row_stack_native.h' 2025-08-14T20:48:16.3185560Z adding 'torch/include/ATen/ops/row_stack_ops.h' 2025-08-14T20:48:16.3186450Z adding 'torch/include/ATen/ops/rrelu.h' 2025-08-14T20:48:16.3187410Z adding 'torch/include/ATen/ops/rrelu_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3188180Z adding 'torch/include/ATen/ops/rrelu_native.h' 2025-08-14T20:48:16.3189140Z adding 'torch/include/ATen/ops/rrelu_ops.h' 2025-08-14T20:48:16.3190190Z adding 'torch/include/ATen/ops/rrelu_with_noise.h' 2025-08-14T20:48:16.3191190Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward.h' 2025-08-14T20:48:16.3192190Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.3192960Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward_native.h' 2025-08-14T20:48:16.3193940Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward_ops.h' 2025-08-14T20:48:16.3194910Z adding 'torch/include/ATen/ops/rrelu_with_noise_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.3195840Z adding 'torch/include/ATen/ops/rrelu_with_noise_cpu_dispatch.h' 2025-08-14T20:48:16.3196640Z adding 'torch/include/ATen/ops/rrelu_with_noise_cuda_dispatch.h' 2025-08-14T20:48:16.3197530Z adding 'torch/include/ATen/ops/rrelu_with_noise_meta_dispatch.h' 2025-08-14T20:48:16.3198440Z adding 'torch/include/ATen/ops/rrelu_with_noise_native.h' 2025-08-14T20:48:16.3199580Z adding 'torch/include/ATen/ops/rrelu_with_noise_ops.h' 2025-08-14T20:48:16.3200500Z adding 'torch/include/ATen/ops/rshift.h' 2025-08-14T20:48:16.3201490Z adding 'torch/include/ATen/ops/rshift_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.3202340Z adding 'torch/include/ATen/ops/rshift_cpu_dispatch.h' 2025-08-14T20:48:16.3203170Z adding 'torch/include/ATen/ops/rshift_cuda_dispatch.h' 2025-08-14T20:48:16.3204040Z adding 'torch/include/ATen/ops/rshift_meta_dispatch.h' 2025-08-14T20:48:16.3204850Z adding 'torch/include/ATen/ops/rshift_mps_dispatch.h' 2025-08-14T20:48:16.3205730Z adding 'torch/include/ATen/ops/rshift_native.h' 2025-08-14T20:48:16.3206810Z adding 'torch/include/ATen/ops/rshift_ops.h' 2025-08-14T20:48:16.3207730Z adding 'torch/include/ATen/ops/rsqrt.h' 2025-08-14T20:48:16.3208730Z adding 'torch/include/ATen/ops/rsqrt_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3209530Z adding 'torch/include/ATen/ops/rsqrt_cpu_dispatch.h' 2025-08-14T20:48:16.3210380Z adding 'torch/include/ATen/ops/rsqrt_cuda_dispatch.h' 2025-08-14T20:48:16.3211180Z adding 'torch/include/ATen/ops/rsqrt_meta.h' 2025-08-14T20:48:16.3212010Z adding 'torch/include/ATen/ops/rsqrt_meta_dispatch.h' 2025-08-14T20:48:16.3212830Z adding 'torch/include/ATen/ops/rsqrt_mps_dispatch.h' 2025-08-14T20:48:16.3213650Z adding 'torch/include/ATen/ops/rsqrt_native.h' 2025-08-14T20:48:16.3214610Z adding 'torch/include/ATen/ops/rsqrt_ops.h' 2025-08-14T20:48:16.3215550Z adding 'torch/include/ATen/ops/rsub.h' 2025-08-14T20:48:16.3216550Z adding 'torch/include/ATen/ops/rsub_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.3217320Z adding 'torch/include/ATen/ops/rsub_cpu_dispatch.h' 2025-08-14T20:48:16.3218120Z adding 'torch/include/ATen/ops/rsub_cuda_dispatch.h' 2025-08-14T20:48:16.3218930Z adding 'torch/include/ATen/ops/rsub_mps_dispatch.h' 2025-08-14T20:48:16.3219770Z adding 'torch/include/ATen/ops/rsub_native.h' 2025-08-14T20:48:16.3220800Z adding 'torch/include/ATen/ops/rsub_ops.h' 2025-08-14T20:48:16.3221780Z adding 'torch/include/ATen/ops/scalar_tensor.h' 2025-08-14T20:48:16.3222780Z adding 'torch/include/ATen/ops/scalar_tensor_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.3223560Z adding 'torch/include/ATen/ops/scalar_tensor_native.h' 2025-08-14T20:48:16.3224520Z adding 'torch/include/ATen/ops/scalar_tensor_ops.h' 2025-08-14T20:48:16.3225480Z adding 'torch/include/ATen/ops/scaled_dot_product_attention.h' 2025-08-14T20:48:16.3226490Z adding 'torch/include/ATen/ops/scaled_dot_product_attention_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3227250Z adding 'torch/include/ATen/ops/scaled_dot_product_attention_native.h' 2025-08-14T20:48:16.3228200Z adding 'torch/include/ATen/ops/scaled_dot_product_attention_ops.h' 2025-08-14T20:48:16.3229280Z adding 'torch/include/ATen/ops/scatter.h' 2025-08-14T20:48:16.3230220Z adding 'torch/include/ATen/ops/scatter_add.h' 2025-08-14T20:48:16.3231230Z adding 'torch/include/ATen/ops/scatter_add_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3232080Z adding 'torch/include/ATen/ops/scatter_add_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3232880Z adding 'torch/include/ATen/ops/scatter_add_cpu_dispatch.h' 2025-08-14T20:48:16.3233740Z adding 'torch/include/ATen/ops/scatter_add_cuda_dispatch.h' 2025-08-14T20:48:16.3234570Z adding 'torch/include/ATen/ops/scatter_add_meta.h' 2025-08-14T20:48:16.3235490Z adding 'torch/include/ATen/ops/scatter_add_meta_dispatch.h' 2025-08-14T20:48:16.3236320Z adding 'torch/include/ATen/ops/scatter_add_mps_dispatch.h' 2025-08-14T20:48:16.3237180Z adding 'torch/include/ATen/ops/scatter_add_native.h' 2025-08-14T20:48:16.3238260Z adding 'torch/include/ATen/ops/scatter_add_ops.h' 2025-08-14T20:48:16.3239360Z adding 'torch/include/ATen/ops/scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3240160Z adding 'torch/include/ATen/ops/scatter_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3241080Z adding 'torch/include/ATen/ops/scatter_cpu_dispatch.h' 2025-08-14T20:48:16.3242000Z adding 'torch/include/ATen/ops/scatter_cuda_dispatch.h' 2025-08-14T20:48:16.3242880Z adding 'torch/include/ATen/ops/scatter_meta.h' 2025-08-14T20:48:16.3243850Z adding 'torch/include/ATen/ops/scatter_meta_dispatch.h' 2025-08-14T20:48:16.3244750Z adding 'torch/include/ATen/ops/scatter_mps_dispatch.h' 2025-08-14T20:48:16.3245730Z adding 'torch/include/ATen/ops/scatter_native.h' 2025-08-14T20:48:16.3247620Z adding 'torch/include/ATen/ops/scatter_ops.h' 2025-08-14T20:48:16.3248340Z adding 'torch/include/ATen/ops/scatter_reduce.h' 2025-08-14T20:48:16.3249380Z adding 'torch/include/ATen/ops/scatter_reduce_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3250220Z adding 'torch/include/ATen/ops/scatter_reduce_cpu_dispatch.h' 2025-08-14T20:48:16.3251120Z adding 'torch/include/ATen/ops/scatter_reduce_cuda_dispatch.h' 2025-08-14T20:48:16.3252040Z adding 'torch/include/ATen/ops/scatter_reduce_meta.h' 2025-08-14T20:48:16.3252950Z adding 'torch/include/ATen/ops/scatter_reduce_meta_dispatch.h' 2025-08-14T20:48:16.3253760Z adding 'torch/include/ATen/ops/scatter_reduce_mps_dispatch.h' 2025-08-14T20:48:16.3254610Z adding 'torch/include/ATen/ops/scatter_reduce_native.h' 2025-08-14T20:48:16.3255630Z adding 'torch/include/ATen/ops/scatter_reduce_ops.h' 2025-08-14T20:48:16.3256680Z adding 'torch/include/ATen/ops/searchsorted.h' 2025-08-14T20:48:16.3257650Z adding 'torch/include/ATen/ops/searchsorted_cpu_dispatch.h' 2025-08-14T20:48:16.3258550Z adding 'torch/include/ATen/ops/searchsorted_cuda_dispatch.h' 2025-08-14T20:48:16.3259450Z adding 'torch/include/ATen/ops/searchsorted_mps_dispatch.h' 2025-08-14T20:48:16.3260400Z adding 'torch/include/ATen/ops/searchsorted_native.h' 2025-08-14T20:48:16.3261540Z adding 'torch/include/ATen/ops/searchsorted_ops.h' 2025-08-14T20:48:16.3262550Z adding 'torch/include/ATen/ops/segment_reduce.h' 2025-08-14T20:48:16.3263610Z adding 'torch/include/ATen/ops/segment_reduce_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.3264430Z adding 'torch/include/ATen/ops/segment_reduce_cpu_dispatch.h' 2025-08-14T20:48:16.3265290Z adding 'torch/include/ATen/ops/segment_reduce_cuda_dispatch.h' 2025-08-14T20:48:16.3266210Z adding 'torch/include/ATen/ops/segment_reduce_native.h' 2025-08-14T20:48:16.3267260Z adding 'torch/include/ATen/ops/segment_reduce_ops.h' 2025-08-14T20:48:16.3268200Z adding 'torch/include/ATen/ops/select.h' 2025-08-14T20:48:16.3269300Z adding 'torch/include/ATen/ops/select_backward.h' 2025-08-14T20:48:16.3270340Z adding 'torch/include/ATen/ops/select_backward_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.3271270Z adding 'torch/include/ATen/ops/select_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3272030Z adding 'torch/include/ATen/ops/select_backward_native.h' 2025-08-14T20:48:16.3272990Z adding 'torch/include/ATen/ops/select_backward_ops.h' 2025-08-14T20:48:16.3273960Z adding 'torch/include/ATen/ops/select_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.3274820Z adding 'torch/include/ATen/ops/select_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3275830Z adding 'torch/include/ATen/ops/select_copy.h' 2025-08-14T20:48:16.3276810Z adding 'torch/include/ATen/ops/select_copy_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.3277720Z adding 'torch/include/ATen/ops/select_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3278520Z adding 'torch/include/ATen/ops/select_copy_native.h' 2025-08-14T20:48:16.3279450Z adding 'torch/include/ATen/ops/select_copy_ops.h' 2025-08-14T20:48:16.3280300Z adding 'torch/include/ATen/ops/select_native.h' 2025-08-14T20:48:16.3281280Z adding 'torch/include/ATen/ops/select_ops.h' 2025-08-14T20:48:16.3282370Z adding 'torch/include/ATen/ops/select_scatter.h' 2025-08-14T20:48:16.3283400Z adding 'torch/include/ATen/ops/select_scatter_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.3284330Z adding 'torch/include/ATen/ops/select_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3285090Z adding 'torch/include/ATen/ops/select_scatter_native.h' 2025-08-14T20:48:16.3286030Z adding 'torch/include/ATen/ops/select_scatter_ops.h' 2025-08-14T20:48:16.3286850Z adding 'torch/include/ATen/ops/selu.h' 2025-08-14T20:48:16.3287800Z adding 'torch/include/ATen/ops/selu_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3288550Z adding 'torch/include/ATen/ops/selu_native.h' 2025-08-14T20:48:16.3289450Z adding 'torch/include/ATen/ops/selu_ops.h' 2025-08-14T20:48:16.3290820Z adding 'torch/include/ATen/ops/set.h' 2025-08-14T20:48:16.3291900Z adding 'torch/include/ATen/ops/set_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.3292840Z adding 'torch/include/ATen/ops/set_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3293690Z adding 'torch/include/ATen/ops/set_cpu_dispatch.h' 2025-08-14T20:48:16.3294490Z adding 'torch/include/ATen/ops/set_cuda_dispatch.h' 2025-08-14T20:48:16.3295290Z adding 'torch/include/ATen/ops/set_data.h' 2025-08-14T20:48:16.3296300Z adding 'torch/include/ATen/ops/set_data_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3297000Z adding 'torch/include/ATen/ops/set_data_native.h' 2025-08-14T20:48:16.3297880Z adding 'torch/include/ATen/ops/set_data_ops.h' 2025-08-14T20:48:16.3298740Z adding 'torch/include/ATen/ops/set_meta_dispatch.h' 2025-08-14T20:48:16.3299560Z adding 'torch/include/ATen/ops/set_mps_dispatch.h' 2025-08-14T20:48:16.3300510Z adding 'torch/include/ATen/ops/set_native.h' 2025-08-14T20:48:16.3302150Z adding 'torch/include/ATen/ops/set_ops.h' 2025-08-14T20:48:16.3302840Z adding 'torch/include/ATen/ops/sgn.h' 2025-08-14T20:48:16.3303850Z adding 'torch/include/ATen/ops/sgn_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3304600Z adding 'torch/include/ATen/ops/sgn_cpu_dispatch.h' 2025-08-14T20:48:16.3305390Z adding 'torch/include/ATen/ops/sgn_cuda_dispatch.h' 2025-08-14T20:48:16.3306210Z adding 'torch/include/ATen/ops/sgn_meta.h' 2025-08-14T20:48:16.3307030Z adding 'torch/include/ATen/ops/sgn_meta_dispatch.h' 2025-08-14T20:48:16.3307820Z adding 'torch/include/ATen/ops/sgn_mps_dispatch.h' 2025-08-14T20:48:16.3308700Z adding 'torch/include/ATen/ops/sgn_native.h' 2025-08-14T20:48:16.3309640Z adding 'torch/include/ATen/ops/sgn_ops.h' 2025-08-14T20:48:16.3310550Z adding 'torch/include/ATen/ops/sigmoid.h' 2025-08-14T20:48:16.3311450Z adding 'torch/include/ATen/ops/sigmoid_backward.h' 2025-08-14T20:48:16.3312480Z adding 'torch/include/ATen/ops/sigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3313240Z adding 'torch/include/ATen/ops/sigmoid_backward_cpu_dispatch.h' 2025-08-14T20:48:16.3314070Z adding 'torch/include/ATen/ops/sigmoid_backward_cuda_dispatch.h' 2025-08-14T20:48:16.3314900Z adding 'torch/include/ATen/ops/sigmoid_backward_meta.h' 2025-08-14T20:48:16.3315800Z adding 'torch/include/ATen/ops/sigmoid_backward_meta_dispatch.h' 2025-08-14T20:48:16.3316630Z adding 'torch/include/ATen/ops/sigmoid_backward_mps_dispatch.h' 2025-08-14T20:48:16.3317550Z adding 'torch/include/ATen/ops/sigmoid_backward_native.h' 2025-08-14T20:48:16.3318570Z adding 'torch/include/ATen/ops/sigmoid_backward_ops.h' 2025-08-14T20:48:16.3319600Z adding 'torch/include/ATen/ops/sigmoid_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3320370Z adding 'torch/include/ATen/ops/sigmoid_cpu_dispatch.h' 2025-08-14T20:48:16.3321190Z adding 'torch/include/ATen/ops/sigmoid_cuda_dispatch.h' 2025-08-14T20:48:16.3321980Z adding 'torch/include/ATen/ops/sigmoid_meta.h' 2025-08-14T20:48:16.3322800Z adding 'torch/include/ATen/ops/sigmoid_meta_dispatch.h' 2025-08-14T20:48:16.3323600Z adding 'torch/include/ATen/ops/sigmoid_mps_dispatch.h' 2025-08-14T20:48:16.3324460Z adding 'torch/include/ATen/ops/sigmoid_native.h' 2025-08-14T20:48:16.3325490Z adding 'torch/include/ATen/ops/sigmoid_ops.h' 2025-08-14T20:48:16.3326370Z adding 'torch/include/ATen/ops/sign.h' 2025-08-14T20:48:16.3327330Z adding 'torch/include/ATen/ops/sign_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3328030Z adding 'torch/include/ATen/ops/sign_cpu_dispatch.h' 2025-08-14T20:48:16.3328840Z adding 'torch/include/ATen/ops/sign_cuda_dispatch.h' 2025-08-14T20:48:16.3329670Z adding 'torch/include/ATen/ops/sign_meta.h' 2025-08-14T20:48:16.3330490Z adding 'torch/include/ATen/ops/sign_meta_dispatch.h' 2025-08-14T20:48:16.3331280Z adding 'torch/include/ATen/ops/sign_mps_dispatch.h' 2025-08-14T20:48:16.3332130Z adding 'torch/include/ATen/ops/sign_native.h' 2025-08-14T20:48:16.3333080Z adding 'torch/include/ATen/ops/sign_ops.h' 2025-08-14T20:48:16.3333960Z adding 'torch/include/ATen/ops/signbit.h' 2025-08-14T20:48:16.3334950Z adding 'torch/include/ATen/ops/signbit_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3335710Z adding 'torch/include/ATen/ops/signbit_cpu_dispatch.h' 2025-08-14T20:48:16.3336550Z adding 'torch/include/ATen/ops/signbit_cuda_dispatch.h' 2025-08-14T20:48:16.3337330Z adding 'torch/include/ATen/ops/signbit_meta.h' 2025-08-14T20:48:16.3338170Z adding 'torch/include/ATen/ops/signbit_meta_dispatch.h' 2025-08-14T20:48:16.3339000Z adding 'torch/include/ATen/ops/signbit_mps_dispatch.h' 2025-08-14T20:48:16.3339810Z adding 'torch/include/ATen/ops/signbit_native.h' 2025-08-14T20:48:16.3340730Z adding 'torch/include/ATen/ops/signbit_ops.h' 2025-08-14T20:48:16.3341630Z adding 'torch/include/ATen/ops/silu.h' 2025-08-14T20:48:16.3342530Z adding 'torch/include/ATen/ops/silu_backward.h' 2025-08-14T20:48:16.3343530Z adding 'torch/include/ATen/ops/silu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3344330Z adding 'torch/include/ATen/ops/silu_backward_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3345130Z adding 'torch/include/ATen/ops/silu_backward_cpu_dispatch.h' 2025-08-14T20:48:16.3345970Z adding 'torch/include/ATen/ops/silu_backward_cuda_dispatch.h' 2025-08-14T20:48:16.3346790Z adding 'torch/include/ATen/ops/silu_backward_meta.h' 2025-08-14T20:48:16.3347620Z adding 'torch/include/ATen/ops/silu_backward_meta_dispatch.h' 2025-08-14T20:48:16.3348470Z adding 'torch/include/ATen/ops/silu_backward_mps_dispatch.h' 2025-08-14T20:48:16.3349300Z adding 'torch/include/ATen/ops/silu_backward_native.h' 2025-08-14T20:48:16.3350230Z adding 'torch/include/ATen/ops/silu_backward_ops.h' 2025-08-14T20:48:16.3351190Z adding 'torch/include/ATen/ops/silu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3351900Z adding 'torch/include/ATen/ops/silu_cpu_dispatch.h' 2025-08-14T20:48:16.3352700Z adding 'torch/include/ATen/ops/silu_cuda_dispatch.h' 2025-08-14T20:48:16.3353520Z adding 'torch/include/ATen/ops/silu_meta.h' 2025-08-14T20:48:16.3354320Z adding 'torch/include/ATen/ops/silu_meta_dispatch.h' 2025-08-14T20:48:16.3355110Z adding 'torch/include/ATen/ops/silu_mps_dispatch.h' 2025-08-14T20:48:16.3355960Z adding 'torch/include/ATen/ops/silu_native.h' 2025-08-14T20:48:16.3356900Z adding 'torch/include/ATen/ops/silu_ops.h' 2025-08-14T20:48:16.3357790Z adding 'torch/include/ATen/ops/sin.h' 2025-08-14T20:48:16.3358750Z adding 'torch/include/ATen/ops/sin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3359470Z adding 'torch/include/ATen/ops/sin_cpu_dispatch.h' 2025-08-14T20:48:16.3360280Z adding 'torch/include/ATen/ops/sin_cuda_dispatch.h' 2025-08-14T20:48:16.3361090Z adding 'torch/include/ATen/ops/sin_meta.h' 2025-08-14T20:48:16.3361900Z adding 'torch/include/ATen/ops/sin_meta_dispatch.h' 2025-08-14T20:48:16.3363010Z adding 'torch/include/ATen/ops/sin_mps_dispatch.h' 2025-08-14T20:48:16.3363870Z adding 'torch/include/ATen/ops/sin_native.h' 2025-08-14T20:48:16.3364810Z adding 'torch/include/ATen/ops/sin_ops.h' 2025-08-14T20:48:16.3365690Z adding 'torch/include/ATen/ops/sinc.h' 2025-08-14T20:48:16.3366670Z adding 'torch/include/ATen/ops/sinc_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3367430Z adding 'torch/include/ATen/ops/sinc_cpu_dispatch.h' 2025-08-14T20:48:16.3368220Z adding 'torch/include/ATen/ops/sinc_cuda_dispatch.h' 2025-08-14T20:48:16.3369030Z adding 'torch/include/ATen/ops/sinc_meta.h' 2025-08-14T20:48:16.3369850Z adding 'torch/include/ATen/ops/sinc_meta_dispatch.h' 2025-08-14T20:48:16.3370670Z adding 'torch/include/ATen/ops/sinc_mps_dispatch.h' 2025-08-14T20:48:16.3371460Z adding 'torch/include/ATen/ops/sinc_native.h' 2025-08-14T20:48:16.3372420Z adding 'torch/include/ATen/ops/sinc_ops.h' 2025-08-14T20:48:16.3373270Z adding 'torch/include/ATen/ops/sinh.h' 2025-08-14T20:48:16.3374240Z adding 'torch/include/ATen/ops/sinh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3374960Z adding 'torch/include/ATen/ops/sinh_cpu_dispatch.h' 2025-08-14T20:48:16.3375750Z adding 'torch/include/ATen/ops/sinh_cuda_dispatch.h' 2025-08-14T20:48:16.3376550Z adding 'torch/include/ATen/ops/sinh_meta.h' 2025-08-14T20:48:16.3377410Z adding 'torch/include/ATen/ops/sinh_meta_dispatch.h' 2025-08-14T20:48:16.3378190Z adding 'torch/include/ATen/ops/sinh_mps_dispatch.h' 2025-08-14T20:48:16.3379040Z adding 'torch/include/ATen/ops/sinh_native.h' 2025-08-14T20:48:16.3379970Z adding 'torch/include/ATen/ops/sinh_ops.h' 2025-08-14T20:48:16.3380860Z adding 'torch/include/ATen/ops/size.h' 2025-08-14T20:48:16.3381780Z adding 'torch/include/ATen/ops/size_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3382540Z adding 'torch/include/ATen/ops/size_native.h' 2025-08-14T20:48:16.3383450Z adding 'torch/include/ATen/ops/size_ops.h' 2025-08-14T20:48:16.3384450Z adding 'torch/include/ATen/ops/slice.h' 2025-08-14T20:48:16.3385680Z adding 'torch/include/ATen/ops/slice_backward.h' 2025-08-14T20:48:16.3386740Z adding 'torch/include/ATen/ops/slice_backward_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.3387510Z adding 'torch/include/ATen/ops/slice_backward_native.h' 2025-08-14T20:48:16.3388470Z adding 'torch/include/ATen/ops/slice_backward_ops.h' 2025-08-14T20:48:16.3389440Z adding 'torch/include/ATen/ops/slice_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.3390510Z adding 'torch/include/ATen/ops/slice_copy.h' 2025-08-14T20:48:16.3391530Z adding 'torch/include/ATen/ops/slice_copy_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.3392460Z adding 'torch/include/ATen/ops/slice_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3393220Z adding 'torch/include/ATen/ops/slice_copy_native.h' 2025-08-14T20:48:16.3394190Z adding 'torch/include/ATen/ops/slice_copy_ops.h' 2025-08-14T20:48:16.3395160Z adding 'torch/include/ATen/ops/slice_inverse.h' 2025-08-14T20:48:16.3396140Z adding 'torch/include/ATen/ops/slice_inverse_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.3396920Z adding 'torch/include/ATen/ops/slice_inverse_native.h' 2025-08-14T20:48:16.3397900Z adding 'torch/include/ATen/ops/slice_inverse_ops.h' 2025-08-14T20:48:16.3398750Z adding 'torch/include/ATen/ops/slice_native.h' 2025-08-14T20:48:16.3399660Z adding 'torch/include/ATen/ops/slice_ops.h' 2025-08-14T20:48:16.3400830Z adding 'torch/include/ATen/ops/slice_scatter.h' 2025-08-14T20:48:16.3401860Z adding 'torch/include/ATen/ops/slice_scatter_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.3402810Z adding 'torch/include/ATen/ops/slice_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3403540Z adding 'torch/include/ATen/ops/slice_scatter_native.h' 2025-08-14T20:48:16.3404540Z adding 'torch/include/ATen/ops/slice_scatter_ops.h' 2025-08-14T20:48:16.3405440Z adding 'torch/include/ATen/ops/slogdet.h' 2025-08-14T20:48:16.3406420Z adding 'torch/include/ATen/ops/slogdet_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3407170Z adding 'torch/include/ATen/ops/slogdet_native.h' 2025-08-14T20:48:16.3408120Z adding 'torch/include/ATen/ops/slogdet_ops.h' 2025-08-14T20:48:16.3409310Z adding 'torch/include/ATen/ops/slow_conv3d.h' 2025-08-14T20:48:16.3410380Z adding 'torch/include/ATen/ops/slow_conv3d_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3411510Z adding 'torch/include/ATen/ops/slow_conv3d_forward.h' 2025-08-14T20:48:16.3412490Z adding 'torch/include/ATen/ops/slow_conv3d_forward_cpu_dispatch.h' 2025-08-14T20:48:16.3413320Z adding 'torch/include/ATen/ops/slow_conv3d_forward_native.h' 2025-08-14T20:48:16.3414320Z adding 'torch/include/ATen/ops/slow_conv3d_forward_ops.h' 2025-08-14T20:48:16.3415180Z adding 'torch/include/ATen/ops/slow_conv3d_native.h' 2025-08-14T20:48:16.3416160Z adding 'torch/include/ATen/ops/slow_conv3d_ops.h' 2025-08-14T20:48:16.3417480Z adding 'torch/include/ATen/ops/slow_conv_dilated2d.h' 2025-08-14T20:48:16.3418540Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.3419420Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_cpu_dispatch.h' 2025-08-14T20:48:16.3420340Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_cuda_dispatch.h' 2025-08-14T20:48:16.3421260Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_native.h' 2025-08-14T20:48:16.3422330Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_ops.h' 2025-08-14T20:48:16.3423560Z adding 'torch/include/ATen/ops/slow_conv_dilated3d.h' 2025-08-14T20:48:16.3424660Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.3425520Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_cpu_dispatch.h' 2025-08-14T20:48:16.3426390Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_cuda_dispatch.h' 2025-08-14T20:48:16.3427270Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_native.h' 2025-08-14T20:48:16.3428270Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_ops.h' 2025-08-14T20:48:16.3429570Z adding 'torch/include/ATen/ops/slow_conv_transpose2d.h' 2025-08-14T20:48:16.3430650Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3431550Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_cpu_dispatch.h' 2025-08-14T20:48:16.3432480Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_cuda_dispatch.h' 2025-08-14T20:48:16.3433340Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_meta.h' 2025-08-14T20:48:16.3434300Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_meta_dispatch.h' 2025-08-14T20:48:16.3435180Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_native.h' 2025-08-14T20:48:16.3436180Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_ops.h' 2025-08-14T20:48:16.3437440Z adding 'torch/include/ATen/ops/slow_conv_transpose3d.h' 2025-08-14T20:48:16.3438430Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_cpu_dispatch.h' 2025-08-14T20:48:16.3439340Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_cuda_dispatch.h' 2025-08-14T20:48:16.3440220Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_native.h' 2025-08-14T20:48:16.3441230Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_ops.h' 2025-08-14T20:48:16.3442050Z adding 'torch/include/ATen/ops/smm.h' 2025-08-14T20:48:16.3443000Z adding 'torch/include/ATen/ops/smm_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3443770Z adding 'torch/include/ATen/ops/smm_native.h' 2025-08-14T20:48:16.3444810Z adding 'torch/include/ATen/ops/smm_ops.h' 2025-08-14T20:48:16.3445780Z adding 'torch/include/ATen/ops/smooth_l1_loss.h' 2025-08-14T20:48:16.3446770Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward.h' 2025-08-14T20:48:16.3448030Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.3448650Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_cpu_dispatch.h' 2025-08-14T20:48:16.3449510Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_cuda_dispatch.h' 2025-08-14T20:48:16.3450330Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_mps_dispatch.h' 2025-08-14T20:48:16.3451210Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_native.h' 2025-08-14T20:48:16.3452250Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_ops.h' 2025-08-14T20:48:16.3453240Z adding 'torch/include/ATen/ops/smooth_l1_loss_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3454060Z adding 'torch/include/ATen/ops/smooth_l1_loss_cpu_dispatch.h' 2025-08-14T20:48:16.3454850Z adding 'torch/include/ATen/ops/smooth_l1_loss_cuda_dispatch.h' 2025-08-14T20:48:16.3455680Z adding 'torch/include/ATen/ops/smooth_l1_loss_meta.h' 2025-08-14T20:48:16.3456570Z adding 'torch/include/ATen/ops/smooth_l1_loss_meta_dispatch.h' 2025-08-14T20:48:16.3457390Z adding 'torch/include/ATen/ops/smooth_l1_loss_mps_dispatch.h' 2025-08-14T20:48:16.3458220Z adding 'torch/include/ATen/ops/smooth_l1_loss_native.h' 2025-08-14T20:48:16.3459170Z adding 'torch/include/ATen/ops/smooth_l1_loss_ops.h' 2025-08-14T20:48:16.3460070Z adding 'torch/include/ATen/ops/soft_margin_loss.h' 2025-08-14T20:48:16.3461010Z adding 'torch/include/ATen/ops/soft_margin_loss_backward.h' 2025-08-14T20:48:16.3462010Z adding 'torch/include/ATen/ops/soft_margin_loss_backward_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.3462770Z adding 'torch/include/ATen/ops/soft_margin_loss_backward_native.h' 2025-08-14T20:48:16.3463740Z adding 'torch/include/ATen/ops/soft_margin_loss_backward_ops.h' 2025-08-14T20:48:16.3464680Z adding 'torch/include/ATen/ops/soft_margin_loss_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.3465440Z adding 'torch/include/ATen/ops/soft_margin_loss_native.h' 2025-08-14T20:48:16.3466440Z adding 'torch/include/ATen/ops/soft_margin_loss_ops.h' 2025-08-14T20:48:16.3467290Z adding 'torch/include/ATen/ops/softmax.h' 2025-08-14T20:48:16.3468310Z adding 'torch/include/ATen/ops/softmax_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.3469250Z adding 'torch/include/ATen/ops/softmax_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3470040Z adding 'torch/include/ATen/ops/softmax_native.h' 2025-08-14T20:48:16.3471010Z adding 'torch/include/ATen/ops/softmax_ops.h' 2025-08-14T20:48:16.3471910Z adding 'torch/include/ATen/ops/softplus.h' 2025-08-14T20:48:16.3472840Z adding 'torch/include/ATen/ops/softplus_backward.h' 2025-08-14T20:48:16.3473880Z adding 'torch/include/ATen/ops/softplus_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3474640Z adding 'torch/include/ATen/ops/softplus_backward_cpu_dispatch.h' 2025-08-14T20:48:16.3475500Z adding 'torch/include/ATen/ops/softplus_backward_cuda_dispatch.h' 2025-08-14T20:48:16.3476330Z adding 'torch/include/ATen/ops/softplus_backward_meta.h' 2025-08-14T20:48:16.3477170Z adding 'torch/include/ATen/ops/softplus_backward_meta_dispatch.h' 2025-08-14T20:48:16.3478000Z adding 'torch/include/ATen/ops/softplus_backward_mps_dispatch.h' 2025-08-14T20:48:16.3478830Z adding 'torch/include/ATen/ops/softplus_backward_native.h' 2025-08-14T20:48:16.3479800Z adding 'torch/include/ATen/ops/softplus_backward_ops.h' 2025-08-14T20:48:16.3480760Z adding 'torch/include/ATen/ops/softplus_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3481510Z adding 'torch/include/ATen/ops/softplus_cpu_dispatch.h' 2025-08-14T20:48:16.3482340Z adding 'torch/include/ATen/ops/softplus_cuda_dispatch.h' 2025-08-14T20:48:16.3483190Z adding 'torch/include/ATen/ops/softplus_meta.h' 2025-08-14T20:48:16.3484070Z adding 'torch/include/ATen/ops/softplus_meta_dispatch.h' 2025-08-14T20:48:16.3484870Z adding 'torch/include/ATen/ops/softplus_mps_dispatch.h' 2025-08-14T20:48:16.3485730Z adding 'torch/include/ATen/ops/softplus_native.h' 2025-08-14T20:48:16.3486660Z adding 'torch/include/ATen/ops/softplus_ops.h' 2025-08-14T20:48:16.3487540Z adding 'torch/include/ATen/ops/softshrink.h' 2025-08-14T20:48:16.3488470Z adding 'torch/include/ATen/ops/softshrink_backward.h' 2025-08-14T20:48:16.3489480Z adding 'torch/include/ATen/ops/softshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3490230Z adding 'torch/include/ATen/ops/softshrink_backward_cpu_dispatch.h' 2025-08-14T20:48:16.3491070Z adding 'torch/include/ATen/ops/softshrink_backward_cuda_dispatch.h' 2025-08-14T20:48:16.3491890Z adding 'torch/include/ATen/ops/softshrink_backward_meta.h' 2025-08-14T20:48:16.3492760Z adding 'torch/include/ATen/ops/softshrink_backward_meta_dispatch.h' 2025-08-14T20:48:16.3493570Z adding 'torch/include/ATen/ops/softshrink_backward_mps_dispatch.h' 2025-08-14T20:48:16.3494390Z adding 'torch/include/ATen/ops/softshrink_backward_native.h' 2025-08-14T20:48:16.3495320Z adding 'torch/include/ATen/ops/softshrink_backward_ops.h' 2025-08-14T20:48:16.3496320Z adding 'torch/include/ATen/ops/softshrink_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3497070Z adding 'torch/include/ATen/ops/softshrink_cpu_dispatch.h' 2025-08-14T20:48:16.3497890Z adding 'torch/include/ATen/ops/softshrink_cuda_dispatch.h' 2025-08-14T20:48:16.3498730Z adding 'torch/include/ATen/ops/softshrink_meta.h' 2025-08-14T20:48:16.3499570Z adding 'torch/include/ATen/ops/softshrink_meta_dispatch.h' 2025-08-14T20:48:16.3500380Z adding 'torch/include/ATen/ops/softshrink_mps_dispatch.h' 2025-08-14T20:48:16.3501200Z adding 'torch/include/ATen/ops/softshrink_native.h' 2025-08-14T20:48:16.3502150Z adding 'torch/include/ATen/ops/softshrink_ops.h' 2025-08-14T20:48:16.3503260Z adding 'torch/include/ATen/ops/sort.h' 2025-08-14T20:48:16.3504260Z adding 'torch/include/ATen/ops/sort_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.3505210Z adding 'torch/include/ATen/ops/sort_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3506120Z adding 'torch/include/ATen/ops/sort_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3506920Z adding 'torch/include/ATen/ops/sort_cpu_dispatch.h' 2025-08-14T20:48:16.3507770Z adding 'torch/include/ATen/ops/sort_cuda_dispatch.h' 2025-08-14T20:48:16.3508600Z adding 'torch/include/ATen/ops/sort_meta.h' 2025-08-14T20:48:16.3509450Z adding 'torch/include/ATen/ops/sort_meta_dispatch.h' 2025-08-14T20:48:16.3510270Z adding 'torch/include/ATen/ops/sort_mps_dispatch.h' 2025-08-14T20:48:16.3511210Z adding 'torch/include/ATen/ops/sort_native.h' 2025-08-14T20:48:16.3512460Z adding 'torch/include/ATen/ops/sort_ops.h' 2025-08-14T20:48:16.3513520Z adding 'torch/include/ATen/ops/sparse_bsc_tensor.h' 2025-08-14T20:48:16.3514560Z adding 'torch/include/ATen/ops/sparse_bsc_tensor_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3515350Z adding 'torch/include/ATen/ops/sparse_bsc_tensor_native.h' 2025-08-14T20:48:16.3516390Z adding 'torch/include/ATen/ops/sparse_bsc_tensor_ops.h' 2025-08-14T20:48:16.3517380Z adding 'torch/include/ATen/ops/sparse_bsr_tensor.h' 2025-08-14T20:48:16.3518390Z adding 'torch/include/ATen/ops/sparse_bsr_tensor_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3519170Z adding 'torch/include/ATen/ops/sparse_bsr_tensor_native.h' 2025-08-14T20:48:16.3520170Z adding 'torch/include/ATen/ops/sparse_bsr_tensor_ops.h' 2025-08-14T20:48:16.3521420Z adding 'torch/include/ATen/ops/sparse_compressed_tensor.h' 2025-08-14T20:48:16.3522490Z adding 'torch/include/ATen/ops/sparse_compressed_tensor_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.3523270Z adding 'torch/include/ATen/ops/sparse_compressed_tensor_native.h' 2025-08-14T20:48:16.3524280Z adding 'torch/include/ATen/ops/sparse_compressed_tensor_ops.h' 2025-08-14T20:48:16.3525350Z adding 'torch/include/ATen/ops/sparse_coo_tensor.h' 2025-08-14T20:48:16.3526370Z adding 'torch/include/ATen/ops/sparse_coo_tensor_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.3527290Z adding 'torch/include/ATen/ops/sparse_coo_tensor_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3528100Z adding 'torch/include/ATen/ops/sparse_coo_tensor_native.h' 2025-08-14T20:48:16.3529220Z adding 'torch/include/ATen/ops/sparse_coo_tensor_ops.h' 2025-08-14T20:48:16.3530210Z adding 'torch/include/ATen/ops/sparse_csc_tensor.h' 2025-08-14T20:48:16.3531230Z adding 'torch/include/ATen/ops/sparse_csc_tensor_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3532000Z adding 'torch/include/ATen/ops/sparse_csc_tensor_native.h' 2025-08-14T20:48:16.3532990Z adding 'torch/include/ATen/ops/sparse_csc_tensor_ops.h' 2025-08-14T20:48:16.3533980Z adding 'torch/include/ATen/ops/sparse_csr_tensor.h' 2025-08-14T20:48:16.3535030Z adding 'torch/include/ATen/ops/sparse_csr_tensor_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3535830Z adding 'torch/include/ATen/ops/sparse_csr_tensor_native.h' 2025-08-14T20:48:16.3536860Z adding 'torch/include/ATen/ops/sparse_csr_tensor_ops.h' 2025-08-14T20:48:16.3537670Z adding 'torch/include/ATen/ops/sparse_dim.h' 2025-08-14T20:48:16.3538630Z adding 'torch/include/ATen/ops/sparse_dim_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.3539410Z adding 'torch/include/ATen/ops/sparse_dim_native.h' 2025-08-14T20:48:16.3540270Z adding 'torch/include/ATen/ops/sparse_dim_ops.h' 2025-08-14T20:48:16.3541190Z adding 'torch/include/ATen/ops/sparse_dim_sparsecsrmps_dispatch.h' 2025-08-14T20:48:16.3542000Z adding 'torch/include/ATen/ops/sparse_dim_sparsemps_dispatch.h' 2025-08-14T20:48:16.3542830Z adding 'torch/include/ATen/ops/sparse_mask.h' 2025-08-14T20:48:16.3543780Z adding 'torch/include/ATen/ops/sparse_mask_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.3544540Z adding 'torch/include/ATen/ops/sparse_mask_native.h' 2025-08-14T20:48:16.3545490Z adding 'torch/include/ATen/ops/sparse_mask_ops.h' 2025-08-14T20:48:16.3546410Z adding 'torch/include/ATen/ops/sparse_resize.h' 2025-08-14T20:48:16.3547350Z adding 'torch/include/ATen/ops/sparse_resize_and_clear.h' 2025-08-14T20:48:16.3548390Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.3549160Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_meta_dispatch.h' 2025-08-14T20:48:16.3549990Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_native.h' 2025-08-14T20:48:16.3551010Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_ops.h' 2025-08-14T20:48:16.3551950Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_sparsemps_dispatch.h' 2025-08-14T20:48:16.3552930Z adding 'torch/include/ATen/ops/sparse_resize_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.3553720Z adding 'torch/include/ATen/ops/sparse_resize_meta_dispatch.h' 2025-08-14T20:48:16.3554580Z adding 'torch/include/ATen/ops/sparse_resize_native.h' 2025-08-14T20:48:16.3555600Z adding 'torch/include/ATen/ops/sparse_resize_ops.h' 2025-08-14T20:48:16.3556550Z adding 'torch/include/ATen/ops/sparse_resize_sparsemps_dispatch.h' 2025-08-14T20:48:16.3557440Z adding 'torch/include/ATen/ops/sparse_sampled_addmm.h' 2025-08-14T20:48:16.3558340Z adding 'torch/include/ATen/ops/sparse_sampled_addmm_native.h' 2025-08-14T20:48:16.3559320Z adding 'torch/include/ATen/ops/sparse_sampled_addmm_ops.h' 2025-08-14T20:48:16.3560190Z adding 'torch/include/ATen/ops/special_airy_ai.h' 2025-08-14T20:48:16.3561230Z adding 'torch/include/ATen/ops/special_airy_ai_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3561990Z adding 'torch/include/ATen/ops/special_airy_ai_cpu_dispatch.h' 2025-08-14T20:48:16.3562810Z adding 'torch/include/ATen/ops/special_airy_ai_cuda_dispatch.h' 2025-08-14T20:48:16.3563640Z adding 'torch/include/ATen/ops/special_airy_ai_meta.h' 2025-08-14T20:48:16.3564550Z adding 'torch/include/ATen/ops/special_airy_ai_meta_dispatch.h' 2025-08-14T20:48:16.3565390Z adding 'torch/include/ATen/ops/special_airy_ai_native.h' 2025-08-14T20:48:16.3566320Z adding 'torch/include/ATen/ops/special_airy_ai_ops.h' 2025-08-14T20:48:16.3567230Z adding 'torch/include/ATen/ops/special_bessel_j0.h' 2025-08-14T20:48:16.3568240Z adding 'torch/include/ATen/ops/special_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3569020Z adding 'torch/include/ATen/ops/special_bessel_j0_cpu_dispatch.h' 2025-08-14T20:48:16.3569900Z adding 'torch/include/ATen/ops/special_bessel_j0_cuda_dispatch.h' 2025-08-14T20:48:16.3570820Z adding 'torch/include/ATen/ops/special_bessel_j0_meta.h' 2025-08-14T20:48:16.3571780Z adding 'torch/include/ATen/ops/special_bessel_j0_meta_dispatch.h' 2025-08-14T20:48:16.3572590Z adding 'torch/include/ATen/ops/special_bessel_j0_mps_dispatch.h' 2025-08-14T20:48:16.3573440Z adding 'torch/include/ATen/ops/special_bessel_j0_native.h' 2025-08-14T20:48:16.3575170Z adding 'torch/include/ATen/ops/special_bessel_j0_ops.h' 2025-08-14T20:48:16.3575950Z adding 'torch/include/ATen/ops/special_bessel_j1.h' 2025-08-14T20:48:16.3576980Z adding 'torch/include/ATen/ops/special_bessel_j1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3577780Z adding 'torch/include/ATen/ops/special_bessel_j1_cpu_dispatch.h' 2025-08-14T20:48:16.3578660Z adding 'torch/include/ATen/ops/special_bessel_j1_cuda_dispatch.h' 2025-08-14T20:48:16.3579530Z adding 'torch/include/ATen/ops/special_bessel_j1_meta.h' 2025-08-14T20:48:16.3580430Z adding 'torch/include/ATen/ops/special_bessel_j1_meta_dispatch.h' 2025-08-14T20:48:16.3581220Z adding 'torch/include/ATen/ops/special_bessel_j1_mps_dispatch.h' 2025-08-14T20:48:16.3582060Z adding 'torch/include/ATen/ops/special_bessel_j1_native.h' 2025-08-14T20:48:16.3583000Z adding 'torch/include/ATen/ops/special_bessel_j1_ops.h' 2025-08-14T20:48:16.3583870Z adding 'torch/include/ATen/ops/special_bessel_y0.h' 2025-08-14T20:48:16.3584870Z adding 'torch/include/ATen/ops/special_bessel_y0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3585610Z adding 'torch/include/ATen/ops/special_bessel_y0_cpu_dispatch.h' 2025-08-14T20:48:16.3586430Z adding 'torch/include/ATen/ops/special_bessel_y0_cuda_dispatch.h' 2025-08-14T20:48:16.3587250Z adding 'torch/include/ATen/ops/special_bessel_y0_meta.h' 2025-08-14T20:48:16.3588100Z adding 'torch/include/ATen/ops/special_bessel_y0_meta_dispatch.h' 2025-08-14T20:48:16.3588870Z adding 'torch/include/ATen/ops/special_bessel_y0_mps_dispatch.h' 2025-08-14T20:48:16.3589680Z adding 'torch/include/ATen/ops/special_bessel_y0_native.h' 2025-08-14T20:48:16.3590610Z adding 'torch/include/ATen/ops/special_bessel_y0_ops.h' 2025-08-14T20:48:16.3591480Z adding 'torch/include/ATen/ops/special_bessel_y1.h' 2025-08-14T20:48:16.3592470Z adding 'torch/include/ATen/ops/special_bessel_y1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3593180Z adding 'torch/include/ATen/ops/special_bessel_y1_cpu_dispatch.h' 2025-08-14T20:48:16.3593970Z adding 'torch/include/ATen/ops/special_bessel_y1_cuda_dispatch.h' 2025-08-14T20:48:16.3594810Z adding 'torch/include/ATen/ops/special_bessel_y1_meta.h' 2025-08-14T20:48:16.3595640Z adding 'torch/include/ATen/ops/special_bessel_y1_meta_dispatch.h' 2025-08-14T20:48:16.3596470Z adding 'torch/include/ATen/ops/special_bessel_y1_mps_dispatch.h' 2025-08-14T20:48:16.3597280Z adding 'torch/include/ATen/ops/special_bessel_y1_native.h' 2025-08-14T20:48:16.3598210Z adding 'torch/include/ATen/ops/special_bessel_y1_ops.h' 2025-08-14T20:48:16.3599220Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t.h' 2025-08-14T20:48:16.3600260Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.3601170Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3606590Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_cpu_dispatch.h' 2025-08-14T20:48:16.3606880Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_cuda_dispatch.h' 2025-08-14T20:48:16.3607020Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_meta.h' 2025-08-14T20:48:16.3607180Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_meta_dispatch.h' 2025-08-14T20:48:16.3607340Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_mps_dispatch.h' 2025-08-14T20:48:16.3607520Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_native.h' 2025-08-14T20:48:16.3607660Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_ops.h' 2025-08-14T20:48:16.3608110Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u.h' 2025-08-14T20:48:16.3609170Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.3610070Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3610810Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_cpu_dispatch.h' 2025-08-14T20:48:16.3611670Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_cuda_dispatch.h' 2025-08-14T20:48:16.3612490Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_meta.h' 2025-08-14T20:48:16.3613350Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_meta_dispatch.h' 2025-08-14T20:48:16.3614140Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_mps_dispatch.h' 2025-08-14T20:48:16.3615000Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_native.h' 2025-08-14T20:48:16.3616070Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_ops.h' 2025-08-14T20:48:16.3617100Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v.h' 2025-08-14T20:48:16.3618140Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.3619050Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3619850Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_cpu_dispatch.h' 2025-08-14T20:48:16.3620690Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_cuda_dispatch.h' 2025-08-14T20:48:16.3621530Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_meta.h' 2025-08-14T20:48:16.3622410Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_meta_dispatch.h' 2025-08-14T20:48:16.3623170Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_mps_dispatch.h' 2025-08-14T20:48:16.3624030Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_native.h' 2025-08-14T20:48:16.3625090Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_ops.h' 2025-08-14T20:48:16.3626100Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w.h' 2025-08-14T20:48:16.3627080Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.3627970Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3628690Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_cpu_dispatch.h' 2025-08-14T20:48:16.3629490Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_cuda_dispatch.h' 2025-08-14T20:48:16.3630300Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_meta.h' 2025-08-14T20:48:16.3631140Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_meta_dispatch.h' 2025-08-14T20:48:16.3631930Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_mps_dispatch.h' 2025-08-14T20:48:16.3632800Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_native.h' 2025-08-14T20:48:16.3633890Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_ops.h' 2025-08-14T20:48:16.3634730Z adding 'torch/include/ATen/ops/special_digamma.h' 2025-08-14T20:48:16.3635720Z adding 'torch/include/ATen/ops/special_digamma_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3636520Z adding 'torch/include/ATen/ops/special_digamma_native.h' 2025-08-14T20:48:16.3637480Z adding 'torch/include/ATen/ops/special_digamma_ops.h' 2025-08-14T20:48:16.3638380Z adding 'torch/include/ATen/ops/special_entr.h' 2025-08-14T20:48:16.3639440Z adding 'torch/include/ATen/ops/special_entr_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3640210Z adding 'torch/include/ATen/ops/special_entr_cpu_dispatch.h' 2025-08-14T20:48:16.3641020Z adding 'torch/include/ATen/ops/special_entr_cuda_dispatch.h' 2025-08-14T20:48:16.3641820Z adding 'torch/include/ATen/ops/special_entr_meta.h' 2025-08-14T20:48:16.3642650Z adding 'torch/include/ATen/ops/special_entr_meta_dispatch.h' 2025-08-14T20:48:16.3643460Z adding 'torch/include/ATen/ops/special_entr_mps_dispatch.h' 2025-08-14T20:48:16.3644300Z adding 'torch/include/ATen/ops/special_entr_native.h' 2025-08-14T20:48:16.3645210Z adding 'torch/include/ATen/ops/special_entr_ops.h' 2025-08-14T20:48:16.3646090Z adding 'torch/include/ATen/ops/special_erf.h' 2025-08-14T20:48:16.3647080Z adding 'torch/include/ATen/ops/special_erf_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3647820Z adding 'torch/include/ATen/ops/special_erf_native.h' 2025-08-14T20:48:16.3648740Z adding 'torch/include/ATen/ops/special_erf_ops.h' 2025-08-14T20:48:16.3649600Z adding 'torch/include/ATen/ops/special_erfc.h' 2025-08-14T20:48:16.3650570Z adding 'torch/include/ATen/ops/special_erfc_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3651290Z adding 'torch/include/ATen/ops/special_erfc_native.h' 2025-08-14T20:48:16.3652190Z adding 'torch/include/ATen/ops/special_erfc_ops.h' 2025-08-14T20:48:16.3653050Z adding 'torch/include/ATen/ops/special_erfcx.h' 2025-08-14T20:48:16.3654040Z adding 'torch/include/ATen/ops/special_erfcx_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3654800Z adding 'torch/include/ATen/ops/special_erfcx_cpu_dispatch.h' 2025-08-14T20:48:16.3655610Z adding 'torch/include/ATen/ops/special_erfcx_cuda_dispatch.h' 2025-08-14T20:48:16.3656420Z adding 'torch/include/ATen/ops/special_erfcx_meta.h' 2025-08-14T20:48:16.3657280Z adding 'torch/include/ATen/ops/special_erfcx_meta_dispatch.h' 2025-08-14T20:48:16.3658100Z adding 'torch/include/ATen/ops/special_erfcx_native.h' 2025-08-14T20:48:16.3659020Z adding 'torch/include/ATen/ops/special_erfcx_ops.h' 2025-08-14T20:48:16.3659920Z adding 'torch/include/ATen/ops/special_erfinv.h' 2025-08-14T20:48:16.3660860Z adding 'torch/include/ATen/ops/special_erfinv_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3661590Z adding 'torch/include/ATen/ops/special_erfinv_native.h' 2025-08-14T20:48:16.3662510Z adding 'torch/include/ATen/ops/special_erfinv_ops.h' 2025-08-14T20:48:16.3663390Z adding 'torch/include/ATen/ops/special_exp2.h' 2025-08-14T20:48:16.3664380Z adding 'torch/include/ATen/ops/special_exp2_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3665180Z adding 'torch/include/ATen/ops/special_exp2_native.h' 2025-08-14T20:48:16.3666070Z adding 'torch/include/ATen/ops/special_exp2_ops.h' 2025-08-14T20:48:16.3666960Z adding 'torch/include/ATen/ops/special_expit.h' 2025-08-14T20:48:16.3667930Z adding 'torch/include/ATen/ops/special_expit_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3668650Z adding 'torch/include/ATen/ops/special_expit_native.h' 2025-08-14T20:48:16.3669590Z adding 'torch/include/ATen/ops/special_expit_ops.h' 2025-08-14T20:48:16.3670420Z adding 'torch/include/ATen/ops/special_expm1.h' 2025-08-14T20:48:16.3671420Z adding 'torch/include/ATen/ops/special_expm1_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3672230Z adding 'torch/include/ATen/ops/special_expm1_native.h' 2025-08-14T20:48:16.3673130Z adding 'torch/include/ATen/ops/special_expm1_ops.h' 2025-08-14T20:48:16.3674060Z adding 'torch/include/ATen/ops/special_gammainc.h' 2025-08-14T20:48:16.3675070Z adding 'torch/include/ATen/ops/special_gammainc_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3675850Z adding 'torch/include/ATen/ops/special_gammainc_native.h' 2025-08-14T20:48:16.3676800Z adding 'torch/include/ATen/ops/special_gammainc_ops.h' 2025-08-14T20:48:16.3677680Z adding 'torch/include/ATen/ops/special_gammaincc.h' 2025-08-14T20:48:16.3678660Z adding 'torch/include/ATen/ops/special_gammaincc_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3679470Z adding 'torch/include/ATen/ops/special_gammaincc_native.h' 2025-08-14T20:48:16.3680430Z adding 'torch/include/ATen/ops/special_gammaincc_ops.h' 2025-08-14T20:48:16.3681290Z adding 'torch/include/ATen/ops/special_gammaln.h' 2025-08-14T20:48:16.3682260Z adding 'torch/include/ATen/ops/special_gammaln_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3683020Z adding 'torch/include/ATen/ops/special_gammaln_native.h' 2025-08-14T20:48:16.3683930Z adding 'torch/include/ATen/ops/special_gammaln_ops.h' 2025-08-14T20:48:16.3684980Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h.h' 2025-08-14T20:48:16.3686000Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.3686930Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3687660Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_cpu_dispatch.h' 2025-08-14T20:48:16.3688510Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_cuda_dispatch.h' 2025-08-14T20:48:16.3689350Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_meta.h' 2025-08-14T20:48:16.3690200Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_meta_dispatch.h' 2025-08-14T20:48:16.3691020Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_mps_dispatch.h' 2025-08-14T20:48:16.3691930Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_native.h' 2025-08-14T20:48:16.3693030Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_ops.h' 2025-08-14T20:48:16.3694050Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he.h' 2025-08-14T20:48:16.3695060Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.3695980Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3696730Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_cpu_dispatch.h' 2025-08-14T20:48:16.3697540Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_cuda_dispatch.h' 2025-08-14T20:48:16.3698390Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_meta.h' 2025-08-14T20:48:16.3699220Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_meta_dispatch.h' 2025-08-14T20:48:16.3700030Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_mps_dispatch.h' 2025-08-14T20:48:16.3700890Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_native.h' 2025-08-14T20:48:16.3701980Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_ops.h' 2025-08-14T20:48:16.3702820Z adding 'torch/include/ATen/ops/special_i0.h' 2025-08-14T20:48:16.3703770Z adding 'torch/include/ATen/ops/special_i0_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3704510Z adding 'torch/include/ATen/ops/special_i0_native.h' 2025-08-14T20:48:16.3705430Z adding 'torch/include/ATen/ops/special_i0_ops.h' 2025-08-14T20:48:16.3706310Z adding 'torch/include/ATen/ops/special_i0e.h' 2025-08-14T20:48:16.3707310Z adding 'torch/include/ATen/ops/special_i0e_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3708070Z adding 'torch/include/ATen/ops/special_i0e_cpu_dispatch.h' 2025-08-14T20:48:16.3708880Z adding 'torch/include/ATen/ops/special_i0e_cuda_dispatch.h' 2025-08-14T20:48:16.3709710Z adding 'torch/include/ATen/ops/special_i0e_meta.h' 2025-08-14T20:48:16.3710570Z adding 'torch/include/ATen/ops/special_i0e_meta_dispatch.h' 2025-08-14T20:48:16.3711380Z adding 'torch/include/ATen/ops/special_i0e_mps_dispatch.h' 2025-08-14T20:48:16.3712230Z adding 'torch/include/ATen/ops/special_i0e_native.h' 2025-08-14T20:48:16.3713170Z adding 'torch/include/ATen/ops/special_i0e_ops.h' 2025-08-14T20:48:16.3714010Z adding 'torch/include/ATen/ops/special_i1.h' 2025-08-14T20:48:16.3714990Z adding 'torch/include/ATen/ops/special_i1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3715700Z adding 'torch/include/ATen/ops/special_i1_cpu_dispatch.h' 2025-08-14T20:48:16.3716510Z adding 'torch/include/ATen/ops/special_i1_cuda_dispatch.h' 2025-08-14T20:48:16.3717320Z adding 'torch/include/ATen/ops/special_i1_meta.h' 2025-08-14T20:48:16.3718150Z adding 'torch/include/ATen/ops/special_i1_meta_dispatch.h' 2025-08-14T20:48:16.3718960Z adding 'torch/include/ATen/ops/special_i1_mps_dispatch.h' 2025-08-14T20:48:16.3719800Z adding 'torch/include/ATen/ops/special_i1_native.h' 2025-08-14T20:48:16.3720750Z adding 'torch/include/ATen/ops/special_i1_ops.h' 2025-08-14T20:48:16.3721620Z adding 'torch/include/ATen/ops/special_i1e.h' 2025-08-14T20:48:16.3722610Z adding 'torch/include/ATen/ops/special_i1e_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3723330Z adding 'torch/include/ATen/ops/special_i1e_cpu_dispatch.h' 2025-08-14T20:48:16.3724150Z adding 'torch/include/ATen/ops/special_i1e_cuda_dispatch.h' 2025-08-14T20:48:16.3724940Z adding 'torch/include/ATen/ops/special_i1e_meta.h' 2025-08-14T20:48:16.3725760Z adding 'torch/include/ATen/ops/special_i1e_meta_dispatch.h' 2025-08-14T20:48:16.3726590Z adding 'torch/include/ATen/ops/special_i1e_mps_dispatch.h' 2025-08-14T20:48:16.3727450Z adding 'torch/include/ATen/ops/special_i1e_native.h' 2025-08-14T20:48:16.3728370Z adding 'torch/include/ATen/ops/special_i1e_ops.h' 2025-08-14T20:48:16.3729430Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l.h' 2025-08-14T20:48:16.3730470Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.3731400Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3732140Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_cpu_dispatch.h' 2025-08-14T20:48:16.3732980Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_cuda_dispatch.h' 2025-08-14T20:48:16.3733830Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_meta.h' 2025-08-14T20:48:16.3734670Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_meta_dispatch.h' 2025-08-14T20:48:16.3735610Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_native.h' 2025-08-14T20:48:16.3736660Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_ops.h' 2025-08-14T20:48:16.3737670Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p.h' 2025-08-14T20:48:16.3738700Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.3739600Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3740350Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_cpu_dispatch.h' 2025-08-14T20:48:16.3741160Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_cuda_dispatch.h' 2025-08-14T20:48:16.3741990Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_meta.h' 2025-08-14T20:48:16.3742810Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_meta_dispatch.h' 2025-08-14T20:48:16.3743670Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_native.h' 2025-08-14T20:48:16.3744760Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_ops.h' 2025-08-14T20:48:16.3745600Z adding 'torch/include/ATen/ops/special_log1p.h' 2025-08-14T20:48:16.3746550Z adding 'torch/include/ATen/ops/special_log1p_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3747310Z adding 'torch/include/ATen/ops/special_log1p_native.h' 2025-08-14T20:48:16.3748230Z adding 'torch/include/ATen/ops/special_log1p_ops.h' 2025-08-14T20:48:16.3749080Z adding 'torch/include/ATen/ops/special_log_ndtr.h' 2025-08-14T20:48:16.3750090Z adding 'torch/include/ATen/ops/special_log_ndtr_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3750840Z adding 'torch/include/ATen/ops/special_log_ndtr_cpu_dispatch.h' 2025-08-14T20:48:16.3751690Z adding 'torch/include/ATen/ops/special_log_ndtr_cuda_dispatch.h' 2025-08-14T20:48:16.3752490Z adding 'torch/include/ATen/ops/special_log_ndtr_meta.h' 2025-08-14T20:48:16.3753340Z adding 'torch/include/ATen/ops/special_log_ndtr_meta_dispatch.h' 2025-08-14T20:48:16.3754160Z adding 'torch/include/ATen/ops/special_log_ndtr_native.h' 2025-08-14T20:48:16.3755080Z adding 'torch/include/ATen/ops/special_log_ndtr_ops.h' 2025-08-14T20:48:16.3755950Z adding 'torch/include/ATen/ops/special_log_softmax.h' 2025-08-14T20:48:16.3756920Z adding 'torch/include/ATen/ops/special_log_softmax_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3757690Z adding 'torch/include/ATen/ops/special_log_softmax_native.h' 2025-08-14T20:48:16.3758600Z adding 'torch/include/ATen/ops/special_log_softmax_ops.h' 2025-08-14T20:48:16.3759480Z adding 'torch/include/ATen/ops/special_logit.h' 2025-08-14T20:48:16.3760450Z adding 'torch/include/ATen/ops/special_logit_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3761260Z adding 'torch/include/ATen/ops/special_logit_native.h' 2025-08-14T20:48:16.3762180Z adding 'torch/include/ATen/ops/special_logit_ops.h' 2025-08-14T20:48:16.3763070Z adding 'torch/include/ATen/ops/special_logsumexp.h' 2025-08-14T20:48:16.3764070Z adding 'torch/include/ATen/ops/special_logsumexp_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3764830Z adding 'torch/include/ATen/ops/special_logsumexp_native.h' 2025-08-14T20:48:16.3765780Z adding 'torch/include/ATen/ops/special_logsumexp_ops.h' 2025-08-14T20:48:16.3766680Z adding 'torch/include/ATen/ops/special_modified_bessel_i0.h' 2025-08-14T20:48:16.3767680Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3768440Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_cpu_dispatch.h' 2025-08-14T20:48:16.3769250Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_cuda_dispatch.h' 2025-08-14T20:48:16.3770060Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_meta.h' 2025-08-14T20:48:16.3770900Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_meta_dispatch.h' 2025-08-14T20:48:16.3771710Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_mps_dispatch.h' 2025-08-14T20:48:16.3772590Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_native.h' 2025-08-14T20:48:16.3773450Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_ops.h' 2025-08-14T20:48:16.3774310Z adding 'torch/include/ATen/ops/special_modified_bessel_i1.h' 2025-08-14T20:48:16.3775320Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3776040Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_cpu_dispatch.h' 2025-08-14T20:48:16.3777310Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_cuda_dispatch.h' 2025-08-14T20:48:16.3778150Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_meta.h' 2025-08-14T20:48:16.3778970Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_meta_dispatch.h' 2025-08-14T20:48:16.3779770Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_mps_dispatch.h' 2025-08-14T20:48:16.3780580Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_native.h' 2025-08-14T20:48:16.3781490Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_ops.h' 2025-08-14T20:48:16.3782370Z adding 'torch/include/ATen/ops/special_modified_bessel_k0.h' 2025-08-14T20:48:16.3783390Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3784160Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_cpu_dispatch.h' 2025-08-14T20:48:16.3785020Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_cuda_dispatch.h' 2025-08-14T20:48:16.3785830Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_meta.h' 2025-08-14T20:48:16.3786680Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_meta_dispatch.h' 2025-08-14T20:48:16.3787510Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_mps_dispatch.h' 2025-08-14T20:48:16.3788340Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_native.h' 2025-08-14T20:48:16.3789260Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_ops.h' 2025-08-14T20:48:16.3790170Z adding 'torch/include/ATen/ops/special_modified_bessel_k1.h' 2025-08-14T20:48:16.3791190Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3791960Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_cpu_dispatch.h' 2025-08-14T20:48:16.3792760Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_cuda_dispatch.h' 2025-08-14T20:48:16.3793590Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_meta.h' 2025-08-14T20:48:16.3794420Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_meta_dispatch.h' 2025-08-14T20:48:16.3795220Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_mps_dispatch.h' 2025-08-14T20:48:16.3796070Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_native.h' 2025-08-14T20:48:16.3796960Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_ops.h' 2025-08-14T20:48:16.3797830Z adding 'torch/include/ATen/ops/special_multigammaln.h' 2025-08-14T20:48:16.3798840Z adding 'torch/include/ATen/ops/special_multigammaln_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3799620Z adding 'torch/include/ATen/ops/special_multigammaln_native.h' 2025-08-14T20:48:16.3800580Z adding 'torch/include/ATen/ops/special_multigammaln_ops.h' 2025-08-14T20:48:16.3801410Z adding 'torch/include/ATen/ops/special_ndtr.h' 2025-08-14T20:48:16.3802370Z adding 'torch/include/ATen/ops/special_ndtr_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3803100Z adding 'torch/include/ATen/ops/special_ndtr_native.h' 2025-08-14T20:48:16.3804010Z adding 'torch/include/ATen/ops/special_ndtr_ops.h' 2025-08-14T20:48:16.3804890Z adding 'torch/include/ATen/ops/special_ndtri.h' 2025-08-14T20:48:16.3805880Z adding 'torch/include/ATen/ops/special_ndtri_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3806630Z adding 'torch/include/ATen/ops/special_ndtri_cpu_dispatch.h' 2025-08-14T20:48:16.3807440Z adding 'torch/include/ATen/ops/special_ndtri_cuda_dispatch.h' 2025-08-14T20:48:16.3808250Z adding 'torch/include/ATen/ops/special_ndtri_meta.h' 2025-08-14T20:48:16.3809130Z adding 'torch/include/ATen/ops/special_ndtri_meta_dispatch.h' 2025-08-14T20:48:16.3809900Z adding 'torch/include/ATen/ops/special_ndtri_native.h' 2025-08-14T20:48:16.3810810Z adding 'torch/include/ATen/ops/special_ndtri_ops.h' 2025-08-14T20:48:16.3811690Z adding 'torch/include/ATen/ops/special_polygamma.h' 2025-08-14T20:48:16.3812660Z adding 'torch/include/ATen/ops/special_polygamma_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3813440Z adding 'torch/include/ATen/ops/special_polygamma_native.h' 2025-08-14T20:48:16.3814370Z adding 'torch/include/ATen/ops/special_polygamma_ops.h' 2025-08-14T20:48:16.3815230Z adding 'torch/include/ATen/ops/special_psi.h' 2025-08-14T20:48:16.3816170Z adding 'torch/include/ATen/ops/special_psi_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3817210Z adding 'torch/include/ATen/ops/special_psi_native.h' 2025-08-14T20:48:16.3818100Z adding 'torch/include/ATen/ops/special_psi_ops.h' 2025-08-14T20:48:16.3818970Z adding 'torch/include/ATen/ops/special_round.h' 2025-08-14T20:48:16.3819990Z adding 'torch/include/ATen/ops/special_round_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3820750Z adding 'torch/include/ATen/ops/special_round_native.h' 2025-08-14T20:48:16.3821690Z adding 'torch/include/ATen/ops/special_round_ops.h' 2025-08-14T20:48:16.3822640Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0.h' 2025-08-14T20:48:16.3823630Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3824370Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_cpu_dispatch.h' 2025-08-14T20:48:16.3825200Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_cuda_dispatch.h' 2025-08-14T20:48:16.3826040Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_meta.h' 2025-08-14T20:48:16.3826890Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_meta_dispatch.h' 2025-08-14T20:48:16.3827730Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_mps_dispatch.h' 2025-08-14T20:48:16.3828550Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_native.h' 2025-08-14T20:48:16.3829490Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_ops.h' 2025-08-14T20:48:16.3830380Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1.h' 2025-08-14T20:48:16.3831400Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3832110Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_cpu_dispatch.h' 2025-08-14T20:48:16.3833030Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_cuda_dispatch.h' 2025-08-14T20:48:16.3834540Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_meta.h' 2025-08-14T20:48:16.3837230Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_meta_dispatch.h' 2025-08-14T20:48:16.3838070Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_mps_dispatch.h' 2025-08-14T20:48:16.3839040Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_native.h' 2025-08-14T20:48:16.3840090Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_ops.h' 2025-08-14T20:48:16.3841450Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t.h' 2025-08-14T20:48:16.3842580Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.3843560Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3844350Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_cpu_dispatch.h' 2025-08-14T20:48:16.3845460Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_cuda_dispatch.h' 2025-08-14T20:48:16.3846340Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_meta.h' 2025-08-14T20:48:16.3847270Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_meta_dispatch.h' 2025-08-14T20:48:16.3848100Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_mps_dispatch.h' 2025-08-14T20:48:16.3849200Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_native.h' 2025-08-14T20:48:16.3850370Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_ops.h' 2025-08-14T20:48:16.3851450Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u.h' 2025-08-14T20:48:16.3852500Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.3853640Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3854420Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_cpu_dispatch.h' 2025-08-14T20:48:16.3855270Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_cuda_dispatch.h' 2025-08-14T20:48:16.3856120Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_meta.h' 2025-08-14T20:48:16.3857190Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_meta_dispatch.h' 2025-08-14T20:48:16.3858040Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_mps_dispatch.h' 2025-08-14T20:48:16.3858950Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_native.h' 2025-08-14T20:48:16.3860120Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_ops.h' 2025-08-14T20:48:16.3861370Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v.h' 2025-08-14T20:48:16.3862430Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.3863380Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3864180Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_cpu_dispatch.h' 2025-08-14T20:48:16.3865230Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_cuda_dispatch.h' 2025-08-14T20:48:16.3866110Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_meta.h' 2025-08-14T20:48:16.3866990Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_meta_dispatch.h' 2025-08-14T20:48:16.3867810Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_mps_dispatch.h' 2025-08-14T20:48:16.3868910Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_native.h' 2025-08-14T20:48:16.3870050Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_ops.h' 2025-08-14T20:48:16.3871150Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w.h' 2025-08-14T20:48:16.3872190Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.3873320Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3874070Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_cpu_dispatch.h' 2025-08-14T20:48:16.3874910Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_cuda_dispatch.h' 2025-08-14T20:48:16.3875760Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_meta.h' 2025-08-14T20:48:16.3876840Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_meta_dispatch.h' 2025-08-14T20:48:16.3877690Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_mps_dispatch.h' 2025-08-14T20:48:16.3878590Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_native.h' 2025-08-14T20:48:16.3879710Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_ops.h' 2025-08-14T20:48:16.3880800Z adding 'torch/include/ATen/ops/special_sinc.h' 2025-08-14T20:48:16.3881820Z adding 'torch/include/ATen/ops/special_sinc_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3882620Z adding 'torch/include/ATen/ops/special_sinc_native.h' 2025-08-14T20:48:16.3883560Z adding 'torch/include/ATen/ops/special_sinc_ops.h' 2025-08-14T20:48:16.3884660Z adding 'torch/include/ATen/ops/special_softmax.h' 2025-08-14T20:48:16.3885680Z adding 'torch/include/ATen/ops/special_softmax_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3886480Z adding 'torch/include/ATen/ops/special_softmax_native.h' 2025-08-14T20:48:16.3887400Z adding 'torch/include/ATen/ops/special_softmax_ops.h' 2025-08-14T20:48:16.3888550Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0.h' 2025-08-14T20:48:16.3889610Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3890370Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_cpu_dispatch.h' 2025-08-14T20:48:16.3891230Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_cuda_dispatch.h' 2025-08-14T20:48:16.3892250Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_meta.h' 2025-08-14T20:48:16.3893130Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_meta_dispatch.h' 2025-08-14T20:48:16.3893930Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_mps_dispatch.h' 2025-08-14T20:48:16.3894780Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_native.h' 2025-08-14T20:48:16.3895930Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_ops.h' 2025-08-14T20:48:16.3896940Z adding 'torch/include/ATen/ops/special_xlog1py.h' 2025-08-14T20:48:16.3897980Z adding 'torch/include/ATen/ops/special_xlog1py_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.3898910Z adding 'torch/include/ATen/ops/special_xlog1py_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3899870Z adding 'torch/include/ATen/ops/special_xlog1py_cpu_dispatch.h' 2025-08-14T20:48:16.3900730Z adding 'torch/include/ATen/ops/special_xlog1py_cuda_dispatch.h' 2025-08-14T20:48:16.3901590Z adding 'torch/include/ATen/ops/special_xlog1py_meta.h' 2025-08-14T20:48:16.3902460Z adding 'torch/include/ATen/ops/special_xlog1py_meta_dispatch.h' 2025-08-14T20:48:16.3903500Z adding 'torch/include/ATen/ops/special_xlog1py_mps_dispatch.h' 2025-08-14T20:48:16.3904400Z adding 'torch/include/ATen/ops/special_xlog1py_native.h' 2025-08-14T20:48:16.3905550Z adding 'torch/include/ATen/ops/special_xlog1py_ops.h' 2025-08-14T20:48:16.3906580Z adding 'torch/include/ATen/ops/special_xlogy.h' 2025-08-14T20:48:16.3907840Z adding 'torch/include/ATen/ops/special_xlogy_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3908680Z adding 'torch/include/ATen/ops/special_xlogy_native.h' 2025-08-14T20:48:16.3909780Z adding 'torch/include/ATen/ops/special_xlogy_ops.h' 2025-08-14T20:48:16.3910820Z adding 'torch/include/ATen/ops/special_zeta.h' 2025-08-14T20:48:16.3912020Z adding 'torch/include/ATen/ops/special_zeta_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.3912960Z adding 'torch/include/ATen/ops/special_zeta_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3913740Z adding 'torch/include/ATen/ops/special_zeta_cpu_dispatch.h' 2025-08-14T20:48:16.3914610Z adding 'torch/include/ATen/ops/special_zeta_cuda_dispatch.h' 2025-08-14T20:48:16.3915640Z adding 'torch/include/ATen/ops/special_zeta_meta.h' 2025-08-14T20:48:16.3916520Z adding 'torch/include/ATen/ops/special_zeta_meta_dispatch.h' 2025-08-14T20:48:16.3917340Z adding 'torch/include/ATen/ops/special_zeta_mps_dispatch.h' 2025-08-14T20:48:16.3918220Z adding 'torch/include/ATen/ops/special_zeta_native.h' 2025-08-14T20:48:16.3919580Z adding 'torch/include/ATen/ops/special_zeta_ops.h' 2025-08-14T20:48:16.3920590Z adding 'torch/include/ATen/ops/split.h' 2025-08-14T20:48:16.3921630Z adding 'torch/include/ATen/ops/split_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.3922520Z adding 'torch/include/ATen/ops/split_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3923730Z adding 'torch/include/ATen/ops/split_copy.h' 2025-08-14T20:48:16.3924790Z adding 'torch/include/ATen/ops/split_copy_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.3925730Z adding 'torch/include/ATen/ops/split_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3926430Z adding 'torch/include/ATen/ops/split_copy_native.h' 2025-08-14T20:48:16.3927600Z adding 'torch/include/ATen/ops/split_copy_ops.h' 2025-08-14T20:48:16.3928490Z adding 'torch/include/ATen/ops/split_native.h' 2025-08-14T20:48:16.3929450Z adding 'torch/include/ATen/ops/split_ops.h' 2025-08-14T20:48:16.3930400Z adding 'torch/include/ATen/ops/split_with_sizes.h' 2025-08-14T20:48:16.3931620Z adding 'torch/include/ATen/ops/split_with_sizes_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.3932650Z adding 'torch/include/ATen/ops/split_with_sizes_copy.h' 2025-08-14T20:48:16.3933690Z adding 'torch/include/ATen/ops/split_with_sizes_copy_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.3934700Z adding 'torch/include/ATen/ops/split_with_sizes_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3935750Z adding 'torch/include/ATen/ops/split_with_sizes_copy_cuda_dispatch.h' 2025-08-14T20:48:16.3936640Z adding 'torch/include/ATen/ops/split_with_sizes_copy_native.h' 2025-08-14T20:48:16.3937640Z adding 'torch/include/ATen/ops/split_with_sizes_copy_ops.h' 2025-08-14T20:48:16.3938530Z adding 'torch/include/ATen/ops/split_with_sizes_native.h' 2025-08-14T20:48:16.3939660Z adding 'torch/include/ATen/ops/split_with_sizes_ops.h' 2025-08-14T20:48:16.3940580Z adding 'torch/include/ATen/ops/sqrt.h' 2025-08-14T20:48:16.3941600Z adding 'torch/include/ATen/ops/sqrt_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3942380Z adding 'torch/include/ATen/ops/sqrt_cpu_dispatch.h' 2025-08-14T20:48:16.3943420Z adding 'torch/include/ATen/ops/sqrt_cuda_dispatch.h' 2025-08-14T20:48:16.3944270Z adding 'torch/include/ATen/ops/sqrt_meta.h' 2025-08-14T20:48:16.3945130Z adding 'torch/include/ATen/ops/sqrt_meta_dispatch.h' 2025-08-14T20:48:16.3945960Z adding 'torch/include/ATen/ops/sqrt_mps_dispatch.h' 2025-08-14T20:48:16.3947050Z adding 'torch/include/ATen/ops/sqrt_native.h' 2025-08-14T20:48:16.3948060Z adding 'torch/include/ATen/ops/sqrt_ops.h' 2025-08-14T20:48:16.3948970Z adding 'torch/include/ATen/ops/square.h' 2025-08-14T20:48:16.3949970Z adding 'torch/include/ATen/ops/square_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3950940Z adding 'torch/include/ATen/ops/square_native.h' 2025-08-14T20:48:16.3951960Z adding 'torch/include/ATen/ops/square_ops.h' 2025-08-14T20:48:16.3952850Z adding 'torch/include/ATen/ops/squeeze.h' 2025-08-14T20:48:16.3953850Z adding 'torch/include/ATen/ops/squeeze_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.3955000Z adding 'torch/include/ATen/ops/squeeze_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3955920Z adding 'torch/include/ATen/ops/squeeze_copy.h' 2025-08-14T20:48:16.3956940Z adding 'torch/include/ATen/ops/squeeze_copy_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.3957870Z adding 'torch/include/ATen/ops/squeeze_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3958830Z adding 'torch/include/ATen/ops/squeeze_copy_native.h' 2025-08-14T20:48:16.3959930Z adding 'torch/include/ATen/ops/squeeze_copy_ops.h' 2025-08-14T20:48:16.3960850Z adding 'torch/include/ATen/ops/squeeze_native.h' 2025-08-14T20:48:16.3961960Z adding 'torch/include/ATen/ops/squeeze_ops.h' 2025-08-14T20:48:16.3963110Z adding 'torch/include/ATen/ops/sspaddmm.h' 2025-08-14T20:48:16.3964100Z adding 'torch/include/ATen/ops/sspaddmm_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3964910Z adding 'torch/include/ATen/ops/sspaddmm_cpu_dispatch.h' 2025-08-14T20:48:16.3965750Z adding 'torch/include/ATen/ops/sspaddmm_cuda_dispatch.h' 2025-08-14T20:48:16.3966850Z adding 'torch/include/ATen/ops/sspaddmm_native.h' 2025-08-14T20:48:16.3967830Z adding 'torch/include/ATen/ops/sspaddmm_ops.h' 2025-08-14T20:48:16.3968760Z adding 'torch/include/ATen/ops/stack.h' 2025-08-14T20:48:16.3969700Z adding 'torch/include/ATen/ops/stack_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.3970700Z adding 'torch/include/ATen/ops/stack_native.h' 2025-08-14T20:48:16.3971720Z adding 'torch/include/ATen/ops/stack_ops.h' 2025-08-14T20:48:16.3972810Z adding 'torch/include/ATen/ops/std.h' 2025-08-14T20:48:16.3973960Z adding 'torch/include/ATen/ops/std_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3974990Z adding 'torch/include/ATen/ops/std_cpu_dispatch.h' 2025-08-14T20:48:16.3975850Z adding 'torch/include/ATen/ops/std_cuda_dispatch.h' 2025-08-14T20:48:16.3976900Z adding 'torch/include/ATen/ops/std_mean.h' 2025-08-14T20:48:16.3977940Z adding 'torch/include/ATen/ops/std_mean_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.3979050Z adding 'torch/include/ATen/ops/std_mean_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3979890Z adding 'torch/include/ATen/ops/std_mean_cpu_dispatch.h' 2025-08-14T20:48:16.3980740Z adding 'torch/include/ATen/ops/std_mean_cuda_dispatch.h' 2025-08-14T20:48:16.3981570Z adding 'torch/include/ATen/ops/std_mean_mps_dispatch.h' 2025-08-14T20:48:16.3982700Z adding 'torch/include/ATen/ops/std_mean_native.h' 2025-08-14T20:48:16.3983910Z adding 'torch/include/ATen/ops/std_mean_ops.h' 2025-08-14T20:48:16.3984810Z adding 'torch/include/ATen/ops/std_mps_dispatch.h' 2025-08-14T20:48:16.3985740Z adding 'torch/include/ATen/ops/std_native.h' 2025-08-14T20:48:16.3987380Z adding 'torch/include/ATen/ops/std_ops.h' 2025-08-14T20:48:16.3988390Z adding 'torch/include/ATen/ops/stft.h' 2025-08-14T20:48:16.3989480Z adding 'torch/include/ATen/ops/stft_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3990320Z adding 'torch/include/ATen/ops/stft_native.h' 2025-08-14T20:48:16.3991610Z adding 'torch/include/ATen/ops/stft_ops.h' 2025-08-14T20:48:16.3992520Z adding 'torch/include/ATen/ops/stride.h' 2025-08-14T20:48:16.3993530Z adding 'torch/include/ATen/ops/stride_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.3994290Z adding 'torch/include/ATen/ops/stride_native.h' 2025-08-14T20:48:16.3995470Z adding 'torch/include/ATen/ops/stride_ops.h' 2025-08-14T20:48:16.3996490Z adding 'torch/include/ATen/ops/sub.h' 2025-08-14T20:48:16.3997520Z adding 'torch/include/ATen/ops/sub_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.3998450Z adding 'torch/include/ATen/ops/sub_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.3999820Z adding 'torch/include/ATen/ops/sub_cpu_dispatch.h' 2025-08-14T20:48:16.4000670Z adding 'torch/include/ATen/ops/sub_cuda_dispatch.h' 2025-08-14T20:48:16.4001540Z adding 'torch/include/ATen/ops/sub_meta.h' 2025-08-14T20:48:16.4002400Z adding 'torch/include/ATen/ops/sub_meta_dispatch.h' 2025-08-14T20:48:16.4003520Z adding 'torch/include/ATen/ops/sub_mps_dispatch.h' 2025-08-14T20:48:16.4004520Z adding 'torch/include/ATen/ops/sub_native.h' 2025-08-14T20:48:16.4005640Z adding 'torch/include/ATen/ops/sub_ops.h' 2025-08-14T20:48:16.4006600Z adding 'torch/include/ATen/ops/subtract.h' 2025-08-14T20:48:16.4007860Z adding 'torch/include/ATen/ops/subtract_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.4008730Z adding 'torch/include/ATen/ops/subtract_native.h' 2025-08-14T20:48:16.4009820Z adding 'torch/include/ATen/ops/subtract_ops.h' 2025-08-14T20:48:16.4010890Z adding 'torch/include/ATen/ops/sum.h' 2025-08-14T20:48:16.4012120Z adding 'torch/include/ATen/ops/sum_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.4013060Z adding 'torch/include/ATen/ops/sum_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.4013920Z adding 'torch/include/ATen/ops/sum_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.4014740Z adding 'torch/include/ATen/ops/sum_cpu_dispatch.h' 2025-08-14T20:48:16.4015780Z adding 'torch/include/ATen/ops/sum_cuda_dispatch.h' 2025-08-14T20:48:16.4016640Z adding 'torch/include/ATen/ops/sum_meta.h' 2025-08-14T20:48:16.4017470Z adding 'torch/include/ATen/ops/sum_meta_dispatch.h' 2025-08-14T20:48:16.4018300Z adding 'torch/include/ATen/ops/sum_mps_dispatch.h' 2025-08-14T20:48:16.4019450Z adding 'torch/include/ATen/ops/sum_native.h' 2025-08-14T20:48:16.4020650Z adding 'torch/include/ATen/ops/sum_ops.h' 2025-08-14T20:48:16.4021550Z adding 'torch/include/ATen/ops/sum_to_size.h' 2025-08-14T20:48:16.4022540Z adding 'torch/include/ATen/ops/sum_to_size_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.4023500Z adding 'torch/include/ATen/ops/sum_to_size_native.h' 2025-08-14T20:48:16.4024410Z adding 'torch/include/ATen/ops/sum_to_size_ops.h' 2025-08-14T20:48:16.4025330Z adding 'torch/include/ATen/ops/svd.h' 2025-08-14T20:48:16.4026320Z adding 'torch/include/ATen/ops/svd_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.4027330Z adding 'torch/include/ATen/ops/svd_native.h' 2025-08-14T20:48:16.4028340Z adding 'torch/include/ATen/ops/svd_ops.h' 2025-08-14T20:48:16.4029210Z adding 'torch/include/ATen/ops/swapaxes.h' 2025-08-14T20:48:16.4030200Z adding 'torch/include/ATen/ops/swapaxes_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.4031180Z adding 'torch/include/ATen/ops/swapaxes_native.h' 2025-08-14T20:48:16.4032200Z adding 'torch/include/ATen/ops/swapaxes_ops.h' 2025-08-14T20:48:16.4033090Z adding 'torch/include/ATen/ops/swapdims.h' 2025-08-14T20:48:16.4034070Z adding 'torch/include/ATen/ops/swapdims_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.4035060Z adding 'torch/include/ATen/ops/swapdims_native.h' 2025-08-14T20:48:16.4036030Z adding 'torch/include/ATen/ops/swapdims_ops.h' 2025-08-14T20:48:16.4036920Z adding 'torch/include/ATen/ops/sym_constrain_range.h' 2025-08-14T20:48:16.4037920Z adding 'torch/include/ATen/ops/sym_constrain_range_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.4039000Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size.h' 2025-08-14T20:48:16.4040000Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.4040770Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size_native.h' 2025-08-14T20:48:16.4041720Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size_ops.h' 2025-08-14T20:48:16.4042740Z adding 'torch/include/ATen/ops/sym_constrain_range_native.h' 2025-08-14T20:48:16.4043660Z adding 'torch/include/ATen/ops/sym_constrain_range_ops.h' 2025-08-14T20:48:16.4044500Z adding 'torch/include/ATen/ops/sym_numel.h' 2025-08-14T20:48:16.4045460Z adding 'torch/include/ATen/ops/sym_numel_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.4046420Z adding 'torch/include/ATen/ops/sym_numel_native.h' 2025-08-14T20:48:16.4047330Z adding 'torch/include/ATen/ops/sym_numel_ops.h' 2025-08-14T20:48:16.4048180Z adding 'torch/include/ATen/ops/sym_size.h' 2025-08-14T20:48:16.4049210Z adding 'torch/include/ATen/ops/sym_size_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.4050170Z adding 'torch/include/ATen/ops/sym_size_native.h' 2025-08-14T20:48:16.4051150Z adding 'torch/include/ATen/ops/sym_size_ops.h' 2025-08-14T20:48:16.4052010Z adding 'torch/include/ATen/ops/sym_storage_offset.h' 2025-08-14T20:48:16.4052970Z adding 'torch/include/ATen/ops/sym_storage_offset_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.4053930Z adding 'torch/include/ATen/ops/sym_storage_offset_native.h' 2025-08-14T20:48:16.4054840Z adding 'torch/include/ATen/ops/sym_storage_offset_ops.h' 2025-08-14T20:48:16.4055670Z adding 'torch/include/ATen/ops/sym_stride.h' 2025-08-14T20:48:16.4056650Z adding 'torch/include/ATen/ops/sym_stride_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.4057590Z adding 'torch/include/ATen/ops/sym_stride_native.h' 2025-08-14T20:48:16.4058520Z adding 'torch/include/ATen/ops/sym_stride_ops.h' 2025-08-14T20:48:16.4059350Z adding 'torch/include/ATen/ops/t.h' 2025-08-14T20:48:16.4060320Z adding 'torch/include/ATen/ops/t_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.4061320Z adding 'torch/include/ATen/ops/t_copy.h' 2025-08-14T20:48:16.4062290Z adding 'torch/include/ATen/ops/t_copy_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.4063210Z adding 'torch/include/ATen/ops/t_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.4063940Z adding 'torch/include/ATen/ops/t_copy_native.h' 2025-08-14T20:48:16.4065100Z adding 'torch/include/ATen/ops/t_copy_ops.h' 2025-08-14T20:48:16.4065910Z adding 'torch/include/ATen/ops/t_native.h' 2025-08-14T20:48:16.4066830Z adding 'torch/include/ATen/ops/t_ops.h' 2025-08-14T20:48:16.4067760Z adding 'torch/include/ATen/ops/take.h' 2025-08-14T20:48:16.4068950Z adding 'torch/include/ATen/ops/take_along_dim.h' 2025-08-14T20:48:16.4069970Z adding 'torch/include/ATen/ops/take_along_dim_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.4070770Z adding 'torch/include/ATen/ops/take_along_dim_native.h' 2025-08-14T20:48:16.4071750Z adding 'torch/include/ATen/ops/take_along_dim_ops.h' 2025-08-14T20:48:16.4072890Z adding 'torch/include/ATen/ops/take_cpu_dispatch.h' 2025-08-14T20:48:16.4073740Z adding 'torch/include/ATen/ops/take_cuda_dispatch.h' 2025-08-14T20:48:16.4074600Z adding 'torch/include/ATen/ops/take_native.h' 2025-08-14T20:48:16.4075570Z adding 'torch/include/ATen/ops/take_ops.h' 2025-08-14T20:48:16.4076660Z adding 'torch/include/ATen/ops/tan.h' 2025-08-14T20:48:16.4077720Z adding 'torch/include/ATen/ops/tan_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.4078450Z adding 'torch/include/ATen/ops/tan_cpu_dispatch.h' 2025-08-14T20:48:16.4079420Z adding 'torch/include/ATen/ops/tan_cuda_dispatch.h' 2025-08-14T20:48:16.4080490Z adding 'torch/include/ATen/ops/tan_meta.h' 2025-08-14T20:48:16.4081380Z adding 'torch/include/ATen/ops/tan_meta_dispatch.h' 2025-08-14T20:48:16.4082200Z adding 'torch/include/ATen/ops/tan_mps_dispatch.h' 2025-08-14T20:48:16.4083070Z adding 'torch/include/ATen/ops/tan_native.h' 2025-08-14T20:48:16.4084280Z adding 'torch/include/ATen/ops/tan_ops.h' 2025-08-14T20:48:16.4085210Z adding 'torch/include/ATen/ops/tanh.h' 2025-08-14T20:48:16.4086140Z adding 'torch/include/ATen/ops/tanh_backward.h' 2025-08-14T20:48:16.4087210Z adding 'torch/include/ATen/ops/tanh_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.4088230Z adding 'torch/include/ATen/ops/tanh_backward_cpu_dispatch.h' 2025-08-14T20:48:16.4089130Z adding 'torch/include/ATen/ops/tanh_backward_cuda_dispatch.h' 2025-08-14T20:48:16.4089990Z adding 'torch/include/ATen/ops/tanh_backward_meta.h' 2025-08-14T20:48:16.4090860Z adding 'torch/include/ATen/ops/tanh_backward_meta_dispatch.h' 2025-08-14T20:48:16.4091920Z adding 'torch/include/ATen/ops/tanh_backward_mps_dispatch.h' 2025-08-14T20:48:16.4092830Z adding 'torch/include/ATen/ops/tanh_backward_native.h' 2025-08-14T20:48:16.4093830Z adding 'torch/include/ATen/ops/tanh_backward_ops.h' 2025-08-14T20:48:16.4094810Z adding 'torch/include/ATen/ops/tanh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.4095890Z adding 'torch/include/ATen/ops/tanh_cpu_dispatch.h' 2025-08-14T20:48:16.4096800Z adding 'torch/include/ATen/ops/tanh_cuda_dispatch.h' 2025-08-14T20:48:16.4097640Z adding 'torch/include/ATen/ops/tanh_meta.h' 2025-08-14T20:48:16.4098520Z adding 'torch/include/ATen/ops/tanh_meta_dispatch.h' 2025-08-14T20:48:16.4099540Z adding 'torch/include/ATen/ops/tanh_mps_dispatch.h' 2025-08-14T20:48:16.4100470Z adding 'torch/include/ATen/ops/tanh_native.h' 2025-08-14T20:48:16.4101520Z adding 'torch/include/ATen/ops/tanh_ops.h' 2025-08-14T20:48:16.4102550Z adding 'torch/include/ATen/ops/tensor.h' 2025-08-14T20:48:16.4103870Z adding 'torch/include/ATen/ops/tensor_split.h' 2025-08-14T20:48:16.4104910Z adding 'torch/include/ATen/ops/tensor_split_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.4105710Z adding 'torch/include/ATen/ops/tensor_split_native.h' 2025-08-14T20:48:16.4106730Z adding 'torch/include/ATen/ops/tensor_split_ops.h' 2025-08-14T20:48:16.4107920Z adding 'torch/include/ATen/ops/tensordot.h' 2025-08-14T20:48:16.4108980Z adding 'torch/include/ATen/ops/tensordot_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.4109790Z adding 'torch/include/ATen/ops/tensordot_native.h' 2025-08-14T20:48:16.4110750Z adding 'torch/include/ATen/ops/tensordot_ops.h' 2025-08-14T20:48:16.4112230Z adding 'torch/include/ATen/ops/thnn_conv2d.h' 2025-08-14T20:48:16.4113450Z adding 'torch/include/ATen/ops/thnn_conv2d_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.4114200Z adding 'torch/include/ATen/ops/thnn_conv2d_native.h' 2025-08-14T20:48:16.4115200Z adding 'torch/include/ATen/ops/thnn_conv2d_ops.h' 2025-08-14T20:48:16.4116370Z adding 'torch/include/ATen/ops/threshold.h' 2025-08-14T20:48:16.4117370Z adding 'torch/include/ATen/ops/threshold_backward.h' 2025-08-14T20:48:16.4118470Z adding 'torch/include/ATen/ops/threshold_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.4119240Z adding 'torch/include/ATen/ops/threshold_backward_cpu_dispatch.h' 2025-08-14T20:48:16.4120260Z adding 'torch/include/ATen/ops/threshold_backward_cuda_dispatch.h' 2025-08-14T20:48:16.4121110Z adding 'torch/include/ATen/ops/threshold_backward_meta.h' 2025-08-14T20:48:16.4121980Z adding 'torch/include/ATen/ops/threshold_backward_meta_dispatch.h' 2025-08-14T20:48:16.4122820Z adding 'torch/include/ATen/ops/threshold_backward_mps_dispatch.h' 2025-08-14T20:48:16.4128360Z adding 'torch/include/ATen/ops/threshold_backward_native.h' 2025-08-14T20:48:16.4128580Z adding 'torch/include/ATen/ops/threshold_backward_ops.h' 2025-08-14T20:48:16.4128820Z adding 'torch/include/ATen/ops/threshold_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.4128920Z adding 'torch/include/ATen/ops/threshold_cpu_dispatch.h' 2025-08-14T20:48:16.4129030Z adding 'torch/include/ATen/ops/threshold_cuda_dispatch.h' 2025-08-14T20:48:16.4129110Z adding 'torch/include/ATen/ops/threshold_meta.h' 2025-08-14T20:48:16.4129490Z adding 'torch/include/ATen/ops/threshold_meta_dispatch.h' 2025-08-14T20:48:16.4130290Z adding 'torch/include/ATen/ops/threshold_mps_dispatch.h' 2025-08-14T20:48:16.4131340Z adding 'torch/include/ATen/ops/threshold_native.h' 2025-08-14T20:48:16.4132390Z adding 'torch/include/ATen/ops/threshold_ops.h' 2025-08-14T20:48:16.4133300Z adding 'torch/include/ATen/ops/tile.h' 2025-08-14T20:48:16.4134260Z adding 'torch/include/ATen/ops/tile_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.4135220Z adding 'torch/include/ATen/ops/tile_native.h' 2025-08-14T20:48:16.4136200Z adding 'torch/include/ATen/ops/tile_ops.h' 2025-08-14T20:48:16.4137040Z adding 'torch/include/ATen/ops/to.h' 2025-08-14T20:48:16.4138110Z adding 'torch/include/ATen/ops/to_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.4139110Z adding 'torch/include/ATen/ops/to_dense.h' 2025-08-14T20:48:16.4140030Z adding 'torch/include/ATen/ops/to_dense_backward.h' 2025-08-14T20:48:16.4141040Z adding 'torch/include/ATen/ops/to_dense_backward_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.4141840Z adding 'torch/include/ATen/ops/to_dense_backward_native.h' 2025-08-14T20:48:16.4143010Z adding 'torch/include/ATen/ops/to_dense_backward_ops.h' 2025-08-14T20:48:16.4143980Z adding 'torch/include/ATen/ops/to_dense_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.4144730Z adding 'torch/include/ATen/ops/to_dense_native.h' 2025-08-14T20:48:16.4145660Z adding 'torch/include/ATen/ops/to_dense_ops.h' 2025-08-14T20:48:16.4146770Z adding 'torch/include/ATen/ops/to_mkldnn.h' 2025-08-14T20:48:16.4147730Z adding 'torch/include/ATen/ops/to_mkldnn_backward.h' 2025-08-14T20:48:16.4148720Z adding 'torch/include/ATen/ops/to_mkldnn_backward_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.4149480Z adding 'torch/include/ATen/ops/to_mkldnn_backward_native.h' 2025-08-14T20:48:16.4150620Z adding 'torch/include/ATen/ops/to_mkldnn_backward_ops.h' 2025-08-14T20:48:16.4151730Z adding 'torch/include/ATen/ops/to_mkldnn_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.4152550Z adding 'torch/include/ATen/ops/to_mkldnn_cpu_dispatch.h' 2025-08-14T20:48:16.4153390Z adding 'torch/include/ATen/ops/to_mkldnn_native.h' 2025-08-14T20:48:16.4154580Z adding 'torch/include/ATen/ops/to_mkldnn_ops.h' 2025-08-14T20:48:16.4155540Z adding 'torch/include/ATen/ops/to_native.h' 2025-08-14T20:48:16.4156710Z adding 'torch/include/ATen/ops/to_ops.h' 2025-08-14T20:48:16.4157830Z adding 'torch/include/ATen/ops/to_padded_tensor.h' 2025-08-14T20:48:16.4159180Z adding 'torch/include/ATen/ops/to_padded_tensor_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.4159990Z adding 'torch/include/ATen/ops/to_padded_tensor_native.h' 2025-08-14T20:48:16.4160970Z adding 'torch/include/ATen/ops/to_padded_tensor_ops.h' 2025-08-14T20:48:16.4161770Z adding 'torch/include/ATen/ops/to_sparse.h' 2025-08-14T20:48:16.4162840Z adding 'torch/include/ATen/ops/to_sparse_bsc.h' 2025-08-14T20:48:16.4163860Z adding 'torch/include/ATen/ops/to_sparse_bsc_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.4164640Z adding 'torch/include/ATen/ops/to_sparse_bsc_native.h' 2025-08-14T20:48:16.4165560Z adding 'torch/include/ATen/ops/to_sparse_bsc_ops.h' 2025-08-14T20:48:16.4166580Z adding 'torch/include/ATen/ops/to_sparse_bsr.h' 2025-08-14T20:48:16.4167660Z adding 'torch/include/ATen/ops/to_sparse_bsr_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.4168410Z adding 'torch/include/ATen/ops/to_sparse_bsr_native.h' 2025-08-14T20:48:16.4169330Z adding 'torch/include/ATen/ops/to_sparse_bsr_ops.h' 2025-08-14T20:48:16.4170520Z adding 'torch/include/ATen/ops/to_sparse_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.4171370Z adding 'torch/include/ATen/ops/to_sparse_csc.h' 2025-08-14T20:48:16.4172350Z adding 'torch/include/ATen/ops/to_sparse_csc_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.4173110Z adding 'torch/include/ATen/ops/to_sparse_csc_native.h' 2025-08-14T20:48:16.4174250Z adding 'torch/include/ATen/ops/to_sparse_csc_ops.h' 2025-08-14T20:48:16.4175210Z adding 'torch/include/ATen/ops/to_sparse_csr.h' 2025-08-14T20:48:16.4176180Z adding 'torch/include/ATen/ops/to_sparse_csr_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.4176940Z adding 'torch/include/ATen/ops/to_sparse_csr_native.h' 2025-08-14T20:48:16.4178080Z adding 'torch/include/ATen/ops/to_sparse_csr_ops.h' 2025-08-14T20:48:16.4178990Z adding 'torch/include/ATen/ops/to_sparse_native.h' 2025-08-14T20:48:16.4180010Z adding 'torch/include/ATen/ops/to_sparse_ops.h' 2025-08-14T20:48:16.4181130Z adding 'torch/include/ATen/ops/topk.h' 2025-08-14T20:48:16.4182420Z adding 'torch/include/ATen/ops/topk_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.4183330Z adding 'torch/include/ATen/ops/topk_cpu_dispatch.h' 2025-08-14T20:48:16.4184260Z adding 'torch/include/ATen/ops/topk_cuda_dispatch.h' 2025-08-14T20:48:16.4185130Z adding 'torch/include/ATen/ops/topk_meta.h' 2025-08-14T20:48:16.4186260Z adding 'torch/include/ATen/ops/topk_meta_dispatch.h' 2025-08-14T20:48:16.4187170Z adding 'torch/include/ATen/ops/topk_mps_dispatch.h' 2025-08-14T20:48:16.4188090Z adding 'torch/include/ATen/ops/topk_native.h' 2025-08-14T20:48:16.4189180Z adding 'torch/include/ATen/ops/topk_ops.h' 2025-08-14T20:48:16.4190420Z adding 'torch/include/ATen/ops/trace.h' 2025-08-14T20:48:16.4191460Z adding 'torch/include/ATen/ops/trace_backward.h' 2025-08-14T20:48:16.4192450Z adding 'torch/include/ATen/ops/trace_backward_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.4193330Z adding 'torch/include/ATen/ops/trace_backward_native.h' 2025-08-14T20:48:16.4194550Z adding 'torch/include/ATen/ops/trace_backward_ops.h' 2025-08-14T20:48:16.4195550Z adding 'torch/include/ATen/ops/trace_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.4196400Z adding 'torch/include/ATen/ops/trace_cpu_dispatch.h' 2025-08-14T20:48:16.4197320Z adding 'torch/include/ATen/ops/trace_cuda_dispatch.h' 2025-08-14T20:48:16.4198510Z adding 'torch/include/ATen/ops/trace_mps_dispatch.h' 2025-08-14T20:48:16.4199380Z adding 'torch/include/ATen/ops/trace_native.h' 2025-08-14T20:48:16.4200360Z adding 'torch/include/ATen/ops/trace_ops.h' 2025-08-14T20:48:16.4201370Z adding 'torch/include/ATen/ops/transpose.h' 2025-08-14T20:48:16.4202610Z adding 'torch/include/ATen/ops/transpose_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.4203530Z adding 'torch/include/ATen/ops/transpose_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.4204400Z adding 'torch/include/ATen/ops/transpose_copy.h' 2025-08-14T20:48:16.4205520Z adding 'torch/include/ATen/ops/transpose_copy_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.4206660Z adding 'torch/include/ATen/ops/transpose_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.4207410Z adding 'torch/include/ATen/ops/transpose_copy_native.h' 2025-08-14T20:48:16.4208420Z adding 'torch/include/ATen/ops/transpose_copy_ops.h' 2025-08-14T20:48:16.4209370Z adding 'torch/include/ATen/ops/transpose_native.h' 2025-08-14T20:48:16.4210600Z adding 'torch/include/ATen/ops/transpose_ops.h' 2025-08-14T20:48:16.4211510Z adding 'torch/include/ATen/ops/trapezoid.h' 2025-08-14T20:48:16.4212550Z adding 'torch/include/ATen/ops/trapezoid_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.4213500Z adding 'torch/include/ATen/ops/trapezoid_native.h' 2025-08-14T20:48:16.4214670Z adding 'torch/include/ATen/ops/trapezoid_ops.h' 2025-08-14T20:48:16.4215580Z adding 'torch/include/ATen/ops/trapz.h' 2025-08-14T20:48:16.4216600Z adding 'torch/include/ATen/ops/trapz_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.4217520Z adding 'torch/include/ATen/ops/trapz_native.h' 2025-08-14T20:48:16.4218660Z adding 'torch/include/ATen/ops/trapz_ops.h' 2025-08-14T20:48:16.4219650Z adding 'torch/include/ATen/ops/triangular_solve.h' 2025-08-14T20:48:16.4220740Z adding 'torch/include/ATen/ops/triangular_solve_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.4221650Z adding 'torch/include/ATen/ops/triangular_solve_cpu_dispatch.h' 2025-08-14T20:48:16.4222730Z adding 'torch/include/ATen/ops/triangular_solve_cuda_dispatch.h' 2025-08-14T20:48:16.4223610Z adding 'torch/include/ATen/ops/triangular_solve_meta.h' 2025-08-14T20:48:16.4224900Z adding 'torch/include/ATen/ops/triangular_solve_meta_dispatch.h' 2025-08-14T20:48:16.4225800Z adding 'torch/include/ATen/ops/triangular_solve_mps_dispatch.h' 2025-08-14T20:48:16.4226910Z adding 'torch/include/ATen/ops/triangular_solve_native.h' 2025-08-14T20:48:16.4227970Z adding 'torch/include/ATen/ops/triangular_solve_ops.h' 2025-08-14T20:48:16.4228830Z adding 'torch/include/ATen/ops/tril.h' 2025-08-14T20:48:16.4229860Z adding 'torch/include/ATen/ops/tril_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.4230800Z adding 'torch/include/ATen/ops/tril_cpu_dispatch.h' 2025-08-14T20:48:16.4231660Z adding 'torch/include/ATen/ops/tril_cuda_dispatch.h' 2025-08-14T20:48:16.4232630Z adding 'torch/include/ATen/ops/tril_indices.h' 2025-08-14T20:48:16.4233610Z adding 'torch/include/ATen/ops/tril_indices_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.4234640Z adding 'torch/include/ATen/ops/tril_indices_cpu_dispatch.h' 2025-08-14T20:48:16.4235500Z adding 'torch/include/ATen/ops/tril_indices_cuda_dispatch.h' 2025-08-14T20:48:16.4236350Z adding 'torch/include/ATen/ops/tril_indices_mps_dispatch.h' 2025-08-14T20:48:16.4237250Z adding 'torch/include/ATen/ops/tril_indices_native.h' 2025-08-14T20:48:16.4238420Z adding 'torch/include/ATen/ops/tril_indices_ops.h' 2025-08-14T20:48:16.4239290Z adding 'torch/include/ATen/ops/tril_meta.h' 2025-08-14T20:48:16.4240170Z adding 'torch/include/ATen/ops/tril_meta_dispatch.h' 2025-08-14T20:48:16.4241010Z adding 'torch/include/ATen/ops/tril_mps_dispatch.h' 2025-08-14T20:48:16.4242040Z adding 'torch/include/ATen/ops/tril_native.h' 2025-08-14T20:48:16.4243050Z adding 'torch/include/ATen/ops/tril_ops.h' 2025-08-14T20:48:16.4243990Z adding 'torch/include/ATen/ops/triplet_margin_loss.h' 2025-08-14T20:48:16.4245000Z adding 'torch/include/ATen/ops/triplet_margin_loss_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.4245980Z adding 'torch/include/ATen/ops/triplet_margin_loss_native.h' 2025-08-14T20:48:16.4246950Z adding 'torch/include/ATen/ops/triplet_margin_loss_ops.h' 2025-08-14T20:48:16.4247820Z adding 'torch/include/ATen/ops/triu.h' 2025-08-14T20:48:16.4248840Z adding 'torch/include/ATen/ops/triu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.4249750Z adding 'torch/include/ATen/ops/triu_cpu_dispatch.h' 2025-08-14T20:48:16.4250590Z adding 'torch/include/ATen/ops/triu_cuda_dispatch.h' 2025-08-14T20:48:16.4251580Z adding 'torch/include/ATen/ops/triu_indices.h' 2025-08-14T20:48:16.4253590Z adding 'torch/include/ATen/ops/triu_indices_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.4254400Z adding 'torch/include/ATen/ops/triu_indices_cpu_dispatch.h' 2025-08-14T20:48:16.4255260Z adding 'torch/include/ATen/ops/triu_indices_cuda_dispatch.h' 2025-08-14T20:48:16.4256100Z adding 'torch/include/ATen/ops/triu_indices_mps_dispatch.h' 2025-08-14T20:48:16.4256970Z adding 'torch/include/ATen/ops/triu_indices_native.h' 2025-08-14T20:48:16.4258170Z adding 'torch/include/ATen/ops/triu_indices_ops.h' 2025-08-14T20:48:16.4259060Z adding 'torch/include/ATen/ops/triu_meta.h' 2025-08-14T20:48:16.4259880Z adding 'torch/include/ATen/ops/triu_meta_dispatch.h' 2025-08-14T20:48:16.4260690Z adding 'torch/include/ATen/ops/triu_mps_dispatch.h' 2025-08-14T20:48:16.4261730Z adding 'torch/include/ATen/ops/triu_native.h' 2025-08-14T20:48:16.4262730Z adding 'torch/include/ATen/ops/triu_ops.h' 2025-08-14T20:48:16.4263670Z adding 'torch/include/ATen/ops/true_divide.h' 2025-08-14T20:48:16.4264660Z adding 'torch/include/ATen/ops/true_divide_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.4265630Z adding 'torch/include/ATen/ops/true_divide_native.h' 2025-08-14T20:48:16.4266710Z adding 'torch/include/ATen/ops/true_divide_ops.h' 2025-08-14T20:48:16.4267630Z adding 'torch/include/ATen/ops/trunc.h' 2025-08-14T20:48:16.4268630Z adding 'torch/include/ATen/ops/trunc_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.4269600Z adding 'torch/include/ATen/ops/trunc_cpu_dispatch.h' 2025-08-14T20:48:16.4270480Z adding 'torch/include/ATen/ops/trunc_cuda_dispatch.h' 2025-08-14T20:48:16.4271310Z adding 'torch/include/ATen/ops/trunc_meta.h' 2025-08-14T20:48:16.4272170Z adding 'torch/include/ATen/ops/trunc_meta_dispatch.h' 2025-08-14T20:48:16.4273200Z adding 'torch/include/ATen/ops/trunc_mps_dispatch.h' 2025-08-14T20:48:16.4274100Z adding 'torch/include/ATen/ops/trunc_native.h' 2025-08-14T20:48:16.4275080Z adding 'torch/include/ATen/ops/trunc_ops.h' 2025-08-14T20:48:16.4275920Z adding 'torch/include/ATen/ops/type_as.h' 2025-08-14T20:48:16.4277090Z adding 'torch/include/ATen/ops/type_as_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.4277890Z adding 'torch/include/ATen/ops/type_as_native.h' 2025-08-14T20:48:16.4278830Z adding 'torch/include/ATen/ops/type_as_ops.h' 2025-08-14T20:48:16.4279720Z adding 'torch/include/ATen/ops/unbind.h' 2025-08-14T20:48:16.4280900Z adding 'torch/include/ATen/ops/unbind_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.4281830Z adding 'torch/include/ATen/ops/unbind_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.4282750Z adding 'torch/include/ATen/ops/unbind_copy.h' 2025-08-14T20:48:16.4283770Z adding 'torch/include/ATen/ops/unbind_copy_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.4284880Z adding 'torch/include/ATen/ops/unbind_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.4285620Z adding 'torch/include/ATen/ops/unbind_copy_native.h' 2025-08-14T20:48:16.4286600Z adding 'torch/include/ATen/ops/unbind_copy_ops.h' 2025-08-14T20:48:16.4287430Z adding 'torch/include/ATen/ops/unbind_native.h' 2025-08-14T20:48:16.4288560Z adding 'torch/include/ATen/ops/unbind_ops.h' 2025-08-14T20:48:16.4289610Z adding 'torch/include/ATen/ops/unflatten.h' 2025-08-14T20:48:16.4290630Z adding 'torch/include/ATen/ops/unflatten_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.4291470Z adding 'torch/include/ATen/ops/unflatten_dense_tensors.h' 2025-08-14T20:48:16.4292660Z adding 'torch/include/ATen/ops/unflatten_dense_tensors_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.4293470Z adding 'torch/include/ATen/ops/unflatten_dense_tensors_native.h' 2025-08-14T20:48:16.4294410Z adding 'torch/include/ATen/ops/unflatten_dense_tensors_ops.h' 2025-08-14T20:48:16.4295230Z adding 'torch/include/ATen/ops/unflatten_native.h' 2025-08-14T20:48:16.4296390Z adding 'torch/include/ATen/ops/unflatten_ops.h' 2025-08-14T20:48:16.4297250Z adding 'torch/include/ATen/ops/unfold.h' 2025-08-14T20:48:16.4298400Z adding 'torch/include/ATen/ops/unfold_backward.h' 2025-08-14T20:48:16.4299410Z adding 'torch/include/ATen/ops/unfold_backward_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.4300440Z adding 'torch/include/ATen/ops/unfold_backward_cpu_dispatch.h' 2025-08-14T20:48:16.4301290Z adding 'torch/include/ATen/ops/unfold_backward_cuda_dispatch.h' 2025-08-14T20:48:16.4302150Z adding 'torch/include/ATen/ops/unfold_backward_mps_dispatch.h' 2025-08-14T20:48:16.4302970Z adding 'torch/include/ATen/ops/unfold_backward_native.h' 2025-08-14T20:48:16.4304160Z adding 'torch/include/ATen/ops/unfold_backward_ops.h' 2025-08-14T20:48:16.4305080Z adding 'torch/include/ATen/ops/unfold_copy.h' 2025-08-14T20:48:16.4306070Z adding 'torch/include/ATen/ops/unfold_copy_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.4307000Z adding 'torch/include/ATen/ops/unfold_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.4307920Z adding 'torch/include/ATen/ops/unfold_copy_native.h' 2025-08-14T20:48:16.4308910Z adding 'torch/include/ATen/ops/unfold_copy_ops.h' 2025-08-14T20:48:16.4309810Z adding 'torch/include/ATen/ops/unfold_cpu_dispatch.h' 2025-08-14T20:48:16.4310630Z adding 'torch/include/ATen/ops/unfold_cuda_dispatch.h' 2025-08-14T20:48:16.4311640Z adding 'torch/include/ATen/ops/unfold_meta_dispatch.h' 2025-08-14T20:48:16.4312460Z adding 'torch/include/ATen/ops/unfold_mps_dispatch.h' 2025-08-14T20:48:16.4313320Z adding 'torch/include/ATen/ops/unfold_native.h' 2025-08-14T20:48:16.4314240Z adding 'torch/include/ATen/ops/unfold_ops.h' 2025-08-14T20:48:16.4315370Z adding 'torch/include/ATen/ops/uniform.h' 2025-08-14T20:48:16.4316400Z adding 'torch/include/ATen/ops/uniform_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.4317230Z adding 'torch/include/ATen/ops/uniform_cpu_dispatch.h' 2025-08-14T20:48:16.4318060Z adding 'torch/include/ATen/ops/uniform_cuda_dispatch.h' 2025-08-14T20:48:16.4319050Z adding 'torch/include/ATen/ops/uniform_meta_dispatch.h' 2025-08-14T20:48:16.4319870Z adding 'torch/include/ATen/ops/uniform_mps_dispatch.h' 2025-08-14T20:48:16.4320730Z adding 'torch/include/ATen/ops/uniform_native.h' 2025-08-14T20:48:16.4321760Z adding 'torch/include/ATen/ops/uniform_ops.h' 2025-08-14T20:48:16.4322950Z adding 'torch/include/ATen/ops/unique_consecutive.h' 2025-08-14T20:48:16.4324020Z adding 'torch/include/ATen/ops/unique_consecutive_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.4324840Z adding 'torch/include/ATen/ops/unique_consecutive_cpu_dispatch.h' 2025-08-14T20:48:16.4325670Z adding 'torch/include/ATen/ops/unique_consecutive_cuda_dispatch.h' 2025-08-14T20:48:16.4326740Z adding 'torch/include/ATen/ops/unique_consecutive_mps_dispatch.h' 2025-08-14T20:48:16.4327650Z adding 'torch/include/ATen/ops/unique_consecutive_native.h' 2025-08-14T20:48:16.4328660Z adding 'torch/include/ATen/ops/unique_consecutive_ops.h' 2025-08-14T20:48:16.4329620Z adding 'torch/include/ATen/ops/unique_dim.h' 2025-08-14T20:48:16.4330850Z adding 'torch/include/ATen/ops/unique_dim_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.4331780Z adding 'torch/include/ATen/ops/unique_dim_consecutive.h' 2025-08-14T20:48:16.4332780Z adding 'torch/include/ATen/ops/unique_dim_consecutive_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.4333650Z adding 'torch/include/ATen/ops/unique_dim_consecutive_cpu_dispatch.h' 2025-08-14T20:48:16.4334650Z adding 'torch/include/ATen/ops/unique_dim_consecutive_cuda_dispatch.h' 2025-08-14T20:48:16.4335520Z adding 'torch/include/ATen/ops/unique_dim_consecutive_mps_dispatch.h' 2025-08-14T20:48:16.4336380Z adding 'torch/include/ATen/ops/unique_dim_consecutive_native.h' 2025-08-14T20:48:16.4337420Z adding 'torch/include/ATen/ops/unique_dim_consecutive_ops.h' 2025-08-14T20:48:16.4338490Z adding 'torch/include/ATen/ops/unique_dim_cpu_dispatch.h' 2025-08-14T20:48:16.4339360Z adding 'torch/include/ATen/ops/unique_dim_cuda_dispatch.h' 2025-08-14T20:48:16.4340560Z adding 'torch/include/ATen/ops/unique_dim_native.h' 2025-08-14T20:48:16.4341570Z adding 'torch/include/ATen/ops/unique_dim_ops.h' 2025-08-14T20:48:16.4342690Z adding 'torch/include/ATen/ops/unsafe_chunk.h' 2025-08-14T20:48:16.4343660Z adding 'torch/include/ATen/ops/unsafe_chunk_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.4344420Z adding 'torch/include/ATen/ops/unsafe_chunk_native.h' 2025-08-14T20:48:16.4345370Z adding 'torch/include/ATen/ops/unsafe_chunk_ops.h' 2025-08-14T20:48:16.4346700Z adding 'torch/include/ATen/ops/unsafe_split.h' 2025-08-14T20:48:16.4347750Z adding 'torch/include/ATen/ops/unsafe_split_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.4348520Z adding 'torch/include/ATen/ops/unsafe_split_native.h' 2025-08-14T20:48:16.4349520Z adding 'torch/include/ATen/ops/unsafe_split_ops.h' 2025-08-14T20:48:16.4350900Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes.h' 2025-08-14T20:48:16.4352000Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.4352800Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes_native.h' 2025-08-14T20:48:16.4353770Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes_ops.h' 2025-08-14T20:48:16.4354860Z adding 'torch/include/ATen/ops/unsqueeze.h' 2025-08-14T20:48:16.4355930Z adding 'torch/include/ATen/ops/unsqueeze_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.4356810Z adding 'torch/include/ATen/ops/unsqueeze_copy.h' 2025-08-14T20:48:16.4357820Z adding 'torch/include/ATen/ops/unsqueeze_copy_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.4358930Z adding 'torch/include/ATen/ops/unsqueeze_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.4359660Z adding 'torch/include/ATen/ops/unsqueeze_copy_native.h' 2025-08-14T20:48:16.4360580Z adding 'torch/include/ATen/ops/unsqueeze_copy_ops.h' 2025-08-14T20:48:16.4361450Z adding 'torch/include/ATen/ops/unsqueeze_native.h' 2025-08-14T20:48:16.4362560Z adding 'torch/include/ATen/ops/unsqueeze_ops.h' 2025-08-14T20:48:16.4363860Z adding 'torch/include/ATen/ops/upsample_bicubic2d.h' 2025-08-14T20:48:16.4365160Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward.h' 2025-08-14T20:48:16.4366270Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.4367340Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_cpu_dispatch.h' 2025-08-14T20:48:16.4368360Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_cuda_dispatch.h' 2025-08-14T20:48:16.4369260Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_meta.h' 2025-08-14T20:48:16.4370200Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_meta_dispatch.h' 2025-08-14T20:48:16.4371290Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_mps_dispatch.h' 2025-08-14T20:48:16.4372320Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_native.h' 2025-08-14T20:48:16.4373330Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_ops.h' 2025-08-14T20:48:16.4374360Z adding 'torch/include/ATen/ops/upsample_bicubic2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.4375390Z adding 'torch/include/ATen/ops/upsample_bicubic2d_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.4376280Z adding 'torch/include/ATen/ops/upsample_bicubic2d_cpu_dispatch.h' 2025-08-14T20:48:16.4377200Z adding 'torch/include/ATen/ops/upsample_bicubic2d_cuda_dispatch.h' 2025-08-14T20:48:16.4378070Z adding 'torch/include/ATen/ops/upsample_bicubic2d_meta.h' 2025-08-14T20:48:16.4379200Z adding 'torch/include/ATen/ops/upsample_bicubic2d_meta_dispatch.h' 2025-08-14T20:48:16.4380100Z adding 'torch/include/ATen/ops/upsample_bicubic2d_mps_dispatch.h' 2025-08-14T20:48:16.4381040Z adding 'torch/include/ATen/ops/upsample_bicubic2d_native.h' 2025-08-14T20:48:16.4382190Z adding 'torch/include/ATen/ops/upsample_bicubic2d_ops.h' 2025-08-14T20:48:16.4384140Z adding 'torch/include/ATen/ops/upsample_bilinear2d.h' 2025-08-14T20:48:16.4385320Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward.h' 2025-08-14T20:48:16.4386490Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.4387330Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_cpu_dispatch.h' 2025-08-14T20:48:16.4388540Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_cuda_dispatch.h' 2025-08-14T20:48:16.4389460Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_meta.h' 2025-08-14T20:48:16.4390510Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_meta_dispatch.h' 2025-08-14T20:48:16.4391430Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_mps_dispatch.h' 2025-08-14T20:48:16.4392530Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_native.h' 2025-08-14T20:48:16.4393560Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_ops.h' 2025-08-14T20:48:16.4394550Z adding 'torch/include/ATen/ops/upsample_bilinear2d_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.4395510Z adding 'torch/include/ATen/ops/upsample_bilinear2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.4396530Z adding 'torch/include/ATen/ops/upsample_bilinear2d_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.4397400Z adding 'torch/include/ATen/ops/upsample_bilinear2d_cpu_dispatch.h' 2025-08-14T20:48:16.4398280Z adding 'torch/include/ATen/ops/upsample_bilinear2d_cuda_dispatch.h' 2025-08-14T20:48:16.4399170Z adding 'torch/include/ATen/ops/upsample_bilinear2d_meta.h' 2025-08-14T20:48:16.4400320Z adding 'torch/include/ATen/ops/upsample_bilinear2d_meta_dispatch.h' 2025-08-14T20:48:16.4401240Z adding 'torch/include/ATen/ops/upsample_bilinear2d_mps_dispatch.h' 2025-08-14T20:48:16.4402200Z adding 'torch/include/ATen/ops/upsample_bilinear2d_native.h' 2025-08-14T20:48:16.4403320Z adding 'torch/include/ATen/ops/upsample_bilinear2d_ops.h' 2025-08-14T20:48:16.4404930Z adding 'torch/include/ATen/ops/upsample_linear1d.h' 2025-08-14T20:48:16.4406030Z adding 'torch/include/ATen/ops/upsample_linear1d_backward.h' 2025-08-14T20:48:16.4407110Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.4408120Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_cpu_dispatch.h' 2025-08-14T20:48:16.4409320Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_cuda_dispatch.h' 2025-08-14T20:48:16.4410230Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_meta.h' 2025-08-14T20:48:16.4411150Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_meta_dispatch.h' 2025-08-14T20:48:16.4412030Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_mps_dispatch.h' 2025-08-14T20:48:16.4413140Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_native.h' 2025-08-14T20:48:16.4414240Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_ops.h' 2025-08-14T20:48:16.4415270Z adding 'torch/include/ATen/ops/upsample_linear1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.4416180Z adding 'torch/include/ATen/ops/upsample_linear1d_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.4417300Z adding 'torch/include/ATen/ops/upsample_linear1d_cpu_dispatch.h' 2025-08-14T20:48:16.4418240Z adding 'torch/include/ATen/ops/upsample_linear1d_cuda_dispatch.h' 2025-08-14T20:48:16.4419090Z adding 'torch/include/ATen/ops/upsample_linear1d_meta.h' 2025-08-14T20:48:16.4420060Z adding 'torch/include/ATen/ops/upsample_linear1d_meta_dispatch.h' 2025-08-14T20:48:16.4421140Z adding 'torch/include/ATen/ops/upsample_linear1d_mps_dispatch.h' 2025-08-14T20:48:16.4422150Z adding 'torch/include/ATen/ops/upsample_linear1d_native.h' 2025-08-14T20:48:16.4423200Z adding 'torch/include/ATen/ops/upsample_linear1d_ops.h' 2025-08-14T20:48:16.4424490Z adding 'torch/include/ATen/ops/upsample_nearest1d.h' 2025-08-14T20:48:16.4426150Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward.h' 2025-08-14T20:48:16.4427060Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.4427910Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_cpu_dispatch.h' 2025-08-14T20:48:16.4428830Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_cuda_dispatch.h' 2025-08-14T20:48:16.4429830Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_meta.h' 2025-08-14T20:48:16.4430770Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_meta_dispatch.h' 2025-08-14T20:48:16.4431670Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_mps_dispatch.h' 2025-08-14T20:48:16.4432570Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_native.h' 2025-08-14T20:48:16.4433800Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_ops.h' 2025-08-14T20:48:16.4434820Z adding 'torch/include/ATen/ops/upsample_nearest1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.4435660Z adding 'torch/include/ATen/ops/upsample_nearest1d_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.4436560Z adding 'torch/include/ATen/ops/upsample_nearest1d_cpu_dispatch.h' 2025-08-14T20:48:16.4437640Z adding 'torch/include/ATen/ops/upsample_nearest1d_cuda_dispatch.h' 2025-08-14T20:48:16.4438480Z adding 'torch/include/ATen/ops/upsample_nearest1d_meta.h' 2025-08-14T20:48:16.4439400Z adding 'torch/include/ATen/ops/upsample_nearest1d_meta_dispatch.h' 2025-08-14T20:48:16.4440290Z adding 'torch/include/ATen/ops/upsample_nearest1d_mps_dispatch.h' 2025-08-14T20:48:16.4441380Z adding 'torch/include/ATen/ops/upsample_nearest1d_native.h' 2025-08-14T20:48:16.4442440Z adding 'torch/include/ATen/ops/upsample_nearest1d_ops.h' 2025-08-14T20:48:16.4443860Z adding 'torch/include/ATen/ops/upsample_nearest2d.h' 2025-08-14T20:48:16.4445100Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward.h' 2025-08-14T20:48:16.4446370Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.4447220Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_cpu_dispatch.h' 2025-08-14T20:48:16.4448130Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_cuda_dispatch.h' 2025-08-14T20:48:16.4448990Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_meta.h' 2025-08-14T20:48:16.4450100Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_meta_dispatch.h' 2025-08-14T20:48:16.4450990Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_mps_dispatch.h' 2025-08-14T20:48:16.4451890Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_native.h' 2025-08-14T20:48:16.4452910Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_ops.h' 2025-08-14T20:48:16.4454870Z adding 'torch/include/ATen/ops/upsample_nearest2d_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.4455420Z adding 'torch/include/ATen/ops/upsample_nearest2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.4456340Z adding 'torch/include/ATen/ops/upsample_nearest2d_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.4457130Z adding 'torch/include/ATen/ops/upsample_nearest2d_cpu_dispatch.h' 2025-08-14T20:48:16.4458210Z adding 'torch/include/ATen/ops/upsample_nearest2d_cuda_dispatch.h' 2025-08-14T20:48:16.4459080Z adding 'torch/include/ATen/ops/upsample_nearest2d_meta.h' 2025-08-14T20:48:16.4459980Z adding 'torch/include/ATen/ops/upsample_nearest2d_meta_dispatch.h' 2025-08-14T20:48:16.4460820Z adding 'torch/include/ATen/ops/upsample_nearest2d_mps_dispatch.h' 2025-08-14T20:48:16.4461940Z adding 'torch/include/ATen/ops/upsample_nearest2d_native.h' 2025-08-14T20:48:16.4463040Z adding 'torch/include/ATen/ops/upsample_nearest2d_ops.h' 2025-08-14T20:48:16.4464330Z adding 'torch/include/ATen/ops/upsample_nearest3d.h' 2025-08-14T20:48:16.4465600Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward.h' 2025-08-14T20:48:16.4466880Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.4467740Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_cpu_dispatch.h' 2025-08-14T20:48:16.4468690Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_cuda_dispatch.h' 2025-08-14T20:48:16.4469590Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_meta.h' 2025-08-14T20:48:16.4470690Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_meta_dispatch.h' 2025-08-14T20:48:16.4471600Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_mps_dispatch.h' 2025-08-14T20:48:16.4472500Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_native.h' 2025-08-14T20:48:16.4473520Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_ops.h' 2025-08-14T20:48:16.4474740Z adding 'torch/include/ATen/ops/upsample_nearest3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.4475600Z adding 'torch/include/ATen/ops/upsample_nearest3d_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.4476460Z adding 'torch/include/ATen/ops/upsample_nearest3d_cpu_dispatch.h' 2025-08-14T20:48:16.4477360Z adding 'torch/include/ATen/ops/upsample_nearest3d_cuda_dispatch.h' 2025-08-14T20:48:16.4478430Z adding 'torch/include/ATen/ops/upsample_nearest3d_meta.h' 2025-08-14T20:48:16.4479390Z adding 'torch/include/ATen/ops/upsample_nearest3d_meta_dispatch.h' 2025-08-14T20:48:16.4480240Z adding 'torch/include/ATen/ops/upsample_nearest3d_mps_dispatch.h' 2025-08-14T20:48:16.4481180Z adding 'torch/include/ATen/ops/upsample_nearest3d_native.h' 2025-08-14T20:48:16.4482430Z adding 'torch/include/ATen/ops/upsample_nearest3d_ops.h' 2025-08-14T20:48:16.4483780Z adding 'torch/include/ATen/ops/upsample_trilinear3d.h' 2025-08-14T20:48:16.4485180Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward.h' 2025-08-14T20:48:16.4486490Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.4487600Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_cpu_dispatch.h' 2025-08-14T20:48:16.4488580Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_cuda_dispatch.h' 2025-08-14T20:48:16.4489470Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_meta.h' 2025-08-14T20:48:16.4490390Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_meta_dispatch.h' 2025-08-14T20:48:16.4491480Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_mps_dispatch.h' 2025-08-14T20:48:16.4492420Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_native.h' 2025-08-14T20:48:16.4493450Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_ops.h' 2025-08-14T20:48:16.4494480Z adding 'torch/include/ATen/ops/upsample_trilinear3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.4495520Z adding 'torch/include/ATen/ops/upsample_trilinear3d_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.4496400Z adding 'torch/include/ATen/ops/upsample_trilinear3d_cpu_dispatch.h' 2025-08-14T20:48:16.4497330Z adding 'torch/include/ATen/ops/upsample_trilinear3d_cuda_dispatch.h' 2025-08-14T20:48:16.4498140Z adding 'torch/include/ATen/ops/upsample_trilinear3d_meta.h' 2025-08-14T20:48:16.4499250Z adding 'torch/include/ATen/ops/upsample_trilinear3d_meta_dispatch.h' 2025-08-14T20:48:16.4500160Z adding 'torch/include/ATen/ops/upsample_trilinear3d_mps_dispatch.h' 2025-08-14T20:48:16.4501060Z adding 'torch/include/ATen/ops/upsample_trilinear3d_native.h' 2025-08-14T20:48:16.4502110Z adding 'torch/include/ATen/ops/upsample_trilinear3d_ops.h' 2025-08-14T20:48:16.4503310Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward.h' 2025-08-14T20:48:16.4504350Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.4505170Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward_native.h' 2025-08-14T20:48:16.4506110Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward_ops.h' 2025-08-14T20:48:16.4507070Z adding 'torch/include/ATen/ops/values.h' 2025-08-14T20:48:16.4508050Z adding 'torch/include/ATen/ops/values_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.4508860Z adding 'torch/include/ATen/ops/values_copy.h' 2025-08-14T20:48:16.4509830Z adding 'torch/include/ATen/ops/values_copy_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.4510950Z adding 'torch/include/ATen/ops/values_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.4511680Z adding 'torch/include/ATen/ops/values_copy_native.h' 2025-08-14T20:48:16.4512600Z adding 'torch/include/ATen/ops/values_copy_ops.h' 2025-08-14T20:48:16.4513460Z adding 'torch/include/ATen/ops/values_native.h' 2025-08-14T20:48:16.4514530Z adding 'torch/include/ATen/ops/values_ops.h' 2025-08-14T20:48:16.4515480Z adding 'torch/include/ATen/ops/values_sparsemps_dispatch.h' 2025-08-14T20:48:16.4516320Z adding 'torch/include/ATen/ops/vander.h' 2025-08-14T20:48:16.4517300Z adding 'torch/include/ATen/ops/vander_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.4518270Z adding 'torch/include/ATen/ops/vander_native.h' 2025-08-14T20:48:16.4519190Z adding 'torch/include/ATen/ops/vander_ops.h' 2025-08-14T20:48:16.4520340Z adding 'torch/include/ATen/ops/var.h' 2025-08-14T20:48:16.4521390Z adding 'torch/include/ATen/ops/var_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.4522440Z adding 'torch/include/ATen/ops/var_cpu_dispatch.h' 2025-08-14T20:48:16.4523340Z adding 'torch/include/ATen/ops/var_cuda_dispatch.h' 2025-08-14T20:48:16.4524380Z adding 'torch/include/ATen/ops/var_mean.h' 2025-08-14T20:48:16.4525400Z adding 'torch/include/ATen/ops/var_mean_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.4526550Z adding 'torch/include/ATen/ops/var_mean_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.4527360Z adding 'torch/include/ATen/ops/var_mean_cpu_dispatch.h' 2025-08-14T20:48:16.4528210Z adding 'torch/include/ATen/ops/var_mean_cuda_dispatch.h' 2025-08-14T20:48:16.4529030Z adding 'torch/include/ATen/ops/var_mean_mps_dispatch.h' 2025-08-14T20:48:16.4530130Z adding 'torch/include/ATen/ops/var_mean_native.h' 2025-08-14T20:48:16.4531350Z adding 'torch/include/ATen/ops/var_mean_ops.h' 2025-08-14T20:48:16.4532260Z adding 'torch/include/ATen/ops/var_mps_dispatch.h' 2025-08-14T20:48:16.4533180Z adding 'torch/include/ATen/ops/var_native.h' 2025-08-14T20:48:16.4534880Z adding 'torch/include/ATen/ops/var_ops.h' 2025-08-14T20:48:16.4535640Z adding 'torch/include/ATen/ops/vdot.h' 2025-08-14T20:48:16.4536640Z adding 'torch/include/ATen/ops/vdot_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.4537450Z adding 'torch/include/ATen/ops/vdot_cpu_dispatch.h' 2025-08-14T20:48:16.4538490Z adding 'torch/include/ATen/ops/vdot_cuda_dispatch.h' 2025-08-14T20:48:16.4539350Z adding 'torch/include/ATen/ops/vdot_native.h' 2025-08-14T20:48:16.4540300Z adding 'torch/include/ATen/ops/vdot_ops.h' 2025-08-14T20:48:16.4541190Z adding 'torch/include/ATen/ops/view.h' 2025-08-14T20:48:16.4542230Z adding 'torch/include/ATen/ops/view_as.h' 2025-08-14T20:48:16.4543140Z adding 'torch/include/ATen/ops/view_as_complex.h' 2025-08-14T20:48:16.4544060Z adding 'torch/include/ATen/ops/view_as_complex_copy.h' 2025-08-14T20:48:16.4545010Z adding 'torch/include/ATen/ops/view_as_complex_copy_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.4546120Z adding 'torch/include/ATen/ops/view_as_complex_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.4546860Z adding 'torch/include/ATen/ops/view_as_complex_copy_native.h' 2025-08-14T20:48:16.4547780Z adding 'torch/include/ATen/ops/view_as_complex_copy_ops.h' 2025-08-14T20:48:16.4548650Z adding 'torch/include/ATen/ops/view_as_complex_cpu_dispatch.h' 2025-08-14T20:48:16.4549680Z adding 'torch/include/ATen/ops/view_as_complex_cuda_dispatch.h' 2025-08-14T20:48:16.4550530Z adding 'torch/include/ATen/ops/view_as_complex_meta_dispatch.h' 2025-08-14T20:48:16.4551370Z adding 'torch/include/ATen/ops/view_as_complex_mps_dispatch.h' 2025-08-14T20:48:16.4552210Z adding 'torch/include/ATen/ops/view_as_complex_native.h' 2025-08-14T20:48:16.4553370Z adding 'torch/include/ATen/ops/view_as_complex_ops.h' 2025-08-14T20:48:16.4554340Z adding 'torch/include/ATen/ops/view_as_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.4555120Z adding 'torch/include/ATen/ops/view_as_native.h' 2025-08-14T20:48:16.4556100Z adding 'torch/include/ATen/ops/view_as_ops.h' 2025-08-14T20:48:16.4557230Z adding 'torch/include/ATen/ops/view_as_real.h' 2025-08-14T20:48:16.4558200Z adding 'torch/include/ATen/ops/view_as_real_copy.h' 2025-08-14T20:48:16.4559330Z adding 'torch/include/ATen/ops/view_as_real_copy_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.4560320Z adding 'torch/include/ATen/ops/view_as_real_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.4561270Z adding 'torch/include/ATen/ops/view_as_real_copy_native.h' 2025-08-14T20:48:16.4562220Z adding 'torch/include/ATen/ops/view_as_real_copy_ops.h' 2025-08-14T20:48:16.4563090Z adding 'torch/include/ATen/ops/view_as_real_cpu_dispatch.h' 2025-08-14T20:48:16.4563920Z adding 'torch/include/ATen/ops/view_as_real_cuda_dispatch.h' 2025-08-14T20:48:16.4564960Z adding 'torch/include/ATen/ops/view_as_real_meta_dispatch.h' 2025-08-14T20:48:16.4565790Z adding 'torch/include/ATen/ops/view_as_real_mps_dispatch.h' 2025-08-14T20:48:16.4566690Z adding 'torch/include/ATen/ops/view_as_real_native.h' 2025-08-14T20:48:16.4567640Z adding 'torch/include/ATen/ops/view_as_real_ops.h' 2025-08-14T20:48:16.4568780Z adding 'torch/include/ATen/ops/view_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.4569820Z adding 'torch/include/ATen/ops/view_copy.h' 2025-08-14T20:48:16.4570840Z adding 'torch/include/ATen/ops/view_copy_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.4571770Z adding 'torch/include/ATen/ops/view_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.4572730Z adding 'torch/include/ATen/ops/view_copy_native.h' 2025-08-14T20:48:16.4573760Z adding 'torch/include/ATen/ops/view_copy_ops.h' 2025-08-14T20:48:16.4574680Z adding 'torch/include/ATen/ops/view_cpu_dispatch.h' 2025-08-14T20:48:16.4575530Z adding 'torch/include/ATen/ops/view_cuda_dispatch.h' 2025-08-14T20:48:16.4576550Z adding 'torch/include/ATen/ops/view_meta_dispatch.h' 2025-08-14T20:48:16.4577390Z adding 'torch/include/ATen/ops/view_mps_dispatch.h' 2025-08-14T20:48:16.4578210Z adding 'torch/include/ATen/ops/view_native.h' 2025-08-14T20:48:16.4579170Z adding 'torch/include/ATen/ops/view_ops.h' 2025-08-14T20:48:16.4580240Z adding 'torch/include/ATen/ops/vsplit.h' 2025-08-14T20:48:16.4581230Z adding 'torch/include/ATen/ops/vsplit_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.4581980Z adding 'torch/include/ATen/ops/vsplit_native.h' 2025-08-14T20:48:16.4582940Z adding 'torch/include/ATen/ops/vsplit_ops.h' 2025-08-14T20:48:16.4584030Z adding 'torch/include/ATen/ops/vstack.h' 2025-08-14T20:48:16.4585040Z adding 'torch/include/ATen/ops/vstack_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.4585800Z adding 'torch/include/ATen/ops/vstack_native.h' 2025-08-14T20:48:16.4586810Z adding 'torch/include/ATen/ops/vstack_ops.h' 2025-08-14T20:48:16.4588020Z adding 'torch/include/ATen/ops/where.h' 2025-08-14T20:48:16.4589020Z adding 'torch/include/ATen/ops/where_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.4589850Z adding 'torch/include/ATen/ops/where_cpu_dispatch.h' 2025-08-14T20:48:16.4590680Z adding 'torch/include/ATen/ops/where_cuda_dispatch.h' 2025-08-14T20:48:16.4591690Z adding 'torch/include/ATen/ops/where_mps_dispatch.h' 2025-08-14T20:48:16.4592600Z adding 'torch/include/ATen/ops/where_native.h' 2025-08-14T20:48:16.4593780Z adding 'torch/include/ATen/ops/where_ops.h' 2025-08-14T20:48:16.4594840Z adding 'torch/include/ATen/ops/xlogy.h' 2025-08-14T20:48:16.4596100Z adding 'torch/include/ATen/ops/xlogy_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.4597030Z adding 'torch/include/ATen/ops/xlogy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-14T20:48:16.4597840Z adding 'torch/include/ATen/ops/xlogy_cpu_dispatch.h' 2025-08-14T20:48:16.4598940Z adding 'torch/include/ATen/ops/xlogy_cuda_dispatch.h' 2025-08-14T20:48:16.4599700Z adding 'torch/include/ATen/ops/xlogy_meta.h' 2025-08-14T20:48:16.4600670Z adding 'torch/include/ATen/ops/xlogy_meta_dispatch.h' 2025-08-14T20:48:16.4601500Z adding 'torch/include/ATen/ops/xlogy_mps_dispatch.h' 2025-08-14T20:48:16.4602470Z adding 'torch/include/ATen/ops/xlogy_native.h' 2025-08-14T20:48:16.4603960Z adding 'torch/include/ATen/ops/xlogy_ops.h' 2025-08-14T20:48:16.4605420Z adding 'torch/include/ATen/ops/xor.h' 2025-08-14T20:48:16.4606660Z adding 'torch/include/ATen/ops/xor_compositeimplicitautograd_dispatch.h' 2025-08-14T20:48:16.4607600Z adding 'torch/include/ATen/ops/xor_native.h' 2025-08-14T20:48:16.4608740Z adding 'torch/include/ATen/ops/xor_ops.h' 2025-08-14T20:48:16.4609760Z adding 'torch/include/ATen/ops/zero.h' 2025-08-14T20:48:16.4610800Z adding 'torch/include/ATen/ops/zero_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.4611640Z adding 'torch/include/ATen/ops/zero_cpu_dispatch.h' 2025-08-14T20:48:16.4612510Z adding 'torch/include/ATen/ops/zero_cuda_dispatch.h' 2025-08-14T20:48:16.4613350Z adding 'torch/include/ATen/ops/zero_meta_dispatch.h' 2025-08-14T20:48:16.4614180Z adding 'torch/include/ATen/ops/zero_mps_dispatch.h' 2025-08-14T20:48:16.4615070Z adding 'torch/include/ATen/ops/zero_native.h' 2025-08-14T20:48:16.4616060Z adding 'torch/include/ATen/ops/zero_ops.h' 2025-08-14T20:48:16.4617470Z adding 'torch/include/ATen/ops/zeros.h' 2025-08-14T20:48:16.4618580Z adding 'torch/include/ATen/ops/zeros_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.4619580Z adding 'torch/include/ATen/ops/zeros_like.h' 2025-08-14T20:48:16.4620610Z adding 'torch/include/ATen/ops/zeros_like_compositeexplicitautograd_dispatch.h' 2025-08-14T20:48:16.4621600Z adding 'torch/include/ATen/ops/zeros_like_compositeimplicitautogradnestedtensor_dispatch.h' 2025-08-14T20:48:16.4622410Z adding 'torch/include/ATen/ops/zeros_like_native.h' 2025-08-14T20:48:16.4623470Z adding 'torch/include/ATen/ops/zeros_like_ops.h' 2025-08-14T20:48:16.4624390Z adding 'torch/include/ATen/ops/zeros_native.h' 2025-08-14T20:48:16.4625490Z adding 'torch/include/ATen/ops/zeros_ops.h' 2025-08-14T20:48:16.4628790Z adding 'torch/include/ATen/quantized/QTensorImpl.h' 2025-08-14T20:48:16.4630920Z adding 'torch/include/ATen/quantized/Quantizer.h' 2025-08-14T20:48:16.4632000Z adding 'torch/include/ATen/xpu/CachingHostAllocator.h' 2025-08-14T20:48:16.4632880Z adding 'torch/include/ATen/xpu/PinnedMemoryAllocator.h' 2025-08-14T20:48:16.4633720Z adding 'torch/include/ATen/xpu/XPUContext.h' 2025-08-14T20:48:16.4634560Z adding 'torch/include/ATen/xpu/XPUDevice.h' 2025-08-14T20:48:16.4636560Z adding 'torch/include/ATen/xpu/XPUEvent.h' 2025-08-14T20:48:16.4637170Z adding 'torch/include/ATen/xpu/XPUGeneratorImpl.h' 2025-08-14T20:48:16.4638390Z adding 'torch/include/ATen/xpu/detail/XPUHooks.h' 2025-08-14T20:48:16.4643150Z adding 'torch/include/c10/core/Allocator.h' 2025-08-14T20:48:16.4646440Z adding 'torch/include/c10/core/AllocatorConfig.h' 2025-08-14T20:48:16.4647230Z adding 'torch/include/c10/core/AutogradState.h' 2025-08-14T20:48:16.4649730Z adding 'torch/include/c10/core/Backend.h' 2025-08-14T20:48:16.4650470Z adding 'torch/include/c10/core/CPUAllocator.h' 2025-08-14T20:48:16.4652120Z adding 'torch/include/c10/core/CachingDeviceAllocator.h' 2025-08-14T20:48:16.4653050Z adding 'torch/include/c10/core/CompileTimeFunctionPointer.h' 2025-08-14T20:48:16.4654160Z adding 'torch/include/c10/core/ConstantSymNodeImpl.h' 2025-08-14T20:48:16.4656100Z adding 'torch/include/c10/core/Contiguity.h' 2025-08-14T20:48:16.4656820Z adding 'torch/include/c10/core/CopyBytes.h' 2025-08-14T20:48:16.4657640Z adding 'torch/include/c10/core/DefaultDtype.h' 2025-08-14T20:48:16.4658580Z adding 'torch/include/c10/core/DefaultTensorOptions.h' 2025-08-14T20:48:16.4660740Z adding 'torch/include/c10/core/Device.h' 2025-08-14T20:48:16.4661330Z adding 'torch/include/c10/core/DeviceArray.h' 2025-08-14T20:48:16.4663620Z adding 'torch/include/c10/core/DeviceGuard.h' 2025-08-14T20:48:16.4664830Z adding 'torch/include/c10/core/DeviceType.h' 2025-08-14T20:48:16.4672660Z adding 'torch/include/c10/core/DispatchKey.h' 2025-08-14T20:48:16.4682210Z adding 'torch/include/c10/core/DispatchKeySet.h' 2025-08-14T20:48:16.4683670Z adding 'torch/include/c10/core/DynamicCast.h' 2025-08-14T20:48:16.4685610Z adding 'torch/include/c10/core/Event.h' 2025-08-14T20:48:16.4686800Z adding 'torch/include/c10/core/GeneratorImpl.h' 2025-08-14T20:48:16.4687790Z adding 'torch/include/c10/core/GradMode.h' 2025-08-14T20:48:16.4689370Z adding 'torch/include/c10/core/InferenceMode.h' 2025-08-14T20:48:16.4690240Z adding 'torch/include/c10/core/Layout.h' 2025-08-14T20:48:16.4693070Z adding 'torch/include/c10/core/MemoryFormat.h' 2025-08-14T20:48:16.4693720Z adding 'torch/include/c10/core/OptionalRef.h' 2025-08-14T20:48:16.4695070Z adding 'torch/include/c10/core/PyHandleCache.h' 2025-08-14T20:48:16.4695990Z adding 'torch/include/c10/core/QEngine.h' 2025-08-14T20:48:16.4697020Z adding 'torch/include/c10/core/QScheme.h' 2025-08-14T20:48:16.4698200Z adding 'torch/include/c10/core/RefcountedDeleter.h' 2025-08-14T20:48:16.4699530Z adding 'torch/include/c10/core/SafePyObject.h' 2025-08-14T20:48:16.4702680Z adding 'torch/include/c10/core/Scalar.h' 2025-08-14T20:48:16.4706630Z adding 'torch/include/c10/core/ScalarType.h' 2025-08-14T20:48:16.4707530Z adding 'torch/include/c10/core/ScalarTypeToTypeMeta.h' 2025-08-14T20:48:16.4709580Z adding 'torch/include/c10/core/Storage.h' 2025-08-14T20:48:16.4712280Z adding 'torch/include/c10/core/StorageImpl.h' 2025-08-14T20:48:16.4714370Z adding 'torch/include/c10/core/Stream.h' 2025-08-14T20:48:16.4715790Z adding 'torch/include/c10/core/StreamGuard.h' 2025-08-14T20:48:16.4717180Z adding 'torch/include/c10/core/SymBool.h' 2025-08-14T20:48:16.4718440Z adding 'torch/include/c10/core/SymFloat.h' 2025-08-14T20:48:16.4721930Z adding 'torch/include/c10/core/SymInt.h' 2025-08-14T20:48:16.4722860Z adding 'torch/include/c10/core/SymIntArrayRef.h' 2025-08-14T20:48:16.4724830Z adding 'torch/include/c10/core/SymNodeImpl.h' 2025-08-14T20:48:16.4726220Z adding 'torch/include/c10/core/SymbolicShapeMeta.h' 2025-08-14T20:48:16.4752780Z adding 'torch/include/c10/core/TensorImpl.h' 2025-08-14T20:48:16.4763960Z adding 'torch/include/c10/core/TensorOptions.h' 2025-08-14T20:48:16.4764200Z adding 'torch/include/c10/core/UndefinedTensorImpl.h' 2025-08-14T20:48:16.4764290Z adding 'torch/include/c10/core/WrapDimMinimal.h' 2025-08-14T20:48:16.4764400Z adding 'torch/include/c10/core/alignment.h' 2025-08-14T20:48:16.4764480Z adding 'torch/include/c10/core/thread_pool.h' 2025-08-14T20:48:16.4764550Z adding 'torch/include/c10/core/impl/COW.h' 2025-08-14T20:48:16.4765720Z adding 'torch/include/c10/core/impl/COWDeleter.h' 2025-08-14T20:48:16.4769210Z adding 'torch/include/c10/core/impl/DeviceGuardImplInterface.h' 2025-08-14T20:48:16.4770170Z adding 'torch/include/c10/core/impl/FakeGuardImpl.h' 2025-08-14T20:48:16.4771140Z adding 'torch/include/c10/core/impl/GPUTrace.h' 2025-08-14T20:48:16.4772380Z adding 'torch/include/c10/core/impl/HermeticPyObjectTLS.h' 2025-08-14T20:48:16.4776080Z adding 'torch/include/c10/core/impl/InlineDeviceGuard.h' 2025-08-14T20:48:16.4777260Z adding 'torch/include/c10/core/impl/InlineEvent.h' 2025-08-14T20:48:16.4779920Z adding 'torch/include/c10/core/impl/InlineStreamGuard.h' 2025-08-14T20:48:16.4781430Z adding 'torch/include/c10/core/impl/LocalDispatchKeySet.h' 2025-08-14T20:48:16.4784190Z adding 'torch/include/c10/core/impl/PyInterpreter.h' 2025-08-14T20:48:16.4784910Z adding 'torch/include/c10/core/impl/PyInterpreterHooks.h' 2025-08-14T20:48:16.4786910Z adding 'torch/include/c10/core/impl/PyObjectSlot.h' 2025-08-14T20:48:16.4787540Z adding 'torch/include/c10/core/impl/PythonDispatcherTLS.h' 2025-08-14T20:48:16.4789730Z adding 'torch/include/c10/core/impl/SizesAndStrides.h' 2025-08-14T20:48:16.4790610Z adding 'torch/include/c10/core/impl/TorchDispatchModeTLS.h' 2025-08-14T20:48:16.4791820Z adding 'torch/include/c10/core/impl/VirtualGuardImpl.h' 2025-08-14T20:48:16.4792670Z adding 'torch/include/c10/core/impl/alloc_cpu.h' 2025-08-14T20:48:16.4794000Z adding 'torch/include/c10/cuda/CUDAAlgorithm.h' 2025-08-14T20:48:16.4795940Z adding 'torch/include/c10/cuda/CUDAAllocatorConfig.h' 2025-08-14T20:48:16.4799580Z adding 'torch/include/c10/cuda/CUDACachingAllocator.h' 2025-08-14T20:48:16.4800830Z adding 'torch/include/c10/cuda/CUDADeviceAssertion.h' 2025-08-14T20:48:16.4803080Z adding 'torch/include/c10/cuda/CUDADeviceAssertionHost.h' 2025-08-14T20:48:16.4804150Z adding 'torch/include/c10/cuda/CUDAException.h' 2025-08-14T20:48:16.4805740Z adding 'torch/include/c10/cuda/CUDAFunctions.h' 2025-08-14T20:48:16.4806740Z adding 'torch/include/c10/cuda/CUDAGraphsC10Utils.h' 2025-08-14T20:48:16.4809290Z adding 'torch/include/c10/cuda/CUDAGuard.h' 2025-08-14T20:48:16.4810060Z adding 'torch/include/c10/cuda/CUDAMacros.h' 2025-08-14T20:48:16.4811190Z adding 'torch/include/c10/cuda/CUDAMathCompat.h' 2025-08-14T20:48:16.4812050Z adding 'torch/include/c10/cuda/CUDAMiscFunctions.h' 2025-08-14T20:48:16.4814940Z adding 'torch/include/c10/cuda/CUDAStream.h' 2025-08-14T20:48:16.4815970Z adding 'torch/include/c10/cuda/driver_api.h' 2025-08-14T20:48:16.4818660Z adding 'torch/include/c10/cuda/impl/CUDAGuardImpl.h' 2025-08-14T20:48:16.4819180Z adding 'torch/include/c10/cuda/impl/CUDATest.h' 2025-08-14T20:48:16.4820160Z adding 'torch/include/c10/macros/Export.h' 2025-08-14T20:48:16.4820930Z adding 'torch/include/c10/macros/Macros.h' 2025-08-14T20:48:16.4821730Z adding 'torch/include/c10/macros/cmake_macros.h' 2025-08-14T20:48:16.4823680Z adding 'torch/include/c10/metal/atomic.h' 2025-08-14T20:48:16.4824380Z adding 'torch/include/c10/metal/common.h' 2025-08-14T20:48:16.4825960Z adding 'torch/include/c10/metal/expm1f.h' 2025-08-14T20:48:16.4829150Z adding 'torch/include/c10/metal/indexing.h' 2025-08-14T20:48:16.4830070Z adding 'torch/include/c10/metal/random.h' 2025-08-14T20:48:16.4832310Z adding 'torch/include/c10/metal/reduction_utils.h' 2025-08-14T20:48:16.4841310Z adding 'torch/include/c10/metal/special_math.h' 2025-08-14T20:48:16.4843380Z adding 'torch/include/c10/metal/utils.h' 2025-08-14T20:48:16.4844840Z adding 'torch/include/c10/mobile/CPUCachingAllocator.h' 2025-08-14T20:48:16.4846770Z adding 'torch/include/c10/mobile/CPUProfilingAllocator.h' 2025-08-14T20:48:16.4847770Z adding 'torch/include/c10/test/util/Macros.h' 2025-08-14T20:48:16.4850530Z adding 'torch/include/c10/test/util/complex_math_test_common.h' 2025-08-14T20:48:16.4853720Z adding 'torch/include/c10/test/util/complex_test_common.h' 2025-08-14T20:48:16.4856040Z adding 'torch/include/c10/util/AbortHandler.h' 2025-08-14T20:48:16.4857360Z adding 'torch/include/c10/util/AlignOf.h' 2025-08-14T20:48:16.4858980Z adding 'torch/include/c10/util/ApproximateClock.h' 2025-08-14T20:48:16.4859660Z adding 'torch/include/c10/util/Array.h' 2025-08-14T20:48:16.4862310Z adding 'torch/include/c10/util/ArrayRef.h' 2025-08-14T20:48:16.4862890Z adding 'torch/include/c10/util/BFloat16-inl.h' 2025-08-14T20:48:16.4865000Z adding 'torch/include/c10/util/BFloat16-math.h' 2025-08-14T20:48:16.4865440Z adding 'torch/include/c10/util/BFloat16.h' 2025-08-14T20:48:16.4866450Z adding 'torch/include/c10/util/Backtrace.h' 2025-08-14T20:48:16.4867700Z adding 'torch/include/c10/util/Bitset.h' 2025-08-14T20:48:16.4868820Z adding 'torch/include/c10/util/C++17.h' 2025-08-14T20:48:16.4869900Z adding 'torch/include/c10/util/CallOnce.h' 2025-08-14T20:48:16.4872420Z adding 'torch/include/c10/util/ConstexprCrc.h' 2025-08-14T20:48:16.4873290Z adding 'torch/include/c10/util/DeadlockDetection.h' 2025-08-14T20:48:16.4874490Z adding 'torch/include/c10/util/Deprecated.h' 2025-08-14T20:48:16.4875350Z adding 'torch/include/c10/util/DimVector.h' 2025-08-14T20:48:16.4876330Z adding 'torch/include/c10/util/DynamicCounter.h' 2025-08-14T20:48:16.4877680Z adding 'torch/include/c10/util/Enumerate.h' 2025-08-14T20:48:16.4883670Z adding 'torch/include/c10/util/Exception.h' 2025-08-14T20:48:16.4885050Z adding 'torch/include/c10/util/ExclusivelyOwned.h' 2025-08-14T20:48:16.4886190Z adding 'torch/include/c10/util/ExclusivelyOwnedTensorTraits.h' 2025-08-14T20:48:16.4887040Z adding 'torch/include/c10/util/FbcodeMaps.h' 2025-08-14T20:48:16.4889620Z adding 'torch/include/c10/util/Flags.h' 2025-08-14T20:48:16.4890140Z adding 'torch/include/c10/util/Float4_e2m1fn_x2.h' 2025-08-14T20:48:16.4890900Z adding 'torch/include/c10/util/Float8_e4m3fn-inl.h' 2025-08-14T20:48:16.4891590Z adding 'torch/include/c10/util/Float8_e4m3fn.h' 2025-08-14T20:48:16.4892440Z adding 'torch/include/c10/util/Float8_e4m3fnuz-inl.h' 2025-08-14T20:48:16.4893120Z adding 'torch/include/c10/util/Float8_e4m3fnuz.h' 2025-08-14T20:48:16.4893820Z adding 'torch/include/c10/util/Float8_e5m2-inl.h' 2025-08-14T20:48:16.4894520Z adding 'torch/include/c10/util/Float8_e5m2.h' 2025-08-14T20:48:16.4895230Z adding 'torch/include/c10/util/Float8_e5m2fnuz-inl.h' 2025-08-14T20:48:16.4895930Z adding 'torch/include/c10/util/Float8_e5m2fnuz.h' 2025-08-14T20:48:16.4896670Z adding 'torch/include/c10/util/Float8_e8m0fnu-inl.h' 2025-08-14T20:48:16.4897360Z adding 'torch/include/c10/util/Float8_e8m0fnu.h' 2025-08-14T20:48:16.4898490Z adding 'torch/include/c10/util/FunctionRef.h' 2025-08-14T20:48:16.4899470Z adding 'torch/include/c10/util/Gauge.h' 2025-08-14T20:48:16.4900180Z adding 'torch/include/c10/util/Half-inl.h' 2025-08-14T20:48:16.4901000Z adding 'torch/include/c10/util/Half.h' 2025-08-14T20:48:16.4902160Z adding 'torch/include/c10/util/IdWrapper.h' 2025-08-14T20:48:16.4903760Z adding 'torch/include/c10/util/IntrusiveList.h' 2025-08-14T20:48:16.4904730Z adding 'torch/include/c10/util/Lazy.h' 2025-08-14T20:48:16.4906930Z adding 'torch/include/c10/util/LeftRight.h' 2025-08-14T20:48:16.4907550Z adding 'torch/include/c10/util/Load.h' 2025-08-14T20:48:16.4910570Z adding 'torch/include/c10/util/Logging.h' 2025-08-14T20:48:16.4911470Z adding 'torch/include/c10/util/MathConstants.h' 2025-08-14T20:48:16.4913530Z adding 'torch/include/c10/util/MaybeOwned.h' 2025-08-14T20:48:16.4915260Z adding 'torch/include/c10/util/Metaprogramming.h' 2025-08-14T20:48:16.4916100Z adding 'torch/include/c10/util/NetworkFlow.h' 2025-08-14T20:48:16.4917100Z adding 'torch/include/c10/util/Optional.h' 2025-08-14T20:48:16.4919040Z adding 'torch/include/c10/util/OptionalArrayRef.h' 2025-08-14T20:48:16.4919540Z adding 'torch/include/c10/util/ParallelGuard.h' 2025-08-14T20:48:16.4922280Z adding 'torch/include/c10/util/Registry.h' 2025-08-14T20:48:16.4923050Z adding 'torch/include/c10/util/ScopeExit.h' 2025-08-14T20:48:16.4924030Z adding 'torch/include/c10/util/Semaphore.h' 2025-08-14T20:48:16.4925040Z adding 'torch/include/c10/util/SmallBuffer.h' 2025-08-14T20:48:16.4935470Z adding 'torch/include/c10/util/SmallVector.h' 2025-08-14T20:48:16.4937720Z adding 'torch/include/c10/util/StringUtil.h' 2025-08-14T20:48:16.4938610Z adding 'torch/include/c10/util/Synchronized.h' 2025-08-14T20:48:16.4940070Z adding 'torch/include/c10/util/ThreadLocal.h' 2025-08-14T20:48:16.4941240Z adding 'torch/include/c10/util/ThreadLocalDebugInfo.h' 2025-08-14T20:48:16.4942180Z adding 'torch/include/c10/util/Type.h' 2025-08-14T20:48:16.4944120Z adding 'torch/include/c10/util/TypeCast.h' 2025-08-14T20:48:16.4945130Z adding 'torch/include/c10/util/TypeIndex.h' 2025-08-14T20:48:16.4948430Z adding 'torch/include/c10/util/TypeList.h' 2025-08-14T20:48:16.4949010Z adding 'torch/include/c10/util/TypeSafeSignMath.h' 2025-08-14T20:48:16.4950920Z adding 'torch/include/c10/util/TypeTraits.h' 2025-08-14T20:48:16.4951330Z adding 'torch/include/c10/util/Unicode.h' 2025-08-14T20:48:16.4953250Z adding 'torch/include/c10/util/UniqueVoidPtr.h' 2025-08-14T20:48:16.4953730Z adding 'torch/include/c10/util/Unroll.h' 2025-08-14T20:48:16.4954910Z adding 'torch/include/c10/util/WaitCounter.h' 2025-08-14T20:48:16.4955840Z adding 'torch/include/c10/util/WaitCounterDynamicBackend.h' 2025-08-14T20:48:16.4956980Z adding 'torch/include/c10/util/accumulate.h' 2025-08-14T20:48:16.4957750Z adding 'torch/include/c10/util/bit_cast.h' 2025-08-14T20:48:16.4958490Z adding 'torch/include/c10/util/bits.h' 2025-08-14T20:48:16.4959530Z adding 'torch/include/c10/util/complex.h' 2025-08-14T20:48:16.4961750Z adding 'torch/include/c10/util/complex_math.h' 2025-08-14T20:48:16.4962450Z adding 'torch/include/c10/util/complex_utils.h' 2025-08-14T20:48:16.4963320Z adding 'torch/include/c10/util/copysign.h' 2025-08-14T20:48:16.4964230Z adding 'torch/include/c10/util/env.h' 2025-08-14T20:48:16.4965030Z adding 'torch/include/c10/util/error.h' 2025-08-14T20:48:16.4975440Z adding 'torch/include/c10/util/flat_hash_map.h' 2025-08-14T20:48:16.4976270Z adding 'torch/include/c10/util/floating_point_utils.h' 2025-08-14T20:48:16.4977470Z adding 'torch/include/c10/util/generic_math.h' 2025-08-14T20:48:16.4980430Z adding 'torch/include/c10/util/hash.h' 2025-08-14T20:48:16.4983430Z adding 'torch/include/c10/util/int128.h' 2025-08-14T20:48:16.4990600Z adding 'torch/include/c10/util/intrusive_ptr.h' 2025-08-14T20:48:16.4991820Z adding 'torch/include/c10/util/irange.h' 2025-08-14T20:48:16.4997570Z adding 'torch/include/c10/util/llvmMathExtras.h' 2025-08-14T20:48:16.4998750Z adding 'torch/include/c10/util/logging_is_google_glog.h' 2025-08-14T20:48:16.5001030Z adding 'torch/include/c10/util/logging_is_not_google_glog.h' 2025-08-14T20:48:16.5001670Z adding 'torch/include/c10/util/numa.h' 2025-08-14T20:48:16.5013200Z adding 'torch/include/c10/util/order_preserving_flat_hash_map.h' 2025-08-14T20:48:16.5014420Z adding 'torch/include/c10/util/overflows.h' 2025-08-14T20:48:16.5015320Z adding 'torch/include/c10/util/overloaded.h' 2025-08-14T20:48:16.5016050Z adding 'torch/include/c10/util/python_stub.h' 2025-08-14T20:48:16.5016780Z adding 'torch/include/c10/util/qint32.h' 2025-08-14T20:48:16.5017490Z adding 'torch/include/c10/util/qint8.h' 2025-08-14T20:48:16.5018220Z adding 'torch/include/c10/util/quint2x4.h' 2025-08-14T20:48:16.5018930Z adding 'torch/include/c10/util/quint4x2.h' 2025-08-14T20:48:16.5019630Z adding 'torch/include/c10/util/quint8.h' 2025-08-14T20:48:16.5020800Z adding 'torch/include/c10/util/safe_numerics.h' 2025-08-14T20:48:16.5022210Z adding 'torch/include/c10/util/signal_handler.h' 2025-08-14T20:48:16.5027470Z adding 'torch/include/c10/util/sparse_bitset.h' 2025-08-14T20:48:16.5028340Z adding 'torch/include/c10/util/ssize.h' 2025-08-14T20:48:16.5029300Z adding 'torch/include/c10/util/static_tracepoint.h' 2025-08-14T20:48:16.5031430Z adding 'torch/include/c10/util/static_tracepoint_elfx86.h' 2025-08-14T20:48:16.5032020Z adding 'torch/include/c10/util/strides.h' 2025-08-14T20:48:16.5032860Z adding 'torch/include/c10/util/string_utils.h' 2025-08-14T20:48:16.5036430Z adding 'torch/include/c10/util/string_view.h' 2025-08-14T20:48:16.5041360Z adding 'torch/include/c10/util/strong_type.h' 2025-08-14T20:48:16.5042370Z adding 'torch/include/c10/util/tempfile.h' 2025-08-14T20:48:16.5043170Z adding 'torch/include/c10/util/thread_name.h' 2025-08-14T20:48:16.5048280Z adding 'torch/include/c10/util/typeid.h' 2025-08-14T20:48:16.5049030Z adding 'torch/include/c10/util/win32-headers.h' 2025-08-14T20:48:16.5050270Z adding 'torch/include/c10/xpu/XPUCachingAllocator.h' 2025-08-14T20:48:16.5052750Z adding 'torch/include/c10/xpu/XPUDeviceProp.h' 2025-08-14T20:48:16.5053430Z adding 'torch/include/c10/xpu/XPUException.h' 2025-08-14T20:48:16.5054450Z adding 'torch/include/c10/xpu/XPUFunctions.h' 2025-08-14T20:48:16.5055330Z adding 'torch/include/c10/xpu/XPUMacros.h' 2025-08-14T20:48:16.5057620Z adding 'torch/include/c10/xpu/XPUStream.h' 2025-08-14T20:48:16.5059790Z adding 'torch/include/c10/xpu/impl/XPUGuardImpl.h' 2025-08-14T20:48:16.5061030Z adding 'torch/include/c10/xpu/test/impl/XPUTest.h' 2025-08-14T20:48:16.5063010Z adding 'torch/include/caffe2/core/common.h' 2025-08-14T20:48:16.5063850Z adding 'torch/include/caffe2/core/macros.h' 2025-08-14T20:48:16.5064830Z adding 'torch/include/caffe2/core/timer.h' 2025-08-14T20:48:16.5067420Z adding 'torch/include/caffe2/perfkernels/batch_box_cox_vec.h' 2025-08-14T20:48:16.5068720Z adding 'torch/include/caffe2/perfkernels/common.h' 2025-08-14T20:48:16.5069860Z adding 'torch/include/caffe2/perfkernels/embedding_lookup_idx.h' 2025-08-14T20:48:16.5095180Z adding 'torch/include/caffe2/serialize/crc_alt.h' 2025-08-14T20:48:16.5096320Z adding 'torch/include/caffe2/serialize/file_adapter.h' 2025-08-14T20:48:16.5097270Z adding 'torch/include/caffe2/serialize/in_memory_adapter.h' 2025-08-14T20:48:16.5100140Z adding 'torch/include/caffe2/serialize/inline_container.h' 2025-08-14T20:48:16.5100850Z adding 'torch/include/caffe2/serialize/istream_adapter.h' 2025-08-14T20:48:16.5101860Z adding 'torch/include/caffe2/serialize/read_adapter_interface.h' 2025-08-14T20:48:16.5103990Z adding 'torch/include/caffe2/serialize/versions.h' 2025-08-14T20:48:16.5105340Z adding 'torch/include/caffe2/utils/fixed_divisor.h' 2025-08-14T20:48:16.5106250Z adding 'torch/include/caffe2/utils/proto_wrap.h' 2025-08-14T20:48:16.5107200Z adding 'torch/include/caffe2/utils/string_utils.h' 2025-08-14T20:48:16.5108710Z adding 'torch/include/caffe2/utils/threadpool/ThreadPool.h' 2025-08-14T20:48:16.5109620Z adding 'torch/include/caffe2/utils/threadpool/ThreadPoolCommon.h' 2025-08-14T20:48:16.5112790Z adding 'torch/include/caffe2/utils/threadpool/WorkersPool.h' 2025-08-14T20:48:16.5113630Z adding 'torch/include/caffe2/utils/threadpool/pthreadpool-cpp.h' 2025-08-14T20:48:16.5115190Z adding 'torch/include/caffe2/utils/threadpool/pthreadpool.h' 2025-08-14T20:48:16.5116080Z adding 'torch/include/caffe2/utils/threadpool/thread_pool_guard.h' 2025-08-14T20:48:16.5118600Z adding 'torch/include/fmt/args.h' 2025-08-14T20:48:16.5141460Z adding 'torch/include/fmt/base.h' 2025-08-14T20:48:16.5156590Z adding 'torch/include/fmt/chrono.h' 2025-08-14T20:48:16.5162240Z adding 'torch/include/fmt/color.h' 2025-08-14T20:48:16.5166040Z adding 'torch/include/fmt/compile.h' 2025-08-14T20:48:16.5166690Z adding 'torch/include/fmt/core.h' 2025-08-14T20:48:16.5186330Z adding 'torch/include/fmt/format-inl.h' 2025-08-14T20:48:16.5222190Z adding 'torch/include/fmt/format.h' 2025-08-14T20:48:16.5226050Z adding 'torch/include/fmt/os.h' 2025-08-14T20:48:16.5227510Z adding 'torch/include/fmt/ostream.h' 2025-08-14T20:48:16.5232180Z adding 'torch/include/fmt/printf.h' 2025-08-14T20:48:16.5237210Z adding 'torch/include/fmt/ranges.h' 2025-08-14T20:48:16.5241480Z adding 'torch/include/fmt/std.h' 2025-08-14T20:48:16.5243970Z adding 'torch/include/fmt/xchar.h' 2025-08-14T20:48:16.5245140Z adding 'torch/include/fp16/bitcasts.h' 2025-08-14T20:48:16.5248740Z adding 'torch/include/fp16/fp16.h' 2025-08-14T20:48:16.5250120Z adding 'torch/include/fp16/psimd.h' 2025-08-14T20:48:16.5253050Z adding 'torch/include/google/protobuf/any.h' 2025-08-14T20:48:16.5255750Z adding 'torch/include/google/protobuf/any.pb.h' 2025-08-14T20:48:16.5262210Z adding 'torch/include/google/protobuf/api.pb.h' 2025-08-14T20:48:16.5269240Z adding 'torch/include/google/protobuf/arena.h' 2025-08-14T20:48:16.5272910Z adding 'torch/include/google/protobuf/arena_impl.h' 2025-08-14T20:48:16.5276120Z adding 'torch/include/google/protobuf/arenastring.h' 2025-08-14T20:48:16.5295620Z adding 'torch/include/google/protobuf/descriptor.h' 2025-08-14T20:48:16.5345830Z adding 'torch/include/google/protobuf/descriptor.pb.h' 2025-08-14T20:48:16.5352420Z adding 'torch/include/google/protobuf/descriptor_database.h' 2025-08-14T20:48:16.5354620Z adding 'torch/include/google/protobuf/duration.pb.h' 2025-08-14T20:48:16.5357350Z adding 'torch/include/google/protobuf/dynamic_message.h' 2025-08-14T20:48:16.5359090Z adding 'torch/include/google/protobuf/empty.pb.h' 2025-08-14T20:48:16.5373080Z adding 'torch/include/google/protobuf/extension_set.h' 2025-08-14T20:48:16.5375920Z adding 'torch/include/google/protobuf/extension_set_inl.h' 2025-08-14T20:48:16.5378160Z adding 'torch/include/google/protobuf/field_mask.pb.h' 2025-08-14T20:48:16.5379460Z adding 'torch/include/google/protobuf/generated_enum_reflection.h' 2025-08-14T20:48:16.5381530Z adding 'torch/include/google/protobuf/generated_enum_util.h' 2025-08-14T20:48:16.5384470Z adding 'torch/include/google/protobuf/generated_message_reflection.h' 2025-08-14T20:48:16.5387420Z adding 'torch/include/google/protobuf/generated_message_table_driven.h' 2025-08-14T20:48:16.5389810Z adding 'torch/include/google/protobuf/generated_message_util.h' 2025-08-14T20:48:16.5390840Z adding 'torch/include/google/protobuf/has_bits.h' 2025-08-14T20:48:16.5393330Z adding 'torch/include/google/protobuf/implicit_weak_message.h' 2025-08-14T20:48:16.5395450Z adding 'torch/include/google/protobuf/inlined_string_field.h' 2025-08-14T20:48:16.5405370Z adding 'torch/include/google/protobuf/map.h' 2025-08-14T20:48:16.5407660Z adding 'torch/include/google/protobuf/map_entry.h' 2025-08-14T20:48:16.5412990Z adding 'torch/include/google/protobuf/map_entry_lite.h' 2025-08-14T20:48:16.5419010Z adding 'torch/include/google/protobuf/map_field.h' 2025-08-14T20:48:16.5422180Z adding 'torch/include/google/protobuf/map_field_inl.h' 2025-08-14T20:48:16.5424260Z adding 'torch/include/google/protobuf/map_field_lite.h' 2025-08-14T20:48:16.5429390Z adding 'torch/include/google/protobuf/map_type_handler.h' 2025-08-14T20:48:16.5442930Z adding 'torch/include/google/protobuf/message.h' 2025-08-14T20:48:16.5449940Z adding 'torch/include/google/protobuf/message_lite.h' 2025-08-14T20:48:16.5451010Z adding 'torch/include/google/protobuf/metadata.h' 2025-08-14T20:48:16.5453420Z adding 'torch/include/google/protobuf/metadata_lite.h' 2025-08-14T20:48:16.5459670Z adding 'torch/include/google/protobuf/parse_context.h' 2025-08-14T20:48:16.5460660Z adding 'torch/include/google/protobuf/port.h' 2025-08-14T20:48:16.5465010Z adding 'torch/include/google/protobuf/reflection.h' 2025-08-14T20:48:16.5466260Z adding 'torch/include/google/protobuf/reflection_ops.h' 2025-08-14T20:48:16.5487190Z adding 'torch/include/google/protobuf/repeated_field.h' 2025-08-14T20:48:16.5491130Z adding 'torch/include/google/protobuf/service.h' 2025-08-14T20:48:16.5493490Z adding 'torch/include/google/protobuf/source_context.pb.h' 2025-08-14T20:48:16.5499400Z adding 'torch/include/google/protobuf/struct.pb.h' 2025-08-14T20:48:16.5505680Z adding 'torch/include/google/protobuf/text_format.h' 2025-08-14T20:48:16.5507940Z adding 'torch/include/google/protobuf/timestamp.pb.h' 2025-08-14T20:48:16.5519080Z adding 'torch/include/google/protobuf/type.pb.h' 2025-08-14T20:48:16.5522750Z adding 'torch/include/google/protobuf/unknown_field_set.h' 2025-08-14T20:48:16.5526350Z adding 'torch/include/google/protobuf/wire_format.h' 2025-08-14T20:48:16.5539200Z adding 'torch/include/google/protobuf/wire_format_lite.h' 2025-08-14T20:48:16.5545140Z adding 'torch/include/google/protobuf/wrappers.pb.h' 2025-08-14T20:48:16.5548200Z adding 'torch/include/google/protobuf/compiler/code_generator.h' 2025-08-14T20:48:16.5553350Z adding 'torch/include/google/protobuf/compiler/command_line_interface.h' 2025-08-14T20:48:16.5556800Z adding 'torch/include/google/protobuf/compiler/importer.h' 2025-08-14T20:48:16.5562950Z adding 'torch/include/google/protobuf/compiler/parser.h' 2025-08-14T20:48:16.5564410Z adding 'torch/include/google/protobuf/compiler/plugin.h' 2025-08-14T20:48:16.5573160Z adding 'torch/include/google/protobuf/compiler/plugin.pb.h' 2025-08-14T20:48:16.5575520Z adding 'torch/include/google/protobuf/compiler/cpp/cpp_generator.h' 2025-08-14T20:48:16.5576750Z adding 'torch/include/google/protobuf/compiler/csharp/csharp_generator.h' 2025-08-14T20:48:16.5578250Z adding 'torch/include/google/protobuf/compiler/csharp/csharp_names.h' 2025-08-14T20:48:16.5579730Z adding 'torch/include/google/protobuf/compiler/java/java_generator.h' 2025-08-14T20:48:16.5580970Z adding 'torch/include/google/protobuf/compiler/java/java_names.h' 2025-08-14T20:48:16.5584250Z adding 'torch/include/google/protobuf/compiler/js/js_generator.h' 2025-08-14T20:48:16.5585190Z adding 'torch/include/google/protobuf/compiler/js/well_known_types_embed.h' 2025-08-14T20:48:16.5586760Z adding 'torch/include/google/protobuf/compiler/objectivec/objectivec_generator.h' 2025-08-14T20:48:16.5589780Z adding 'torch/include/google/protobuf/compiler/objectivec/objectivec_helpers.h' 2025-08-14T20:48:16.5591110Z adding 'torch/include/google/protobuf/compiler/php/php_generator.h' 2025-08-14T20:48:16.5593400Z adding 'torch/include/google/protobuf/compiler/python/python_generator.h' 2025-08-14T20:48:16.5594480Z adding 'torch/include/google/protobuf/compiler/ruby/ruby_generator.h' 2025-08-14T20:48:16.5611460Z adding 'torch/include/google/protobuf/io/coded_stream.h' 2025-08-14T20:48:16.5613760Z adding 'torch/include/google/protobuf/io/gzip_stream.h' 2025-08-14T20:48:16.5615190Z adding 'torch/include/google/protobuf/io/io_win32.h' 2025-08-14T20:48:16.5619120Z adding 'torch/include/google/protobuf/io/printer.h' 2025-08-14T20:48:16.5620160Z adding 'torch/include/google/protobuf/io/strtod.h' 2025-08-14T20:48:16.5624690Z adding 'torch/include/google/protobuf/io/tokenizer.h' 2025-08-14T20:48:16.5627540Z adding 'torch/include/google/protobuf/io/zero_copy_stream.h' 2025-08-14T20:48:16.5629920Z adding 'torch/include/google/protobuf/io/zero_copy_stream_impl.h' 2025-08-14T20:48:16.5633510Z adding 'torch/include/google/protobuf/io/zero_copy_stream_impl_lite.h' 2025-08-14T20:48:16.5636670Z adding 'torch/include/google/protobuf/stubs/bytestream.h' 2025-08-14T20:48:16.5639270Z adding 'torch/include/google/protobuf/stubs/callback.h' 2025-08-14T20:48:16.5640870Z adding 'torch/include/google/protobuf/stubs/casts.h' 2025-08-14T20:48:16.5643150Z adding 'torch/include/google/protobuf/stubs/common.h' 2025-08-14T20:48:16.5644610Z adding 'torch/include/google/protobuf/stubs/fastmem.h' 2025-08-14T20:48:16.5646020Z adding 'torch/include/google/protobuf/stubs/hash.h' 2025-08-14T20:48:16.5648470Z adding 'torch/include/google/protobuf/stubs/logging.h' 2025-08-14T20:48:16.5649920Z adding 'torch/include/google/protobuf/stubs/macros.h' 2025-08-14T20:48:16.5655620Z adding 'torch/include/google/protobuf/stubs/map_util.h' 2025-08-14T20:48:16.5657180Z adding 'torch/include/google/protobuf/stubs/mutex.h' 2025-08-14T20:48:16.5658300Z adding 'torch/include/google/protobuf/stubs/once.h' 2025-08-14T20:48:16.5659830Z adding 'torch/include/google/protobuf/stubs/platform_macros.h' 2025-08-14T20:48:16.5662680Z adding 'torch/include/google/protobuf/stubs/port.h' 2025-08-14T20:48:16.5663870Z adding 'torch/include/google/protobuf/stubs/status.h' 2025-08-14T20:48:16.5665220Z adding 'torch/include/google/protobuf/stubs/stl_util.h' 2025-08-14T20:48:16.5669540Z adding 'torch/include/google/protobuf/stubs/stringpiece.h' 2025-08-14T20:48:16.5677140Z adding 'torch/include/google/protobuf/stubs/strutil.h' 2025-08-14T20:48:16.5678710Z adding 'torch/include/google/protobuf/stubs/template_util.h' 2025-08-14T20:48:16.5680870Z adding 'torch/include/google/protobuf/util/delimited_message_util.h' 2025-08-14T20:48:16.5683290Z adding 'torch/include/google/protobuf/util/field_comparator.h' 2025-08-14T20:48:16.5685890Z adding 'torch/include/google/protobuf/util/field_mask_util.h' 2025-08-14T20:48:16.5687720Z adding 'torch/include/google/protobuf/util/json_util.h' 2025-08-14T20:48:16.5698630Z adding 'torch/include/google/protobuf/util/message_differencer.h' 2025-08-14T20:48:16.5701360Z adding 'torch/include/google/protobuf/util/time_util.h' 2025-08-14T20:48:16.5702360Z adding 'torch/include/google/protobuf/util/type_resolver.h' 2025-08-14T20:48:16.5703460Z adding 'torch/include/google/protobuf/util/type_resolver_util.h' 2025-08-14T20:48:16.5705780Z adding 'torch/include/kai/kai_common.h' 2025-08-14T20:48:16.5708950Z adding 'torch/include/kai/ukernels/matmul/imatmul_clamp_f16_f16p_f16p/kai_imatmul_clamp_f16_f16p2vlx2_f16p2vlx2_2vlx2vl_sme2_mopa.h' 2025-08-14T20:48:16.5709600Z adding 'torch/include/kai/ukernels/matmul/imatmul_clamp_f16_f16p_f16p/kai_imatmul_clamp_f16_f16p_f16p_interface.h' 2025-08-14T20:48:16.5711200Z adding 'torch/include/kai/ukernels/matmul/imatmul_clamp_f32_f32p_f32p/kai_imatmul_clamp_f32_f32p2vlx1_f32p2vlx1b_2vlx2vl_sme2_mopa.h' 2025-08-14T20:48:16.5712250Z adding 'torch/include/kai/ukernels/matmul/imatmul_clamp_f32_f32p_f32p/kai_imatmul_clamp_f32_f32p_f32p_interface.h' 2025-08-14T20:48:16.5714100Z adding 'torch/include/kai/ukernels/matmul/imatmul_clamp_qai8_qai8p_qsi8cxp/kai_imatmul_clamp_qai8_qai8p2vlx4_qsi8cxpsb2vlx4_2vlx2vl_sme2_mopa.h' 2025-08-14T20:48:16.5714840Z adding 'torch/include/kai/ukernels/matmul/imatmul_clamp_qai8_qai8p_qsi8cxp/kai_imatmul_clamp_qai8_qai8p_qsi8cxp_interface.h' 2025-08-14T20:48:16.5716540Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_bf16p_bf16p/kai_matmul_clamp_f16_bf16p8x4_bf16p12x4b_8x12_neon_mmla.h' 2025-08-14T20:48:16.5717520Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_bf16p_bf16p/kai_matmul_clamp_f16_bf16p_bf16p_interface.h' 2025-08-14T20:48:16.5719310Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p/kai_matmul_clamp_f16_f16_f16p16x1biasf16_6x16x8_neon_mla.h' 2025-08-14T20:48:16.5720500Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p/kai_matmul_clamp_f16_f16_f16p2vlx2b_1x16vl_sme2_dot.h' 2025-08-14T20:48:16.5721600Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p/kai_matmul_clamp_f16_f16_f16p_interface.h' 2025-08-14T20:48:16.5723210Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16p_f16p/kai_matmul_clamp_f16_f16p2vlx2_f16p2vlx2_2vlx2vl_sme2_mopa.h' 2025-08-14T20:48:16.5724200Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16p_f16p/kai_matmul_clamp_f16_f16p_f16p_interface.h' 2025-08-14T20:48:16.5726070Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp1x4_qsi4cxp4x4_1x4_neon_dotprod.h' 2025-08-14T20:48:16.5727530Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp1x8_qsi4cxp4x8_1x4_neon_dotprod.h' 2025-08-14T20:48:16.5729050Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp4x4_qsi4cxp4x4_16x4_neon_dotprod.h' 2025-08-14T20:48:16.5730400Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp4x8_qsi4cxp4x8_16x4_neon_i8mm.h' 2025-08-14T20:48:16.5731460Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp_qsi4cxp_interface.h' 2025-08-14T20:48:16.5733170Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp1x4_qsi8cxp4x4_1x4_neon_dotprod.h' 2025-08-14T20:48:16.5734550Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp1x8_qsi8cxp4x8_1x4_neon_dotprod.h' 2025-08-14T20:48:16.5735930Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp4x4_qsi8cxp4x4_16x4_neon_dotprod.h' 2025-08-14T20:48:16.5737280Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp4x8_qsi8cxp4x8_16x4_neon_i8mm.h' 2025-08-14T20:48:16.5738340Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp_qsi8cxp_interface.h' 2025-08-14T20:48:16.5740130Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p1x8_qai4c32p4x8_1x4_neon_dotprod.h' 2025-08-14T20:48:16.5741590Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p4x8_qai4c32p4x8_8x4_neon_i8mm.h' 2025-08-14T20:48:16.5742650Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p_qai4c32p_interface.h' 2025-08-14T20:48:16.5748940Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p1x4_bf16p12x4b_1x36_neon_dot.h' 2025-08-14T20:48:16.5749580Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p8x4_bf16p12x4b_8x12_neon_mmla.h' 2025-08-14T20:48:16.5750600Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p_bf16p_interface.h' 2025-08-14T20:48:16.5751220Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p16vlx1b_1x16vl_sme2_mla.h' 2025-08-14T20:48:16.5751820Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p2vlx1b_1x16vl_sme2_mla.h' 2025-08-14T20:48:16.5752430Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p8x1biasf32_6x8x4_neon_mla.h' 2025-08-14T20:48:16.5753060Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p_interface.h' 2025-08-14T20:48:16.5753690Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32p_f32p/kai_matmul_clamp_f32_f32p2vlx1_f32p2vlx1biasf32_sme2_mopa.h' 2025-08-14T20:48:16.5754320Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32p_f32p/kai_matmul_clamp_f32_f32p_f32p_interface.h' 2025-08-14T20:48:16.5755980Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x4_qsi4c32p4x4_1x4_neon_dotprod.h' 2025-08-14T20:48:16.5757510Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x4_qsi4c32p8x4_1x8_neon_dotprod.h' 2025-08-14T20:48:16.5758990Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x8_qsi4c32p4x8_1x4x32_neon_dotprod.h' 2025-08-14T20:48:16.5760420Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x8_qsi4c32p8x8_1x8_neon_dotprod.h' 2025-08-14T20:48:16.5761800Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x8_qsi4c32p8x8_1x8x32_neon_dotprod.h' 2025-08-14T20:48:16.5763270Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x4_qsi4c32p4x4_16x4_neon_dotprod.h' 2025-08-14T20:48:16.5764660Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x4_qsi4c32p8x4_4x8_neon_dotprod.h' 2025-08-14T20:48:16.5766090Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p4x8_16x4x32_neon_i8mm.h' 2025-08-14T20:48:16.5767520Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p4x8_8x4x32_neon_i8mm.h' 2025-08-14T20:48:16.5768960Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p8x8_4x8_neon_i8mm.h' 2025-08-14T20:48:16.5770300Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p8x8_4x8x32_neon_i8mm.h' 2025-08-14T20:48:16.5771400Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp_qsi4c32p_interface.h' 2025-08-14T20:48:16.5773220Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1vlx8_qsi4cxp4vlx8_1vlx4vl_sme2_mopa.h' 2025-08-14T20:48:16.5774660Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1x4_qsi4cxp4vlx4_1x4vl_sme2_sdot.h' 2025-08-14T20:48:16.5776030Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1x4_qsi4cxp4x4_1x4_neon_dotprod.h' 2025-08-14T20:48:16.5777570Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1x8_qsi4cxp4x8_1x4x32_neon_dotprod.h' 2025-08-14T20:48:16.5779240Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1x8_qsi4cxp8x8_1x8x32_neon_dotprod.h' 2025-08-14T20:48:16.5780650Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x4_qsi4cxp8x4_8x8x32_neon_dotprod.h' 2025-08-14T20:48:16.5782110Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp4x4_16x4x32_neon_dotprod.h' 2025-08-14T20:48:16.5783570Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp4x8_4x4x32_neon_i8mm.h' 2025-08-14T20:48:16.5785010Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp4x8_8x4x32_neon_i8mm.h' 2025-08-14T20:48:16.5786450Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp8x8_4x8x32_neon_i8mm.h' 2025-08-14T20:48:16.5787840Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp8x8_8x8x32_neon_i8mm.h' 2025-08-14T20:48:16.5788850Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp_qsi4cxp_interface.h' 2025-08-14T20:48:16.5790700Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp1x4_qsi8cxp4x4_1x4_neon_dotprod.h' 2025-08-14T20:48:16.5792040Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp1x8_qsi8cxp4x8_1x4_neon_dotprod.h' 2025-08-14T20:48:16.5793480Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp4x4_qsi8cxp4x4_16x4_neon_dotprod.h' 2025-08-14T20:48:16.5794810Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi8cxp4x8_16x4_neon_i8mm.h' 2025-08-14T20:48:16.5795870Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp_qsi8cxp_interface.h' 2025-08-14T20:48:16.5797640Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p1x8_qai4c32p4x8_1x4_neon_dotprod.h' 2025-08-14T20:48:16.5799160Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p4x8_qai4c32p4x8_8x4_neon_i8mm.h' 2025-08-14T20:48:16.5800230Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p_qai4c32p_interface.h' 2025-08-14T20:48:16.5801990Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p1vlx4_qsi4c32p4vlx4_1vlx4vl_sme2_mopa.h' 2025-08-14T20:48:16.5803410Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p1x4_qsi4c32p4vlx4_1x4vl_sme2_sdot.h' 2025-08-14T20:48:16.5804880Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p1x4_qsi4c32p4x4_1x4_neon_dotprod.h' 2025-08-14T20:48:16.5806350Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p1x8_qsi4c32p4x8_1x4x32_neon_dotprod.h' 2025-08-14T20:48:16.5807780Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p4x4_qsi4c32p4x4_16x4_neon_dotprod.h' 2025-08-14T20:48:16.5809300Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p4x8_qsi4c32p4x8_16x4_neon_i8mm.h' 2025-08-14T20:48:16.5810720Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p4x8_qsi4c32p4x8_8x4x32_neon_i8mm.h' 2025-08-14T20:48:16.5811730Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p_qsi4c32p_interface.h' 2025-08-14T20:48:16.5813350Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_fp32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p2vlx2_bf16p2vlx2_2vlx2vl_sme2_mopa.h' 2025-08-14T20:48:16.5814360Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_fp32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p_bf16p_interface.h' 2025-08-14T20:48:16.5815930Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8_qsi8cxp/kai_matmul_clamp_qai8_qai8_qsi8cxp2vlx4sb_1x16vl_sme2_dot.h' 2025-08-14T20:48:16.5816930Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8_qsi8cxp/kai_matmul_clamp_qai8_qai8_qsi8cxp_interface.h' 2025-08-14T20:48:16.5818580Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8p_qsi8cxp/kai_matmul_clamp_qai8_qai8p2vlx4_qsi8cxpsb2vlx4_2vlx2vl_sme2_mopa.h' 2025-08-14T20:48:16.5819580Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8p_qsi8cxp/kai_matmul_clamp_qai8_qai8p_qsi8cxpsb_interface.h' 2025-08-14T20:48:16.5821160Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_imatmul_pack_x16p2vlx2_x16p_sme.h' 2025-08-14T20:48:16.5822200Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_imatmul_pack_x32p2vlx1_x32p_sme.h' 2025-08-14T20:48:16.5823420Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_imatmul_pack_x8p2vlx4_x8p_sme.h' 2025-08-14T20:48:16.5824720Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_pack_bf16p2vlx2_f32_sme.h' 2025-08-14T20:48:16.5825860Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_pack_bf16p8x4_f16_neon.h' 2025-08-14T20:48:16.5826920Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_pack_f32p2vlx1_f32_sme.h' 2025-08-14T20:48:16.5827990Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_pack_x16p2vlx2_x16_sme.h' 2025-08-14T20:48:16.5829010Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_pack_x8p2vlx4_x8_sme.h' 2025-08-14T20:48:16.5830130Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_bf16p1x4_f32_neon.h' 2025-08-14T20:48:16.5831170Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_bf16p8x4_f32_neon.h' 2025-08-14T20:48:16.5832410Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qai8dxp_f16_neon.h' 2025-08-14T20:48:16.5833610Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qai8dxp_f32.h' 2025-08-14T20:48:16.5834850Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32p_f32.h' 2025-08-14T20:48:16.5836070Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32p_f32_neon.h' 2025-08-14T20:48:16.5837280Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32pscalef32_f16_neon.h' 2025-08-14T20:48:16.5838460Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32pscalef32_f32_neon.h' 2025-08-14T20:48:16.5839690Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_imatmul_pack_kxn_qsi8cxp2vlx4sb_qs8cx_f32_i32_sme.h' 2025-08-14T20:48:16.5840790Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_imatmul_pack_kxn_x16p2vlx2b_x16_x16_sme.h' 2025-08-14T20:48:16.5841890Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_imatmul_pack_kxn_x32p2vlx1b_x32_x32_sme.h' 2025-08-14T20:48:16.5843070Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_bf16p12x4biasf16_f16_neon.h' 2025-08-14T20:48:16.5844190Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_bf16p12x4biasf32_f16_neon.h' 2025-08-14T20:48:16.5845360Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_bf16p2vlx2b_f32_x32_sme.h' 2025-08-14T20:48:16.5846500Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f16p16x1biasf16_f16_f16_neon.h' 2025-08-14T20:48:16.5847600Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f32p16vlx1b_f32_f32_sme.h' 2025-08-14T20:48:16.5848760Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f32p2vlx1biasf32_f32_f32_sme.h' 2025-08-14T20:48:16.5849870Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f32p8x1biasf32_f32_f32_neon.h' 2025-08-14T20:48:16.5851570Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi4c32p_qsu4c32s1s0.h' 2025-08-14T20:48:16.5853030Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi4cxp_qs4cxs1s0.h' 2025-08-14T20:48:16.5854260Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi8cxp2vlx4sb_qs8cx_f32_i32_sme.h' 2025-08-14T20:48:16.5855600Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi8cxp_qsi8cx_neon.h' 2025-08-14T20:48:16.5856740Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_x16p2vlx2b_x16_x16_sme.h' 2025-08-14T20:48:16.5857930Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_f32p2vlx1biasf32_f32_f32_sme.h' 2025-08-14T20:48:16.5859370Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qai4c32p_qau4c32s0s1_f32_f32_f32_neon.h' 2025-08-14T20:48:16.5860970Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4c32p_qsu4c32s1s0.h' 2025-08-14T20:48:16.5862590Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4c32ps1s0scalef16_qsu4c32s16s0_neon.h' 2025-08-14T20:48:16.5864120Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4c32pscalef16_qsu4c32s16s0.h' 2025-08-14T20:48:16.5865500Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4cxp_qs4cxs1s0.h' 2025-08-14T20:48:16.5867000Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4cxps1s0_qsu4cxs1s0_neon.h' 2025-08-14T20:48:16.5868300Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi8cxp_qsi8cx_neon.h' 2025-08-14T20:48:16.5869460Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_x16p2vlx2b_x16_x16_sme.h' 2025-08-14T20:48:16.5870650Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_quant_pack_kxn_bf16p12x4biasf32_f32_neon.h' 2025-08-14T20:48:16.5872330Z adding 'torch/include/kineto/AbstractConfig.h' 2025-08-14T20:48:16.5873730Z adding 'torch/include/kineto/ActivityProfilerInterface.h' 2025-08-14T20:48:16.5874590Z adding 'torch/include/kineto/ActivityTraceInterface.h' 2025-08-14T20:48:16.5875680Z adding 'torch/include/kineto/ActivityType.h' 2025-08-14T20:48:16.5876600Z adding 'torch/include/kineto/ClientInterface.h' 2025-08-14T20:48:16.5880220Z adding 'torch/include/kineto/Config.h' 2025-08-14T20:48:16.5881400Z adding 'torch/include/kineto/GenericTraceActivity.h' 2025-08-14T20:48:16.5883410Z adding 'torch/include/kineto/IActivityProfiler.h' 2025-08-14T20:48:16.5884000Z adding 'torch/include/kineto/ILoggerObserver.h' 2025-08-14T20:48:16.5885130Z adding 'torch/include/kineto/ITraceActivity.h' 2025-08-14T20:48:16.5885960Z adding 'torch/include/kineto/LoggingAPI.h' 2025-08-14T20:48:16.5886970Z adding 'torch/include/kineto/ThreadUtil.h' 2025-08-14T20:48:16.5887870Z adding 'torch/include/kineto/TraceSpan.h' 2025-08-14T20:48:16.5889230Z adding 'torch/include/kineto/libkineto.h' 2025-08-14T20:48:16.5890290Z adding 'torch/include/kineto/output_base.h' 2025-08-14T20:48:16.5891140Z adding 'torch/include/kineto/time_since_epoch.h' 2025-08-14T20:48:16.5896400Z adding 'torch/include/pybind11/attr.h' 2025-08-14T20:48:16.5898560Z adding 'torch/include/pybind11/buffer_info.h' 2025-08-14T20:48:16.5913200Z adding 'torch/include/pybind11/cast.h' 2025-08-14T20:48:16.5915550Z adding 'torch/include/pybind11/chrono.h' 2025-08-14T20:48:16.5916450Z adding 'torch/include/pybind11/common.h' 2025-08-14T20:48:16.5918410Z adding 'torch/include/pybind11/complex.h' 2025-08-14T20:48:16.5918840Z adding 'torch/include/pybind11/eigen.h' 2025-08-14T20:48:16.5922170Z adding 'torch/include/pybind11/embed.h' 2025-08-14T20:48:16.5923240Z adding 'torch/include/pybind11/eval.h' 2025-08-14T20:48:16.5925300Z adding 'torch/include/pybind11/functional.h' 2025-08-14T20:48:16.5927380Z adding 'torch/include/pybind11/gil.h' 2025-08-14T20:48:16.5928540Z adding 'torch/include/pybind11/gil_safe_call_once.h' 2025-08-14T20:48:16.5930990Z adding 'torch/include/pybind11/iostream.h' 2025-08-14T20:48:16.5947550Z adding 'torch/include/pybind11/numpy.h' 2025-08-14T20:48:16.5949920Z adding 'torch/include/pybind11/operators.h' 2025-08-14T20:48:16.5950880Z adding 'torch/include/pybind11/options.h' 2025-08-14T20:48:16.5976820Z adding 'torch/include/pybind11/pybind11.h' 2025-08-14T20:48:16.5995890Z adding 'torch/include/pybind11/pytypes.h' 2025-08-14T20:48:16.5999230Z adding 'torch/include/pybind11/stl.h' 2025-08-14T20:48:16.6004400Z adding 'torch/include/pybind11/stl_bind.h' 2025-08-14T20:48:16.6005460Z adding 'torch/include/pybind11/type_caster_pyobject_ptr.h' 2025-08-14T20:48:16.6007020Z adding 'torch/include/pybind11/typing.h' 2025-08-14T20:48:16.6013990Z adding 'torch/include/pybind11/detail/class.h' 2025-08-14T20:48:16.6025110Z adding 'torch/include/pybind11/detail/common.h' 2025-08-14T20:48:16.6026300Z adding 'torch/include/pybind11/detail/cpp_conduit.h' 2025-08-14T20:48:16.6028290Z adding 'torch/include/pybind11/detail/descr.h' 2025-08-14T20:48:16.6029230Z adding 'torch/include/pybind11/detail/exception_translation.h' 2025-08-14T20:48:16.6033010Z adding 'torch/include/pybind11/detail/init.h' 2025-08-14T20:48:16.6039450Z adding 'torch/include/pybind11/detail/internals.h' 2025-08-14T20:48:16.6050000Z adding 'torch/include/pybind11/detail/type_caster_base.h' 2025-08-14T20:48:16.6050990Z adding 'torch/include/pybind11/detail/typeid.h' 2025-08-14T20:48:16.6052210Z adding 'torch/include/pybind11/detail/value_and_holder.h' 2025-08-14T20:48:16.6053350Z adding 'torch/include/pybind11/eigen/common.h' 2025-08-14T20:48:16.6060080Z adding 'torch/include/pybind11/eigen/matrix.h' 2025-08-14T20:48:16.6063110Z adding 'torch/include/pybind11/eigen/tensor.h' 2025-08-14T20:48:16.6064560Z adding 'torch/include/pybind11/stl/filesystem.h' 2025-08-14T20:48:16.6069240Z adding 'torch/include/torch/custom_class.h' 2025-08-14T20:48:16.6071400Z adding 'torch/include/torch/custom_class_detail.h' 2025-08-14T20:48:16.6071930Z adding 'torch/include/torch/extension.h' 2025-08-14T20:48:16.6081190Z adding 'torch/include/torch/library.h' 2025-08-14T20:48:16.6081960Z adding 'torch/include/torch/script.h' 2025-08-14T20:48:16.6084330Z adding 'torch/include/torch/csrc/CudaIPCTypes.h' 2025-08-14T20:48:16.6084910Z adding 'torch/include/torch/csrc/DataLoader.h' 2025-08-14T20:48:16.6085770Z adding 'torch/include/torch/csrc/Device.h' 2025-08-14T20:48:16.6086600Z adding 'torch/include/torch/csrc/DeviceAccelerator.h' 2025-08-14T20:48:16.6087510Z adding 'torch/include/torch/csrc/Dtype.h' 2025-08-14T20:48:16.6088500Z adding 'torch/include/torch/csrc/DynamicTypes.h' 2025-08-14T20:48:16.6089360Z adding 'torch/include/torch/csrc/Event.h' 2025-08-14T20:48:16.6092890Z adding 'torch/include/torch/csrc/Exceptions.h' 2025-08-14T20:48:16.6093430Z adding 'torch/include/torch/csrc/Export.h' 2025-08-14T20:48:16.6094370Z adding 'torch/include/torch/csrc/Generator.h' 2025-08-14T20:48:16.6095260Z adding 'torch/include/torch/csrc/Layout.h' 2025-08-14T20:48:16.6096170Z adding 'torch/include/torch/csrc/MemoryFormat.h' 2025-08-14T20:48:16.6096910Z adding 'torch/include/torch/csrc/Module.h' 2025-08-14T20:48:16.6097760Z adding 'torch/include/torch/csrc/PyInterpreter.h' 2025-08-14T20:48:16.6098590Z adding 'torch/include/torch/csrc/PyInterpreterHooks.h' 2025-08-14T20:48:16.6099430Z adding 'torch/include/torch/csrc/QScheme.h' 2025-08-14T20:48:16.6100270Z adding 'torch/include/torch/csrc/Size.h' 2025-08-14T20:48:16.6101240Z adding 'torch/include/torch/csrc/Storage.h' 2025-08-14T20:48:16.6102050Z adding 'torch/include/torch/csrc/StorageMethods.h' 2025-08-14T20:48:16.6102810Z adding 'torch/include/torch/csrc/StorageSharing.h' 2025-08-14T20:48:16.6103660Z adding 'torch/include/torch/csrc/Stream.h' 2025-08-14T20:48:16.6104480Z adding 'torch/include/torch/csrc/THConcat.h' 2025-08-14T20:48:16.6105360Z adding 'torch/include/torch/csrc/THP.h' 2025-08-14T20:48:16.6106230Z adding 'torch/include/torch/csrc/TypeInfo.h' 2025-08-14T20:48:16.6106990Z adding 'torch/include/torch/csrc/Types.h' 2025-08-14T20:48:16.6107980Z adding 'torch/include/torch/csrc/copy_utils.h' 2025-08-14T20:48:16.6108770Z adding 'torch/include/torch/csrc/itt.h' 2025-08-14T20:48:16.6109580Z adding 'torch/include/torch/csrc/itt_wrapper.h' 2025-08-14T20:48:16.6110380Z adding 'torch/include/torch/csrc/python_dimname.h' 2025-08-14T20:48:16.6111260Z adding 'torch/include/torch/csrc/python_headers.h' 2025-08-14T20:48:16.6112080Z adding 'torch/include/torch/csrc/serialization.h' 2025-08-14T20:48:16.6114180Z adding 'torch/include/torch/csrc/utils.h' 2025-08-14T20:48:16.6117310Z adding 'torch/include/torch/csrc/api/include/torch/all.h' 2025-08-14T20:48:16.6118230Z adding 'torch/include/torch/csrc/api/include/torch/arg.h' 2025-08-14T20:48:16.6119150Z adding 'torch/include/torch/csrc/api/include/torch/autograd.h' 2025-08-14T20:48:16.6120110Z adding 'torch/include/torch/csrc/api/include/torch/cuda.h' 2025-08-14T20:48:16.6120970Z adding 'torch/include/torch/csrc/api/include/torch/data.h' 2025-08-14T20:48:16.6123070Z adding 'torch/include/torch/csrc/api/include/torch/enum.h' 2025-08-14T20:48:16.6124470Z adding 'torch/include/torch/csrc/api/include/torch/expanding_array.h' 2025-08-14T20:48:16.6126610Z adding 'torch/include/torch/csrc/api/include/torch/fft.h' 2025-08-14T20:48:16.6127480Z adding 'torch/include/torch/csrc/api/include/torch/imethod.h' 2025-08-14T20:48:16.6128410Z adding 'torch/include/torch/csrc/api/include/torch/jit.h' 2025-08-14T20:48:16.6129400Z adding 'torch/include/torch/csrc/api/include/torch/mps.h' 2025-08-14T20:48:16.6130570Z adding 'torch/include/torch/csrc/api/include/torch/nested.h' 2025-08-14T20:48:16.6131360Z adding 'torch/include/torch/csrc/api/include/torch/nn.h' 2025-08-14T20:48:16.6132240Z adding 'torch/include/torch/csrc/api/include/torch/optim.h' 2025-08-14T20:48:16.6135660Z adding 'torch/include/torch/csrc/api/include/torch/ordered_dict.h' 2025-08-14T20:48:16.6137910Z adding 'torch/include/torch/csrc/api/include/torch/python.h' 2025-08-14T20:48:16.6139100Z adding 'torch/include/torch/csrc/api/include/torch/serialize.h' 2025-08-14T20:48:16.6139870Z adding 'torch/include/torch/csrc/api/include/torch/sparse.h' 2025-08-14T20:48:16.6143670Z adding 'torch/include/torch/csrc/api/include/torch/special.h' 2025-08-14T20:48:16.6144400Z adding 'torch/include/torch/csrc/api/include/torch/torch.h' 2025-08-14T20:48:16.6145520Z adding 'torch/include/torch/csrc/api/include/torch/types.h' 2025-08-14T20:48:16.6146860Z adding 'torch/include/torch/csrc/api/include/torch/utils.h' 2025-08-14T20:48:16.6147770Z adding 'torch/include/torch/csrc/api/include/torch/version.h' 2025-08-14T20:48:16.6148630Z adding 'torch/include/torch/csrc/api/include/torch/xpu.h' 2025-08-14T20:48:16.6150700Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader.h' 2025-08-14T20:48:16.6151500Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader_options.h' 2025-08-14T20:48:16.6152300Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets.h' 2025-08-14T20:48:16.6153290Z adding 'torch/include/torch/csrc/api/include/torch/data/example.h' 2025-08-14T20:48:16.6154880Z adding 'torch/include/torch/csrc/api/include/torch/data/iterator.h' 2025-08-14T20:48:16.6155700Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers.h' 2025-08-14T20:48:16.6156500Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms.h' 2025-08-14T20:48:16.6157530Z adding 'torch/include/torch/csrc/api/include/torch/data/worker_exception.h' 2025-08-14T20:48:16.6160610Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader/base.h' 2025-08-14T20:48:16.6161610Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader/stateful.h' 2025-08-14T20:48:16.6162920Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader/stateless.h' 2025-08-14T20:48:16.6164530Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/base.h' 2025-08-14T20:48:16.6169560Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/chunk.h' 2025-08-14T20:48:16.6170700Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/map.h' 2025-08-14T20:48:16.6171750Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/mnist.h' 2025-08-14T20:48:16.6172870Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/shared.h' 2025-08-14T20:48:16.6173980Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/stateful.h' 2025-08-14T20:48:16.6174990Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/tensor.h' 2025-08-14T20:48:16.6176440Z adding 'torch/include/torch/csrc/api/include/torch/data/detail/data_shuttle.h' 2025-08-14T20:48:16.6177640Z adding 'torch/include/torch/csrc/api/include/torch/data/detail/queue.h' 2025-08-14T20:48:16.6179180Z adding 'torch/include/torch/csrc/api/include/torch/data/detail/sequencers.h' 2025-08-14T20:48:16.6180360Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/base.h' 2025-08-14T20:48:16.6181310Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/custom_batch_request.h' 2025-08-14T20:48:16.6182510Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/distributed.h' 2025-08-14T20:48:16.6183510Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/random.h' 2025-08-14T20:48:16.6184530Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/sequential.h' 2025-08-14T20:48:16.6185400Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/serialize.h' 2025-08-14T20:48:16.6186440Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/stream.h' 2025-08-14T20:48:16.6187700Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/base.h' 2025-08-14T20:48:16.6188700Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/collate.h' 2025-08-14T20:48:16.6189630Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/lambda.h' 2025-08-14T20:48:16.6190560Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/stack.h' 2025-08-14T20:48:16.6191670Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/tensor.h' 2025-08-14T20:48:16.6195110Z adding 'torch/include/torch/csrc/api/include/torch/detail/TensorDataContainer.h' 2025-08-14T20:48:16.6196070Z adding 'torch/include/torch/csrc/api/include/torch/detail/static.h' 2025-08-14T20:48:16.6197370Z adding 'torch/include/torch/csrc/api/include/torch/nativert/ModelRunnerHandle.h' 2025-08-14T20:48:16.6199460Z adding 'torch/include/torch/csrc/api/include/torch/nn/cloneable.h' 2025-08-14T20:48:16.6199910Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional.h' 2025-08-14T20:48:16.6201280Z adding 'torch/include/torch/csrc/api/include/torch/nn/init.h' 2025-08-14T20:48:16.6206560Z adding 'torch/include/torch/csrc/api/include/torch/nn/module.h' 2025-08-14T20:48:16.6207290Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules.h' 2025-08-14T20:48:16.6208080Z adding 'torch/include/torch/csrc/api/include/torch/nn/options.h' 2025-08-14T20:48:16.6209340Z adding 'torch/include/torch/csrc/api/include/torch/nn/pimpl-inl.h' 2025-08-14T20:48:16.6211450Z adding 'torch/include/torch/csrc/api/include/torch/nn/pimpl.h' 2025-08-14T20:48:16.6212000Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils.h' 2025-08-14T20:48:16.6216740Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/activation.h' 2025-08-14T20:48:16.6217790Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/batchnorm.h' 2025-08-14T20:48:16.6219240Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/conv.h' 2025-08-14T20:48:16.6220360Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/distance.h' 2025-08-14T20:48:16.6221710Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/dropout.h' 2025-08-14T20:48:16.6223320Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/embedding.h' 2025-08-14T20:48:16.6224390Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/fold.h' 2025-08-14T20:48:16.6225400Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/instancenorm.h' 2025-08-14T20:48:16.6226290Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/linear.h' 2025-08-14T20:48:16.6230110Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/loss.h' 2025-08-14T20:48:16.6231450Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/normalization.h' 2025-08-14T20:48:16.6232480Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/padding.h' 2025-08-14T20:48:16.6233520Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/pixelshuffle.h' 2025-08-14T20:48:16.6237290Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/pooling.h' 2025-08-14T20:48:16.6239420Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/upsampling.h' 2025-08-14T20:48:16.6240480Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/vision.h' 2025-08-14T20:48:16.6241780Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/_functions.h' 2025-08-14T20:48:16.6245250Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/activation.h' 2025-08-14T20:48:16.6246420Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/adaptive.h' 2025-08-14T20:48:16.6248500Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/batchnorm.h' 2025-08-14T20:48:16.6249590Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/common.h' 2025-08-14T20:48:16.6252420Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/conv.h' 2025-08-14T20:48:16.6253350Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/distance.h' 2025-08-14T20:48:16.6254750Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/dropout.h' 2025-08-14T20:48:16.6256350Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/embedding.h' 2025-08-14T20:48:16.6257460Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/fold.h' 2025-08-14T20:48:16.6258870Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/instancenorm.h' 2025-08-14T20:48:16.6260380Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/linear.h' 2025-08-14T20:48:16.6264410Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/loss.h' 2025-08-14T20:48:16.6265830Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/normalization.h' 2025-08-14T20:48:16.6268060Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/padding.h' 2025-08-14T20:48:16.6269030Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/pixelshuffle.h' 2025-08-14T20:48:16.6272410Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/pooling.h' 2025-08-14T20:48:16.6274670Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/rnn.h' 2025-08-14T20:48:16.6281320Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/transformer.h' 2025-08-14T20:48:16.6281780Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/transformercoder.h' 2025-08-14T20:48:16.6282210Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/transformerlayer.h' 2025-08-14T20:48:16.6282600Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/upsampling.h' 2025-08-14T20:48:16.6284600Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/utils.h' 2025-08-14T20:48:16.6284770Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/any.h' 2025-08-14T20:48:16.6286010Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/any_module_holder.h' 2025-08-14T20:48:16.6287440Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/any_value.h' 2025-08-14T20:48:16.6288850Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/functional.h' 2025-08-14T20:48:16.6291160Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/moduledict.h' 2025-08-14T20:48:16.6293390Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/modulelist.h' 2025-08-14T20:48:16.6294340Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/named_any.h' 2025-08-14T20:48:16.6295760Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/parameterdict.h' 2025-08-14T20:48:16.6297300Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/parameterlist.h' 2025-08-14T20:48:16.6300620Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/sequential.h' 2025-08-14T20:48:16.6303660Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/activation.h' 2025-08-14T20:48:16.6304480Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/adaptive.h' 2025-08-14T20:48:16.6305550Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/batchnorm.h' 2025-08-14T20:48:16.6307650Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/conv.h' 2025-08-14T20:48:16.6308470Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/distance.h' 2025-08-14T20:48:16.6309520Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/dropout.h' 2025-08-14T20:48:16.6311610Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/embedding.h' 2025-08-14T20:48:16.6312480Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/fold.h' 2025-08-14T20:48:16.6313560Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/instancenorm.h' 2025-08-14T20:48:16.6314730Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/linear.h' 2025-08-14T20:48:16.6318220Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/loss.h' 2025-08-14T20:48:16.6319470Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/normalization.h' 2025-08-14T20:48:16.6321340Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/padding.h' 2025-08-14T20:48:16.6321960Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/pixelshuffle.h' 2025-08-14T20:48:16.6324590Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/pooling.h' 2025-08-14T20:48:16.6326020Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/rnn.h' 2025-08-14T20:48:16.6327130Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/transformer.h' 2025-08-14T20:48:16.6328210Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/transformercoder.h' 2025-08-14T20:48:16.6329230Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/transformerlayer.h' 2025-08-14T20:48:16.6330580Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/upsampling.h' 2025-08-14T20:48:16.6331530Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/vision.h' 2025-08-14T20:48:16.6334770Z adding 'torch/include/torch/csrc/api/include/torch/nn/parallel/data_parallel.h' 2025-08-14T20:48:16.6336190Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils/clip_grad.h' 2025-08-14T20:48:16.6337370Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils/convert_parameters.h' 2025-08-14T20:48:16.6340410Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils/rnn.h' 2025-08-14T20:48:16.6341700Z adding 'torch/include/torch/csrc/api/include/torch/optim/adagrad.h' 2025-08-14T20:48:16.6342900Z adding 'torch/include/torch/csrc/api/include/torch/optim/adam.h' 2025-08-14T20:48:16.6344060Z adding 'torch/include/torch/csrc/api/include/torch/optim/adamw.h' 2025-08-14T20:48:16.6345350Z adding 'torch/include/torch/csrc/api/include/torch/optim/lbfgs.h' 2025-08-14T20:48:16.6347550Z adding 'torch/include/torch/csrc/api/include/torch/optim/optimizer.h' 2025-08-14T20:48:16.6348460Z adding 'torch/include/torch/csrc/api/include/torch/optim/rmsprop.h' 2025-08-14T20:48:16.6351260Z adding 'torch/include/torch/csrc/api/include/torch/optim/serialize.h' 2025-08-14T20:48:16.6352140Z adding 'torch/include/torch/csrc/api/include/torch/optim/sgd.h' 2025-08-14T20:48:16.6353520Z adding 'torch/include/torch/csrc/api/include/torch/optim/schedulers/lr_scheduler.h' 2025-08-14T20:48:16.6354600Z adding 'torch/include/torch/csrc/api/include/torch/optim/schedulers/reduce_on_plateau_scheduler.h' 2025-08-14T20:48:16.6355420Z adding 'torch/include/torch/csrc/api/include/torch/optim/schedulers/step_lr.h' 2025-08-14T20:48:16.6356420Z adding 'torch/include/torch/csrc/api/include/torch/python/init.h' 2025-08-14T20:48:16.6357420Z adding 'torch/include/torch/csrc/api/include/torch/serialize/archive.h' 2025-08-14T20:48:16.6358780Z adding 'torch/include/torch/csrc/api/include/torch/serialize/input-archive.h' 2025-08-14T20:48:16.6359910Z adding 'torch/include/torch/csrc/api/include/torch/serialize/output-archive.h' 2025-08-14T20:48:16.6360750Z adding 'torch/include/torch/csrc/api/include/torch/serialize/tensor.h' 2025-08-14T20:48:16.6366500Z adding 'torch/include/torch/csrc/autograd/FunctionsManual.h' 2025-08-14T20:48:16.6367090Z adding 'torch/include/torch/csrc/autograd/InferenceMode.h' 2025-08-14T20:48:16.6370720Z adding 'torch/include/torch/csrc/autograd/VariableTypeUtils.h' 2025-08-14T20:48:16.6371570Z adding 'torch/include/torch/csrc/autograd/anomaly_mode.h' 2025-08-14T20:48:16.6373450Z adding 'torch/include/torch/csrc/autograd/autograd.h' 2025-08-14T20:48:16.6374270Z adding 'torch/include/torch/csrc/autograd/autograd_not_implemented_fallback.h' 2025-08-14T20:48:16.6375080Z adding 'torch/include/torch/csrc/autograd/cpp_hook.h' 2025-08-14T20:48:16.6380000Z adding 'torch/include/torch/csrc/autograd/custom_function.h' 2025-08-14T20:48:16.6380820Z adding 'torch/include/torch/csrc/autograd/edge.h' 2025-08-14T20:48:16.6383770Z adding 'torch/include/torch/csrc/autograd/engine.h' 2025-08-14T20:48:16.6386340Z adding 'torch/include/torch/csrc/autograd/forward_grad.h' 2025-08-14T20:48:16.6393930Z adding 'torch/include/torch/csrc/autograd/function.h' 2025-08-14T20:48:16.6394980Z adding 'torch/include/torch/csrc/autograd/function_hook.h' 2025-08-14T20:48:16.6395850Z adding 'torch/include/torch/csrc/autograd/grad_mode.h' 2025-08-14T20:48:16.6398670Z adding 'torch/include/torch/csrc/autograd/graph_task.h' 2025-08-14T20:48:16.6399630Z adding 'torch/include/torch/csrc/autograd/input_buffer.h' 2025-08-14T20:48:16.6400780Z adding 'torch/include/torch/csrc/autograd/input_metadata.h' 2025-08-14T20:48:16.6401880Z adding 'torch/include/torch/csrc/autograd/jit_decomp_interface.h' 2025-08-14T20:48:16.6402660Z adding 'torch/include/torch/csrc/autograd/profiler.h' 2025-08-14T20:48:16.6404990Z adding 'torch/include/torch/csrc/autograd/profiler_kineto.h' 2025-08-14T20:48:16.6407620Z adding 'torch/include/torch/csrc/autograd/profiler_legacy.h' 2025-08-14T20:48:16.6408180Z adding 'torch/include/torch/csrc/autograd/profiler_python.h' 2025-08-14T20:48:16.6409170Z adding 'torch/include/torch/csrc/autograd/python_anomaly_mode.h' 2025-08-14T20:48:16.6410000Z adding 'torch/include/torch/csrc/autograd/python_autograd.h' 2025-08-14T20:48:16.6411440Z adding 'torch/include/torch/csrc/autograd/python_cpp_function.h' 2025-08-14T20:48:16.6412360Z adding 'torch/include/torch/csrc/autograd/python_engine.h' 2025-08-14T20:48:16.6413190Z adding 'torch/include/torch/csrc/autograd/python_enum_tag.h' 2025-08-14T20:48:16.6414030Z adding 'torch/include/torch/csrc/autograd/python_fft_functions.h' 2025-08-14T20:48:16.6415920Z adding 'torch/include/torch/csrc/autograd/python_function.h' 2025-08-14T20:48:16.6416710Z adding 'torch/include/torch/csrc/autograd/python_hook.h' 2025-08-14T20:48:16.6417610Z adding 'torch/include/torch/csrc/autograd/python_legacy_variable.h' 2025-08-14T20:48:16.6418390Z adding 'torch/include/torch/csrc/autograd/python_linalg_functions.h' 2025-08-14T20:48:16.6419160Z adding 'torch/include/torch/csrc/autograd/python_nested_functions.h' 2025-08-14T20:48:16.6419920Z adding 'torch/include/torch/csrc/autograd/python_nn_functions.h' 2025-08-14T20:48:16.6420850Z adding 'torch/include/torch/csrc/autograd/python_saved_variable_hooks.h' 2025-08-14T20:48:16.6421590Z adding 'torch/include/torch/csrc/autograd/python_sparse_functions.h' 2025-08-14T20:48:16.6422350Z adding 'torch/include/torch/csrc/autograd/python_special_functions.h' 2025-08-14T20:48:16.6423230Z adding 'torch/include/torch/csrc/autograd/python_torch_functions.h' 2025-08-14T20:48:16.6424500Z adding 'torch/include/torch/csrc/autograd/python_variable.h' 2025-08-14T20:48:16.6425800Z adding 'torch/include/torch/csrc/autograd/python_variable_indexing.h' 2025-08-14T20:48:16.6426710Z adding 'torch/include/torch/csrc/autograd/record_function_ops.h' 2025-08-14T20:48:16.6428680Z adding 'torch/include/torch/csrc/autograd/saved_variable.h' 2025-08-14T20:48:16.6429590Z adding 'torch/include/torch/csrc/autograd/saved_variable_hooks.h' 2025-08-14T20:48:16.6433210Z adding 'torch/include/torch/csrc/autograd/symbolic.h' 2025-08-14T20:48:16.6440330Z adding 'torch/include/torch/csrc/autograd/variable.h' 2025-08-14T20:48:16.6441370Z adding 'torch/include/torch/csrc/autograd/variable_info.h' 2025-08-14T20:48:16.6445460Z adding 'torch/include/torch/csrc/autograd/functions/accumulate_grad.h' 2025-08-14T20:48:16.6446610Z adding 'torch/include/torch/csrc/autograd/functions/basic_ops.h' 2025-08-14T20:48:16.6447620Z adding 'torch/include/torch/csrc/autograd/functions/comm.h' 2025-08-14T20:48:16.6448480Z adding 'torch/include/torch/csrc/autograd/functions/pybind.h' 2025-08-14T20:48:16.6450850Z adding 'torch/include/torch/csrc/autograd/functions/tensor.h' 2025-08-14T20:48:16.6452000Z adding 'torch/include/torch/csrc/autograd/functions/utils.h' 2025-08-14T20:48:16.6486540Z adding 'torch/include/torch/csrc/autograd/generated/Functions.h' 2025-08-14T20:48:16.6489860Z adding 'torch/include/torch/csrc/autograd/generated/VariableType.h' 2025-08-14T20:48:16.6493000Z adding 'torch/include/torch/csrc/autograd/generated/ViewFuncs.h' 2025-08-14T20:48:16.6493860Z adding 'torch/include/torch/csrc/autograd/generated/python_functions.h' 2025-08-14T20:48:16.6495040Z adding 'torch/include/torch/csrc/autograd/generated/python_return_types.h' 2025-08-14T20:48:16.6499520Z adding 'torch/include/torch/csrc/autograd/generated/variable_factories.h' 2025-08-14T20:48:16.6500750Z adding 'torch/include/torch/csrc/autograd/utils/error_messages.h' 2025-08-14T20:48:16.6502090Z adding 'torch/include/torch/csrc/autograd/utils/grad_layout_contract.h' 2025-08-14T20:48:16.6503020Z adding 'torch/include/torch/csrc/autograd/utils/lambda_post_hook.h' 2025-08-14T20:48:16.6504020Z adding 'torch/include/torch/csrc/autograd/utils/python_arg_parsing.h' 2025-08-14T20:48:16.6504890Z adding 'torch/include/torch/csrc/autograd/utils/warnings.h' 2025-08-14T20:48:16.6506190Z adding 'torch/include/torch/csrc/autograd/utils/wrap_outputs.h' 2025-08-14T20:48:16.6507180Z adding 'torch/include/torch/csrc/cpu/Module.h' 2025-08-14T20:48:16.6509580Z adding 'torch/include/torch/csrc/cuda/CUDAPluggableAllocator.h' 2025-08-14T20:48:16.6510150Z adding 'torch/include/torch/csrc/cuda/Event.h' 2025-08-14T20:48:16.6511010Z adding 'torch/include/torch/csrc/cuda/GdsFile.h' 2025-08-14T20:48:16.6511840Z adding 'torch/include/torch/csrc/cuda/Module.h' 2025-08-14T20:48:16.6512700Z adding 'torch/include/torch/csrc/cuda/Stream.h' 2025-08-14T20:48:16.6513500Z adding 'torch/include/torch/csrc/cuda/THCP.h' 2025-08-14T20:48:16.6514500Z adding 'torch/include/torch/csrc/cuda/comm.h' 2025-08-14T20:48:16.6515310Z adding 'torch/include/torch/csrc/cuda/device_set.h' 2025-08-14T20:48:16.6516220Z adding 'torch/include/torch/csrc/cuda/memory_snapshot.h' 2025-08-14T20:48:16.6518920Z adding 'torch/include/torch/csrc/cuda/nccl.h' 2025-08-14T20:48:16.6519510Z adding 'torch/include/torch/csrc/cuda/python_comm.h' 2025-08-14T20:48:16.6520320Z adding 'torch/include/torch/csrc/cuda/python_nccl.h' 2025-08-14T20:48:16.6521160Z adding 'torch/include/torch/csrc/cuda/utils.h' 2025-08-14T20:48:16.6523200Z adding 'torch/include/torch/csrc/distributed/autograd/autograd.h' 2025-08-14T20:48:16.6523790Z adding 'torch/include/torch/csrc/distributed/autograd/python_autograd.h' 2025-08-14T20:48:16.6524930Z adding 'torch/include/torch/csrc/distributed/autograd/utils.h' 2025-08-14T20:48:16.6527520Z adding 'torch/include/torch/csrc/distributed/autograd/context/container.h' 2025-08-14T20:48:16.6529450Z adding 'torch/include/torch/csrc/distributed/autograd/context/context.h' 2025-08-14T20:48:16.6531800Z adding 'torch/include/torch/csrc/distributed/autograd/engine/dist_engine.h' 2025-08-14T20:48:16.6532840Z adding 'torch/include/torch/csrc/distributed/autograd/functions/recvrpc_backward.h' 2025-08-14T20:48:16.6533860Z adding 'torch/include/torch/csrc/distributed/autograd/functions/sendrpc_backward.h' 2025-08-14T20:48:16.6535110Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/autograd_metadata.h' 2025-08-14T20:48:16.6536090Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_req.h' 2025-08-14T20:48:16.6537010Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_resp.h' 2025-08-14T20:48:16.6538040Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_req.h' 2025-08-14T20:48:16.6538930Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_resp.h' 2025-08-14T20:48:16.6540190Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_autograd.h' 2025-08-14T20:48:16.6541570Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_req.h' 2025-08-14T20:48:16.6542670Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_resp.h' 2025-08-14T20:48:16.6543610Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rref_backward_req.h' 2025-08-14T20:48:16.6544500Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rref_backward_resp.h' 2025-08-14T20:48:16.6548120Z adding 'torch/include/torch/csrc/distributed/c10d/Backend.hpp' 2025-08-14T20:48:16.6548940Z adding 'torch/include/torch/csrc/distributed/c10d/Backoff.hpp' 2025-08-14T20:48:16.6550890Z adding 'torch/include/torch/csrc/distributed/c10d/FakeProcessGroup.hpp' 2025-08-14T20:48:16.6551600Z adding 'torch/include/torch/csrc/distributed/c10d/FileStore.hpp' 2025-08-14T20:48:16.6554400Z adding 'torch/include/torch/csrc/distributed/c10d/FlightRecorder.hpp' 2025-08-14T20:48:16.6558260Z adding 'torch/include/torch/csrc/distributed/c10d/FlightRecorderDetail.hpp' 2025-08-14T20:48:16.6559020Z adding 'torch/include/torch/csrc/distributed/c10d/Functional.hpp' 2025-08-14T20:48:16.6560030Z adding 'torch/include/torch/csrc/distributed/c10d/GlooDeviceFactory.hpp' 2025-08-14T20:48:16.6560890Z adding 'torch/include/torch/csrc/distributed/c10d/GroupRegistry.hpp' 2025-08-14T20:48:16.6561950Z adding 'torch/include/torch/csrc/distributed/c10d/HashStore.hpp' 2025-08-14T20:48:16.6565510Z adding 'torch/include/torch/csrc/distributed/c10d/NCCLUtils.hpp' 2025-08-14T20:48:16.6566060Z adding 'torch/include/torch/csrc/distributed/c10d/NanCheck.hpp' 2025-08-14T20:48:16.6568020Z adding 'torch/include/torch/csrc/distributed/c10d/ParamCommsUtils.hpp' 2025-08-14T20:48:16.6568830Z adding 'torch/include/torch/csrc/distributed/c10d/PrefixStore.hpp' 2025-08-14T20:48:16.6574500Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroup.hpp' 2025-08-14T20:48:16.6578070Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupGloo.hpp' 2025-08-14T20:48:16.6582230Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupGlooDetail.hpp' 2025-08-14T20:48:16.6584300Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupMPI.hpp' 2025-08-14T20:48:16.6597270Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupNCCL.hpp' 2025-08-14T20:48:16.6599910Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupUCC.hpp' 2025-08-14T20:48:16.6601210Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupWrapper.hpp' 2025-08-14T20:48:16.6603750Z adding 'torch/include/torch/csrc/distributed/c10d/PyProcessGroup.hpp' 2025-08-14T20:48:16.6604720Z adding 'torch/include/torch/csrc/distributed/c10d/RankLocal.hpp' 2025-08-14T20:48:16.6606170Z adding 'torch/include/torch/csrc/distributed/c10d/Store.hpp' 2025-08-14T20:48:16.6607950Z adding 'torch/include/torch/csrc/distributed/c10d/TCPStore.hpp' 2025-08-14T20:48:16.6608900Z adding 'torch/include/torch/csrc/distributed/c10d/TCPStoreBackend.hpp' 2025-08-14T20:48:16.6611440Z adding 'torch/include/torch/csrc/distributed/c10d/TraceUtils.h' 2025-08-14T20:48:16.6612730Z adding 'torch/include/torch/csrc/distributed/c10d/Types.hpp' 2025-08-14T20:48:16.6613950Z adding 'torch/include/torch/csrc/distributed/c10d/UCCTracing.hpp' 2025-08-14T20:48:16.6616190Z adding 'torch/include/torch/csrc/distributed/c10d/UCCUtils.hpp' 2025-08-14T20:48:16.6616830Z adding 'torch/include/torch/csrc/distributed/c10d/UnixSockUtils.hpp' 2025-08-14T20:48:16.6621580Z adding 'torch/include/torch/csrc/distributed/c10d/Utils.hpp' 2025-08-14T20:48:16.6622330Z adding 'torch/include/torch/csrc/distributed/c10d/WinSockUtils.hpp' 2025-08-14T20:48:16.6624430Z adding 'torch/include/torch/csrc/distributed/c10d/Work.hpp' 2025-08-14T20:48:16.6624940Z adding 'torch/include/torch/csrc/distributed/c10d/c10d.h' 2025-08-14T20:48:16.6626880Z adding 'torch/include/torch/csrc/distributed/c10d/comm.hpp' 2025-08-14T20:48:16.6627370Z adding 'torch/include/torch/csrc/distributed/c10d/debug.h' 2025-08-14T20:48:16.6628410Z adding 'torch/include/torch/csrc/distributed/c10d/default_comm_hooks.hpp' 2025-08-14T20:48:16.6629380Z adding 'torch/include/torch/csrc/distributed/c10d/error.h' 2025-08-14T20:48:16.6630420Z adding 'torch/include/torch/csrc/distributed/c10d/exception.h' 2025-08-14T20:48:16.6632700Z adding 'torch/include/torch/csrc/distributed/c10d/logger.hpp' 2025-08-14T20:48:16.6633430Z adding 'torch/include/torch/csrc/distributed/c10d/logging.h' 2025-08-14T20:48:16.6634420Z adding 'torch/include/torch/csrc/distributed/c10d/python_comm_hook.h' 2025-08-14T20:48:16.6640970Z adding 'torch/include/torch/csrc/distributed/c10d/reducer.hpp' 2025-08-14T20:48:16.6642140Z adding 'torch/include/torch/csrc/distributed/c10d/reducer_timer.hpp' 2025-08-14T20:48:16.6643250Z adding 'torch/include/torch/csrc/distributed/c10d/sequence_num.hpp' 2025-08-14T20:48:16.6644390Z adding 'torch/include/torch/csrc/distributed/c10d/socket.h' 2025-08-14T20:48:16.6645370Z adding 'torch/include/torch/csrc/distributed/c10d/socket_fmt.h' 2025-08-14T20:48:16.6646960Z adding 'torch/include/torch/csrc/distributed/c10d/control_collectives/ControlCollectives.hpp' 2025-08-14T20:48:16.6647910Z adding 'torch/include/torch/csrc/distributed/c10d/control_collectives/StoreCollectives.hpp' 2025-08-14T20:48:16.6649270Z adding 'torch/include/torch/csrc/distributed/c10d/control_plane/Handlers.hpp' 2025-08-14T20:48:16.6650200Z adding 'torch/include/torch/csrc/distributed/c10d/control_plane/WorkerServer.hpp' 2025-08-14T20:48:16.6651320Z adding 'torch/include/torch/csrc/distributed/c10d/cuda/CUDAEventCache.hpp' 2025-08-14T20:48:16.6652270Z adding 'torch/include/torch/csrc/distributed/c10d/cuda/StreamBlock.hpp' 2025-08-14T20:48:16.6653120Z adding 'torch/include/torch/csrc/distributed/c10d/cuda/utils.hpp' 2025-08-14T20:48:16.6654260Z adding 'torch/include/torch/csrc/distributed/c10d/quantization/quantization.h' 2025-08-14T20:48:16.6655110Z adding 'torch/include/torch/csrc/distributed/c10d/quantization/quantization_gpu.h' 2025-08-14T20:48:16.6656110Z adding 'torch/include/torch/csrc/distributed/c10d/quantization/quantization_utils.h' 2025-08-14T20:48:16.6659310Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemory-inl.h' 2025-08-14T20:48:16.6660480Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemory.hpp' 2025-08-14T20:48:16.6661400Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemoryTypes.hpp' 2025-08-14T20:48:16.6662720Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemoryUtils.hpp' 2025-08-14T20:48:16.6663720Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/DMAConnectivity.hpp' 2025-08-14T20:48:16.6666000Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/SymmetricMemory.hpp' 2025-08-14T20:48:16.6666900Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/intra_node_comm.hpp' 2025-08-14T20:48:16.6668610Z adding 'torch/include/torch/csrc/distributed/rpc/agent_utils.h' 2025-08-14T20:48:16.6670730Z adding 'torch/include/torch/csrc/distributed/rpc/message.h' 2025-08-14T20:48:16.6671610Z adding 'torch/include/torch/csrc/distributed/rpc/py_rref.h' 2025-08-14T20:48:16.6672560Z adding 'torch/include/torch/csrc/distributed/rpc/python_call.h' 2025-08-14T20:48:16.6673630Z adding 'torch/include/torch/csrc/distributed/rpc/python_functions.h' 2025-08-14T20:48:16.6674610Z adding 'torch/include/torch/csrc/distributed/rpc/python_remote_call.h' 2025-08-14T20:48:16.6675470Z adding 'torch/include/torch/csrc/distributed/rpc/python_resp.h' 2025-08-14T20:48:16.6677420Z adding 'torch/include/torch/csrc/distributed/rpc/python_rpc_handler.h' 2025-08-14T20:48:16.6678100Z adding 'torch/include/torch/csrc/distributed/rpc/request_callback.h' 2025-08-14T20:48:16.6679190Z adding 'torch/include/torch/csrc/distributed/rpc/request_callback_impl.h' 2025-08-14T20:48:16.6680390Z adding 'torch/include/torch/csrc/distributed/rpc/request_callback_no_python.h' 2025-08-14T20:48:16.6681160Z adding 'torch/include/torch/csrc/distributed/rpc/rpc.h' 2025-08-14T20:48:16.6684750Z adding 'torch/include/torch/csrc/distributed/rpc/rpc_agent.h' 2025-08-14T20:48:16.6685450Z adding 'torch/include/torch/csrc/distributed/rpc/rpc_command_base.h' 2025-08-14T20:48:16.6689860Z adding 'torch/include/torch/csrc/distributed/rpc/rref_context.h' 2025-08-14T20:48:16.6694120Z adding 'torch/include/torch/csrc/distributed/rpc/rref_impl.h' 2025-08-14T20:48:16.6695260Z adding 'torch/include/torch/csrc/distributed/rpc/rref_proto.h' 2025-08-14T20:48:16.6696450Z adding 'torch/include/torch/csrc/distributed/rpc/script_call.h' 2025-08-14T20:48:16.6697510Z adding 'torch/include/torch/csrc/distributed/rpc/script_remote_call.h' 2025-08-14T20:48:16.6698390Z adding 'torch/include/torch/csrc/distributed/rpc/script_resp.h' 2025-08-14T20:48:16.6702680Z adding 'torch/include/torch/csrc/distributed/rpc/tensorpipe_agent.h' 2025-08-14T20:48:16.6703980Z adding 'torch/include/torch/csrc/distributed/rpc/tensorpipe_utils.h' 2025-08-14T20:48:16.6705050Z adding 'torch/include/torch/csrc/distributed/rpc/torchscript_functions.h' 2025-08-14T20:48:16.6706120Z adding 'torch/include/torch/csrc/distributed/rpc/types.h' 2025-08-14T20:48:16.6707160Z adding 'torch/include/torch/csrc/distributed/rpc/unpickled_python_call.h' 2025-08-14T20:48:16.6708210Z adding 'torch/include/torch/csrc/distributed/rpc/unpickled_python_remote_call.h' 2025-08-14T20:48:16.6709530Z adding 'torch/include/torch/csrc/distributed/rpc/utils.h' 2025-08-14T20:48:16.6710960Z adding 'torch/include/torch/csrc/distributed/rpc/metrics/RpcMetricsHandler.h' 2025-08-14T20:48:16.6712460Z adding 'torch/include/torch/csrc/distributed/rpc/profiler/remote_profiler_manager.h' 2025-08-14T20:48:16.6713900Z adding 'torch/include/torch/csrc/distributed/rpc/profiler/server_process_global_profiler.h' 2025-08-14T20:48:16.6715650Z adding 'torch/include/torch/csrc/distributed/rpc/testing/faulty_tensorpipe_agent.h' 2025-08-14T20:48:16.6716280Z adding 'torch/include/torch/csrc/distributed/rpc/testing/testing.h' 2025-08-14T20:48:16.6718220Z adding 'torch/include/torch/csrc/dynamo/cache_entry.h' 2025-08-14T20:48:16.6728150Z adding 'torch/include/torch/csrc/dynamo/compiled_autograd.h' 2025-08-14T20:48:16.6729050Z adding 'torch/include/torch/csrc/dynamo/cpp_shim.h' 2025-08-14T20:48:16.6730050Z adding 'torch/include/torch/csrc/dynamo/cpython_defs.h' 2025-08-14T20:48:16.6731090Z adding 'torch/include/torch/csrc/dynamo/cpython_includes.h' 2025-08-14T20:48:16.6732420Z adding 'torch/include/torch/csrc/dynamo/debug_macros.h' 2025-08-14T20:48:16.6733420Z adding 'torch/include/torch/csrc/dynamo/eval_frame.h' 2025-08-14T20:48:16.6734330Z adding 'torch/include/torch/csrc/dynamo/eval_frame_cpp.h' 2025-08-14T20:48:16.6736440Z adding 'torch/include/torch/csrc/dynamo/extra_state.h' 2025-08-14T20:48:16.6737460Z adding 'torch/include/torch/csrc/dynamo/framelocals_mapping.h' 2025-08-14T20:48:16.6738650Z adding 'torch/include/torch/csrc/dynamo/guards.h' 2025-08-14T20:48:16.6739500Z adding 'torch/include/torch/csrc/dynamo/init.h' 2025-08-14T20:48:16.6740430Z adding 'torch/include/torch/csrc/dynamo/python_compiled_autograd.h' 2025-08-14T20:48:16.6741300Z adding 'torch/include/torch/csrc/dynamo/utils.h' 2025-08-14T20:48:16.6742510Z adding 'torch/include/torch/csrc/export/example_upgraders.h' 2025-08-14T20:48:16.6743910Z adding 'torch/include/torch/csrc/export/pt2_archive_constants.h' 2025-08-14T20:48:16.6744810Z adding 'torch/include/torch/csrc/export/pybind.h' 2025-08-14T20:48:16.6746740Z adding 'torch/include/torch/csrc/export/upgrader.h' 2025-08-14T20:48:16.6747410Z adding 'torch/include/torch/csrc/functorch/init.h' 2025-08-14T20:48:16.6748360Z adding 'torch/include/torch/csrc/fx/node.h' 2025-08-14T20:48:16.6750170Z adding 'torch/include/torch/csrc/inductor/array_ref_impl.h' 2025-08-14T20:48:16.6757380Z adding 'torch/include/torch/csrc/inductor/cpp_prefix.h' 2025-08-14T20:48:16.6758340Z adding 'torch/include/torch/csrc/inductor/inductor_ops.h' 2025-08-14T20:48:16.6759170Z adding 'torch/include/torch/csrc/inductor/static_cuda_launcher.h' 2025-08-14T20:48:16.6761350Z adding 'torch/include/torch/csrc/inductor/aoti_eager/kernel_holder.h' 2025-08-14T20:48:16.6763090Z adding 'torch/include/torch/csrc/inductor/aoti_eager/kernel_meta_info.h' 2025-08-14T20:48:16.6763980Z adding 'torch/include/torch/csrc/inductor/aoti_include/array_ref.h' 2025-08-14T20:48:16.6764810Z adding 'torch/include/torch/csrc/inductor/aoti_include/common.h' 2025-08-14T20:48:16.6765610Z adding 'torch/include/torch/csrc/inductor/aoti_include/cpu.h' 2025-08-14T20:48:16.6766390Z adding 'torch/include/torch/csrc/inductor/aoti_include/cuda.h' 2025-08-14T20:48:16.6767150Z adding 'torch/include/torch/csrc/inductor/aoti_include/mps.h' 2025-08-14T20:48:16.6767910Z adding 'torch/include/torch/csrc/inductor/aoti_include/xpu.h' 2025-08-14T20:48:16.6769210Z adding 'torch/include/torch/csrc/inductor/aoti_package/model_package_loader.h' 2025-08-14T20:48:16.6770000Z adding 'torch/include/torch/csrc/inductor/aoti_package/pybind.h' 2025-08-14T20:48:16.6772020Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner.h' 2025-08-14T20:48:16.6772710Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_cpu.h' 2025-08-14T20:48:16.6773660Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_cuda.h' 2025-08-14T20:48:16.6774510Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_mps.h' 2025-08-14T20:48:16.6775480Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_xpu.h' 2025-08-14T20:48:16.6776600Z adding 'torch/include/torch/csrc/inductor/aoti_runner/pybind.h' 2025-08-14T20:48:16.6778870Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/arrayref_tensor.h' 2025-08-14T20:48:16.6779530Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/constant_type.h' 2025-08-14T20:48:16.6780660Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/device_utils.h' 2025-08-14T20:48:16.6782920Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/interface.h' 2025-08-14T20:48:16.6784150Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/mini_array_ref.h' 2025-08-14T20:48:16.6785270Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/model.h' 2025-08-14T20:48:16.6790020Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/model_base.h' 2025-08-14T20:48:16.6795330Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/model_container.h' 2025-08-14T20:48:16.6796290Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/scalar_to_tensor.h' 2025-08-14T20:48:16.6798400Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/sycl_runtime_wrappers.h' 2025-08-14T20:48:16.6799400Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/thread_local.h' 2025-08-14T20:48:16.6801840Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/utils.h' 2025-08-14T20:48:16.6802630Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/utils_cuda.h' 2025-08-14T20:48:16.6803680Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/utils_xpu.h' 2025-08-14T20:48:16.6804820Z adding 'torch/include/torch/csrc/inductor/aoti_torch/mkldnn_tensor.h' 2025-08-14T20:48:16.6806340Z adding 'torch/include/torch/csrc/inductor/aoti_torch/oss_proxy_executor.h' 2025-08-14T20:48:16.6807280Z adding 'torch/include/torch/csrc/inductor/aoti_torch/proxy_executor.h' 2025-08-14T20:48:16.6808220Z adding 'torch/include/torch/csrc/inductor/aoti_torch/tensor_converter.h' 2025-08-14T20:48:16.6810170Z adding 'torch/include/torch/csrc/inductor/aoti_torch/utils.h' 2025-08-14T20:48:16.6811460Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/macros.h' 2025-08-14T20:48:16.6815680Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim.h' 2025-08-14T20:48:16.6817000Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim_cpu.h' 2025-08-14T20:48:16.6818460Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim_deprecated.h' 2025-08-14T20:48:16.6819440Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim_mps.h' 2025-08-14T20:48:16.6820470Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim_xpu.h' 2025-08-14T20:48:16.6822360Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_aten.h' 2025-08-14T20:48:16.6825680Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_cpu.h' 2025-08-14T20:48:16.6829470Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_cuda.h' 2025-08-14T20:48:16.6832360Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_mps.h' 2025-08-14T20:48:16.6834240Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_xpu.h' 2025-08-14T20:48:16.6835110Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/array_ref.h' 2025-08-14T20:48:16.6836210Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/common.h' 2025-08-14T20:48:16.6837010Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/cpu.h' 2025-08-14T20:48:16.6837820Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/cuda.h' 2025-08-14T20:48:16.6838580Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/mps.h' 2025-08-14T20:48:16.6839360Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/xpu.h' 2025-08-14T20:48:16.6840480Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/cpu.h' 2025-08-14T20:48:16.6841230Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/cuda.h' 2025-08-14T20:48:16.6842000Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/mps.h' 2025-08-14T20:48:16.6842780Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/xpu.h' 2025-08-14T20:48:16.6843780Z adding 'torch/include/torch/csrc/instruction_counter/Module.h' 2025-08-14T20:48:16.6845880Z adding 'torch/include/torch/csrc/jit/jit_log.h' 2025-08-14T20:48:16.6846680Z adding 'torch/include/torch/csrc/jit/jit_opt_limit.h' 2025-08-14T20:48:16.6847560Z adding 'torch/include/torch/csrc/jit/resource_guard.h' 2025-08-14T20:48:16.6851300Z adding 'torch/include/torch/csrc/jit/api/compilation_unit.h' 2025-08-14T20:48:16.6853350Z adding 'torch/include/torch/csrc/jit/api/function_impl.h' 2025-08-14T20:48:16.6854160Z adding 'torch/include/torch/csrc/jit/api/method.h' 2025-08-14T20:48:16.6859740Z adding 'torch/include/torch/csrc/jit/api/module.h' 2025-08-14T20:48:16.6861540Z adding 'torch/include/torch/csrc/jit/api/object.h' 2025-08-14T20:48:16.6862920Z adding 'torch/include/torch/csrc/jit/backends/backend.h' 2025-08-14T20:48:16.6865260Z adding 'torch/include/torch/csrc/jit/backends/backend_debug_handler.h' 2025-08-14T20:48:16.6866100Z adding 'torch/include/torch/csrc/jit/backends/backend_debug_info.h' 2025-08-14T20:48:16.6867120Z adding 'torch/include/torch/csrc/jit/backends/backend_detail.h' 2025-08-14T20:48:16.6868280Z adding 'torch/include/torch/csrc/jit/backends/backend_exception.h' 2025-08-14T20:48:16.6869140Z adding 'torch/include/torch/csrc/jit/backends/backend_init.h' 2025-08-14T20:48:16.6870140Z adding 'torch/include/torch/csrc/jit/backends/backend_interface.h' 2025-08-14T20:48:16.6871020Z adding 'torch/include/torch/csrc/jit/backends/backend_preprocess.h' 2025-08-14T20:48:16.6871860Z adding 'torch/include/torch/csrc/jit/backends/backend_resolver.h' 2025-08-14T20:48:16.6873310Z adding 'torch/include/torch/csrc/jit/backends/coreml/cpp/context.h' 2025-08-14T20:48:16.6874460Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLCompiler.h' 2025-08-14T20:48:16.6875370Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLExecutor.h' 2025-08-14T20:48:16.6876260Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLFeatureProvider.h' 2025-08-14T20:48:16.6877160Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLModelWrapper.h' 2025-08-14T20:48:16.6878040Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLTensorSpec.h' 2025-08-14T20:48:16.6879870Z adding 'torch/include/torch/csrc/jit/backends/xnnpack/xnnpack_graph_builder.h' 2025-08-14T20:48:16.6880880Z adding 'torch/include/torch/csrc/jit/backends/xnnpack/compiler/xnn_compiler.h' 2025-08-14T20:48:16.6882120Z adding 'torch/include/torch/csrc/jit/backends/xnnpack/executor/xnn_executor.h' 2025-08-14T20:48:16.6883580Z adding 'torch/include/torch/csrc/jit/backends/xnnpack/serialization/serializer.h' 2025-08-14T20:48:16.6885370Z adding 'torch/include/torch/csrc/jit/codegen/cuda/interface.h' 2025-08-14T20:48:16.6886500Z adding 'torch/include/torch/csrc/jit/codegen/fuser/arg_spec.h' 2025-08-14T20:48:16.6887440Z adding 'torch/include/torch/csrc/jit/codegen/fuser/codegen.h' 2025-08-14T20:48:16.6888510Z adding 'torch/include/torch/csrc/jit/codegen/fuser/compiler.h' 2025-08-14T20:48:16.6889380Z adding 'torch/include/torch/csrc/jit/codegen/fuser/executor.h' 2025-08-14T20:48:16.6890190Z adding 'torch/include/torch/csrc/jit/codegen/fuser/fallback.h' 2025-08-14T20:48:16.6891480Z adding 'torch/include/torch/csrc/jit/codegen/fuser/fused_kernel.h' 2025-08-14T20:48:16.6892540Z adding 'torch/include/torch/csrc/jit/codegen/fuser/interface.h' 2025-08-14T20:48:16.6893500Z adding 'torch/include/torch/csrc/jit/codegen/fuser/kernel_cache.h' 2025-08-14T20:48:16.6895150Z adding 'torch/include/torch/csrc/jit/codegen/fuser/kernel_spec.h' 2025-08-14T20:48:16.6896080Z adding 'torch/include/torch/csrc/jit/codegen/fuser/partition_desc.h' 2025-08-14T20:48:16.6897320Z adding 'torch/include/torch/csrc/jit/codegen/fuser/tensor_desc.h' 2025-08-14T20:48:16.6898200Z adding 'torch/include/torch/csrc/jit/codegen/fuser/tensor_info.h' 2025-08-14T20:48:16.6899450Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cpu/fused_kernel.h' 2025-08-14T20:48:16.6900620Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cpu/resource_strings.h' 2025-08-14T20:48:16.6901930Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cpu/temp_file.h' 2025-08-14T20:48:16.6903170Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cuda/fused_kernel.h' 2025-08-14T20:48:16.6905980Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cuda/resource_strings.h' 2025-08-14T20:48:16.6908330Z adding 'torch/include/torch/csrc/jit/codegen/onednn/LlgaTensorImpl.h' 2025-08-14T20:48:16.6908890Z adding 'torch/include/torch/csrc/jit/codegen/onednn/decompose_silu.h' 2025-08-14T20:48:16.6909710Z adding 'torch/include/torch/csrc/jit/codegen/onednn/defer_size_check.h' 2025-08-14T20:48:16.6910790Z adding 'torch/include/torch/csrc/jit/codegen/onednn/graph_fuser.h' 2025-08-14T20:48:16.6911920Z adding 'torch/include/torch/csrc/jit/codegen/onednn/graph_helper.h' 2025-08-14T20:48:16.6912730Z adding 'torch/include/torch/csrc/jit/codegen/onednn/guard_shape.h' 2025-08-14T20:48:16.6913720Z adding 'torch/include/torch/csrc/jit/codegen/onednn/interface.h' 2025-08-14T20:48:16.6914940Z adding 'torch/include/torch/csrc/jit/codegen/onednn/kernel.h' 2025-08-14T20:48:16.6915770Z adding 'torch/include/torch/csrc/jit/codegen/onednn/layout_propagation.h' 2025-08-14T20:48:16.6917120Z adding 'torch/include/torch/csrc/jit/codegen/onednn/operator.h' 2025-08-14T20:48:16.6918010Z adding 'torch/include/torch/csrc/jit/codegen/onednn/prepare_binary.h' 2025-08-14T20:48:16.6919990Z adding 'torch/include/torch/csrc/jit/cuda/cuda.h' 2025-08-14T20:48:16.6920990Z adding 'torch/include/torch/csrc/jit/frontend/builtin_functions.h' 2025-08-14T20:48:16.6921900Z adding 'torch/include/torch/csrc/jit/frontend/canonicalize_modified_loop.h' 2025-08-14T20:48:16.6924550Z adding 'torch/include/torch/csrc/jit/frontend/concrete_module_type.h' 2025-08-14T20:48:16.6925130Z adding 'torch/include/torch/csrc/jit/frontend/convert_to_ssa.h' 2025-08-14T20:48:16.6925950Z adding 'torch/include/torch/csrc/jit/frontend/edit_distance.h' 2025-08-14T20:48:16.6927060Z adding 'torch/include/torch/csrc/jit/frontend/error_report.h' 2025-08-14T20:48:16.6927890Z adding 'torch/include/torch/csrc/jit/frontend/exit_transforms.h' 2025-08-14T20:48:16.6928820Z adding 'torch/include/torch/csrc/jit/frontend/function_schema_parser.h' 2025-08-14T20:48:16.6929660Z adding 'torch/include/torch/csrc/jit/frontend/inline_loop_condition.h' 2025-08-14T20:48:16.6930530Z adding 'torch/include/torch/csrc/jit/frontend/ir_emitter.h' 2025-08-14T20:48:16.6935300Z adding 'torch/include/torch/csrc/jit/frontend/lexer.h' 2025-08-14T20:48:16.6936220Z adding 'torch/include/torch/csrc/jit/frontend/mini_environment.h' 2025-08-14T20:48:16.6937180Z adding 'torch/include/torch/csrc/jit/frontend/name_mangler.h' 2025-08-14T20:48:16.6938370Z adding 'torch/include/torch/csrc/jit/frontend/parse_string_literal.h' 2025-08-14T20:48:16.6939260Z adding 'torch/include/torch/csrc/jit/frontend/parser.h' 2025-08-14T20:48:16.6940110Z adding 'torch/include/torch/csrc/jit/frontend/parser_constants.h' 2025-08-14T20:48:16.6941170Z adding 'torch/include/torch/csrc/jit/frontend/resolver.h' 2025-08-14T20:48:16.6942280Z adding 'torch/include/torch/csrc/jit/frontend/schema_matching.h' 2025-08-14T20:48:16.6943300Z adding 'torch/include/torch/csrc/jit/frontend/schema_type_parser.h' 2025-08-14T20:48:16.6944340Z adding 'torch/include/torch/csrc/jit/frontend/script_type_parser.h' 2025-08-14T20:48:16.6948410Z adding 'torch/include/torch/csrc/jit/frontend/source_range.h' 2025-08-14T20:48:16.6949170Z adding 'torch/include/torch/csrc/jit/frontend/source_ref.h' 2025-08-14T20:48:16.6950030Z adding 'torch/include/torch/csrc/jit/frontend/strtod.h' 2025-08-14T20:48:16.6955720Z adding 'torch/include/torch/csrc/jit/frontend/sugared_value.h' 2025-08-14T20:48:16.6958460Z adding 'torch/include/torch/csrc/jit/frontend/tracer.h' 2025-08-14T20:48:16.6960320Z adding 'torch/include/torch/csrc/jit/frontend/tree.h' 2025-08-14T20:48:16.6966880Z adding 'torch/include/torch/csrc/jit/frontend/tree_views.h' 2025-08-14T20:48:16.6967750Z adding 'torch/include/torch/csrc/jit/frontend/versioned_symbols.h' 2025-08-14T20:48:16.6971810Z adding 'torch/include/torch/csrc/jit/ir/alias_analysis.h' 2025-08-14T20:48:16.6973040Z adding 'torch/include/torch/csrc/jit/ir/attributes.h' 2025-08-14T20:48:16.6974180Z adding 'torch/include/torch/csrc/jit/ir/constants.h' 2025-08-14T20:48:16.6976110Z adding 'torch/include/torch/csrc/jit/ir/graph_node_list.h' 2025-08-14T20:48:16.6976690Z adding 'torch/include/torch/csrc/jit/ir/graph_utils.h' 2025-08-14T20:48:16.6989270Z adding 'torch/include/torch/csrc/jit/ir/ir.h' 2025-08-14T20:48:16.6990940Z adding 'torch/include/torch/csrc/jit/ir/ir_views.h' 2025-08-14T20:48:16.6992070Z adding 'torch/include/torch/csrc/jit/ir/irparser.h' 2025-08-14T20:48:16.6993310Z adding 'torch/include/torch/csrc/jit/ir/named_value.h' 2025-08-14T20:48:16.6994180Z adding 'torch/include/torch/csrc/jit/ir/node_hashing.h' 2025-08-14T20:48:16.6996540Z adding 'torch/include/torch/csrc/jit/ir/scope.h' 2025-08-14T20:48:16.6997730Z adding 'torch/include/torch/csrc/jit/ir/subgraph_matcher.h' 2025-08-14T20:48:16.6998600Z adding 'torch/include/torch/csrc/jit/ir/type_hashing.h' 2025-08-14T20:48:16.7000170Z adding 'torch/include/torch/csrc/jit/mobile/code.h' 2025-08-14T20:48:16.7001110Z adding 'torch/include/torch/csrc/jit/mobile/debug_info.h' 2025-08-14T20:48:16.7003260Z adding 'torch/include/torch/csrc/jit/mobile/file_format.h' 2025-08-14T20:48:16.7004480Z adding 'torch/include/torch/csrc/jit/mobile/flatbuffer_loader.h' 2025-08-14T20:48:16.7005390Z adding 'torch/include/torch/csrc/jit/mobile/frame.h' 2025-08-14T20:48:16.7006640Z adding 'torch/include/torch/csrc/jit/mobile/function.h' 2025-08-14T20:48:16.7008020Z adding 'torch/include/torch/csrc/jit/mobile/import.h' 2025-08-14T20:48:16.7008960Z adding 'torch/include/torch/csrc/jit/mobile/import_data.h' 2025-08-14T20:48:16.7009870Z adding 'torch/include/torch/csrc/jit/mobile/import_export_common.h' 2025-08-14T20:48:16.7010710Z adding 'torch/include/torch/csrc/jit/mobile/interpreter.h' 2025-08-14T20:48:16.7011660Z adding 'torch/include/torch/csrc/jit/mobile/method.h' 2025-08-14T20:48:16.7013630Z adding 'torch/include/torch/csrc/jit/mobile/module.h' 2025-08-14T20:48:16.7014690Z adding 'torch/include/torch/csrc/jit/mobile/observer.h' 2025-08-14T20:48:16.7015590Z adding 'torch/include/torch/csrc/jit/mobile/parse_bytecode.h' 2025-08-14T20:48:16.7016520Z adding 'torch/include/torch/csrc/jit/mobile/parse_operators.h' 2025-08-14T20:48:16.7017420Z adding 'torch/include/torch/csrc/jit/mobile/prim_ops_registery.h' 2025-08-14T20:48:16.7018980Z adding 'torch/include/torch/csrc/jit/mobile/profiler_edge.h' 2025-08-14T20:48:16.7019780Z adding 'torch/include/torch/csrc/jit/mobile/promoted_prim_ops.h' 2025-08-14T20:48:16.7020770Z adding 'torch/include/torch/csrc/jit/mobile/quantization.h' 2025-08-14T20:48:16.7021830Z adding 'torch/include/torch/csrc/jit/mobile/register_ops_common_utils.h' 2025-08-14T20:48:16.7022810Z adding 'torch/include/torch/csrc/jit/mobile/type_parser.h' 2025-08-14T20:48:16.7023740Z adding 'torch/include/torch/csrc/jit/mobile/upgrader_mobile.h' 2025-08-14T20:48:16.7025090Z adding 'torch/include/torch/csrc/jit/mobile/compatibility/backport.h' 2025-08-14T20:48:16.7026090Z adding 'torch/include/torch/csrc/jit/mobile/compatibility/backport_manager.h' 2025-08-14T20:48:16.7027330Z adding 'torch/include/torch/csrc/jit/mobile/compatibility/model_compatibility.h' 2025-08-14T20:48:16.7028320Z adding 'torch/include/torch/csrc/jit/mobile/compatibility/runtime_compatibility.h' 2025-08-14T20:48:16.7029570Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/BuildFeatureTracer.h' 2025-08-14T20:48:16.7030480Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/CustomClassTracer.h' 2025-08-14T20:48:16.7031500Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/KernelDTypeTracer.h' 2025-08-14T20:48:16.7033470Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/MobileModelRunner.h' 2025-08-14T20:48:16.7034000Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/OperatorCallTracer.h' 2025-08-14T20:48:16.7034840Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/TensorUtils.h' 2025-08-14T20:48:16.7035800Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/TracerRunner.h' 2025-08-14T20:48:16.7036920Z adding 'torch/include/torch/csrc/jit/mobile/nnc/aot_compiler.h' 2025-08-14T20:48:16.7038870Z adding 'torch/include/torch/csrc/jit/mobile/nnc/context.h' 2025-08-14T20:48:16.7039600Z adding 'torch/include/torch/csrc/jit/mobile/nnc/registry.h' 2025-08-14T20:48:16.7040850Z adding 'torch/include/torch/csrc/jit/mobile/train/export_data.h' 2025-08-14T20:48:16.7041930Z adding 'torch/include/torch/csrc/jit/mobile/train/random.h' 2025-08-14T20:48:16.7042880Z adding 'torch/include/torch/csrc/jit/mobile/train/sequential.h' 2025-08-14T20:48:16.7044820Z adding 'torch/include/torch/csrc/jit/mobile/train/optim/sgd.h' 2025-08-14T20:48:16.7045760Z adding 'torch/include/torch/csrc/jit/operator_upgraders/upgraders.h' 2025-08-14T20:48:16.7046660Z adding 'torch/include/torch/csrc/jit/operator_upgraders/upgraders_entry.h' 2025-08-14T20:48:16.7047700Z adding 'torch/include/torch/csrc/jit/operator_upgraders/utils.h' 2025-08-14T20:48:16.7048620Z adding 'torch/include/torch/csrc/jit/operator_upgraders/version_map.h' 2025-08-14T20:48:16.7050670Z adding 'torch/include/torch/csrc/jit/passes/add_if_then_else.h' 2025-08-14T20:48:16.7051220Z adding 'torch/include/torch/csrc/jit/passes/annotate_warns.h' 2025-08-14T20:48:16.7052010Z adding 'torch/include/torch/csrc/jit/passes/autocast.h' 2025-08-14T20:48:16.7053010Z adding 'torch/include/torch/csrc/jit/passes/bailout_graph.h' 2025-08-14T20:48:16.7053830Z adding 'torch/include/torch/csrc/jit/passes/batch_mm.h' 2025-08-14T20:48:16.7054660Z adding 'torch/include/torch/csrc/jit/passes/canonicalize.h' 2025-08-14T20:48:16.7055540Z adding 'torch/include/torch/csrc/jit/passes/canonicalize_graph_fuser_ops.h' 2025-08-14T20:48:16.7056320Z adding 'torch/include/torch/csrc/jit/passes/check_strict_fusion.h' 2025-08-14T20:48:16.7057150Z adding 'torch/include/torch/csrc/jit/passes/clear_profiling.h' 2025-08-14T20:48:16.7058080Z adding 'torch/include/torch/csrc/jit/passes/clear_undefinedness.h' 2025-08-14T20:48:16.7058930Z adding 'torch/include/torch/csrc/jit/passes/common_subexpression_elimination.h' 2025-08-14T20:48:16.7059730Z adding 'torch/include/torch/csrc/jit/passes/concat_opt.h' 2025-08-14T20:48:16.7060540Z adding 'torch/include/torch/csrc/jit/passes/constant_pooling.h' 2025-08-14T20:48:16.7061540Z adding 'torch/include/torch/csrc/jit/passes/constant_propagation.h' 2025-08-14T20:48:16.7062460Z adding 'torch/include/torch/csrc/jit/passes/create_autodiff_subgraphs.h' 2025-08-14T20:48:16.7063240Z adding 'torch/include/torch/csrc/jit/passes/create_functional_graphs.h' 2025-08-14T20:48:16.7064240Z adding 'torch/include/torch/csrc/jit/passes/dead_code_elimination.h' 2025-08-14T20:48:16.7065010Z adding 'torch/include/torch/csrc/jit/passes/decompose_ops.h' 2025-08-14T20:48:16.7065840Z adding 'torch/include/torch/csrc/jit/passes/device_type_analysis.h' 2025-08-14T20:48:16.7066650Z adding 'torch/include/torch/csrc/jit/passes/dtype_analysis.h' 2025-08-14T20:48:16.7067520Z adding 'torch/include/torch/csrc/jit/passes/eliminate_no_ops.h' 2025-08-14T20:48:16.7068450Z adding 'torch/include/torch/csrc/jit/passes/erase_number_types.h' 2025-08-14T20:48:16.7069560Z adding 'torch/include/torch/csrc/jit/passes/fixup_trace_scope_blocks.h' 2025-08-14T20:48:16.7070480Z adding 'torch/include/torch/csrc/jit/passes/fold_conv_bn.h' 2025-08-14T20:48:16.7071380Z adding 'torch/include/torch/csrc/jit/passes/fold_linear_bn.h' 2025-08-14T20:48:16.7072330Z adding 'torch/include/torch/csrc/jit/passes/freeze_module.h' 2025-08-14T20:48:16.7073190Z adding 'torch/include/torch/csrc/jit/passes/frozen_concat_linear.h' 2025-08-14T20:48:16.7074090Z adding 'torch/include/torch/csrc/jit/passes/frozen_conv_add_relu_fusion.h' 2025-08-14T20:48:16.7074960Z adding 'torch/include/torch/csrc/jit/passes/frozen_conv_folding.h' 2025-08-14T20:48:16.7075850Z adding 'torch/include/torch/csrc/jit/passes/frozen_graph_optimizations.h' 2025-08-14T20:48:16.7076640Z adding 'torch/include/torch/csrc/jit/passes/frozen_linear_folding.h' 2025-08-14T20:48:16.7077480Z adding 'torch/include/torch/csrc/jit/passes/frozen_linear_transpose.h' 2025-08-14T20:48:16.7078310Z adding 'torch/include/torch/csrc/jit/passes/frozen_ops_to_mkldnn.h' 2025-08-14T20:48:16.7079160Z adding 'torch/include/torch/csrc/jit/passes/fuse_linear.h' 2025-08-14T20:48:16.7079990Z adding 'torch/include/torch/csrc/jit/passes/fuse_relu.h' 2025-08-14T20:48:16.7081110Z adding 'torch/include/torch/csrc/jit/passes/graph_fuser.h' 2025-08-14T20:48:16.7082160Z adding 'torch/include/torch/csrc/jit/passes/graph_rewrite_helper.h' 2025-08-14T20:48:16.7082970Z adding 'torch/include/torch/csrc/jit/passes/guard_elimination.h' 2025-08-14T20:48:16.7083780Z adding 'torch/include/torch/csrc/jit/passes/hoist_conv_packed_params.h' 2025-08-14T20:48:16.7084610Z adding 'torch/include/torch/csrc/jit/passes/inline_autodiff_subgraphs.h' 2025-08-14T20:48:16.7085450Z adding 'torch/include/torch/csrc/jit/passes/inline_fork_wait.h' 2025-08-14T20:48:16.7086260Z adding 'torch/include/torch/csrc/jit/passes/inline_forked_closures.h' 2025-08-14T20:48:16.7087020Z adding 'torch/include/torch/csrc/jit/passes/inliner.h' 2025-08-14T20:48:16.7087830Z adding 'torch/include/torch/csrc/jit/passes/inplace_check.h' 2025-08-14T20:48:16.7088640Z adding 'torch/include/torch/csrc/jit/passes/insert_guards.h' 2025-08-14T20:48:16.7089480Z adding 'torch/include/torch/csrc/jit/passes/integer_value_refinement.h' 2025-08-14T20:48:16.7093610Z adding 'torch/include/torch/csrc/jit/passes/lift_closures.h' 2025-08-14T20:48:16.7094300Z adding 'torch/include/torch/csrc/jit/passes/liveness.h' 2025-08-14T20:48:16.7095230Z adding 'torch/include/torch/csrc/jit/passes/loop_unrolling.h' 2025-08-14T20:48:16.7096090Z adding 'torch/include/torch/csrc/jit/passes/lower_grad_of.h' 2025-08-14T20:48:16.7096940Z adding 'torch/include/torch/csrc/jit/passes/lower_graph.h' 2025-08-14T20:48:16.7097830Z adding 'torch/include/torch/csrc/jit/passes/lower_tuples.h' 2025-08-14T20:48:16.7098680Z adding 'torch/include/torch/csrc/jit/passes/metal_rewrite.h' 2025-08-14T20:48:16.7099570Z adding 'torch/include/torch/csrc/jit/passes/mkldnn_rewrite.h' 2025-08-14T20:48:16.7100420Z adding 'torch/include/torch/csrc/jit/passes/mobile_optimizer_type.h' 2025-08-14T20:48:16.7101260Z adding 'torch/include/torch/csrc/jit/passes/normalize_ops.h' 2025-08-14T20:48:16.7102300Z adding 'torch/include/torch/csrc/jit/passes/onednn_graph_fuser.h' 2025-08-14T20:48:16.7103220Z adding 'torch/include/torch/csrc/jit/passes/onnx.h' 2025-08-14T20:48:16.7105150Z adding 'torch/include/torch/csrc/jit/passes/pass_manager.h' 2025-08-14T20:48:16.7105710Z adding 'torch/include/torch/csrc/jit/passes/peephole.h' 2025-08-14T20:48:16.7106610Z adding 'torch/include/torch/csrc/jit/passes/peephole_alias_sensitive.h' 2025-08-14T20:48:16.7107530Z adding 'torch/include/torch/csrc/jit/passes/peephole_dict_idioms.h' 2025-08-14T20:48:16.7108590Z adding 'torch/include/torch/csrc/jit/passes/peephole_list_idioms.h' 2025-08-14T20:48:16.7109440Z adding 'torch/include/torch/csrc/jit/passes/peephole_non_tensor.h' 2025-08-14T20:48:16.7110300Z adding 'torch/include/torch/csrc/jit/passes/prepack_folding.h' 2025-08-14T20:48:16.7111130Z adding 'torch/include/torch/csrc/jit/passes/refine_tuple_types.h' 2025-08-14T20:48:16.7111910Z adding 'torch/include/torch/csrc/jit/passes/remove_dropout.h' 2025-08-14T20:48:16.7112850Z adding 'torch/include/torch/csrc/jit/passes/remove_exceptions.h' 2025-08-14T20:48:16.7113670Z adding 'torch/include/torch/csrc/jit/passes/remove_expands.h' 2025-08-14T20:48:16.7114470Z adding 'torch/include/torch/csrc/jit/passes/remove_inplace_ops.h' 2025-08-14T20:48:16.7115650Z adding 'torch/include/torch/csrc/jit/passes/remove_mutation.h' 2025-08-14T20:48:16.7116580Z adding 'torch/include/torch/csrc/jit/passes/remove_redundant_profiles.h' 2025-08-14T20:48:16.7117490Z adding 'torch/include/torch/csrc/jit/passes/replacement_of_old_operators.h' 2025-08-14T20:48:16.7118270Z adding 'torch/include/torch/csrc/jit/passes/requires_grad_analysis.h' 2025-08-14T20:48:16.7119330Z adding 'torch/include/torch/csrc/jit/passes/restore_mutation.h' 2025-08-14T20:48:16.7120290Z adding 'torch/include/torch/csrc/jit/passes/shape_analysis.h' 2025-08-14T20:48:16.7121180Z adding 'torch/include/torch/csrc/jit/passes/specialize_autogradzero.h' 2025-08-14T20:48:16.7122640Z adding 'torch/include/torch/csrc/jit/passes/subgraph_rewrite.h' 2025-08-14T20:48:16.7123760Z adding 'torch/include/torch/csrc/jit/passes/symbolic_shape_analysis.h' 2025-08-14T20:48:16.7124720Z adding 'torch/include/torch/csrc/jit/passes/symbolic_shape_cache.h' 2025-08-14T20:48:16.7125950Z adding 'torch/include/torch/csrc/jit/passes/symbolic_shape_runtime_fusion.h' 2025-08-14T20:48:16.7132620Z adding 'torch/include/torch/csrc/jit/passes/tensorexpr_fuser.h' 2025-08-14T20:48:16.7132950Z adding 'torch/include/torch/csrc/jit/passes/update_differentiable_graph_requires_grad.h' 2025-08-14T20:48:16.7133090Z adding 'torch/include/torch/csrc/jit/passes/value_refinement_utils.h' 2025-08-14T20:48:16.7133550Z adding 'torch/include/torch/csrc/jit/passes/variadic_ops.h' 2025-08-14T20:48:16.7133670Z adding 'torch/include/torch/csrc/jit/passes/vulkan_rewrite.h' 2025-08-14T20:48:16.7133780Z adding 'torch/include/torch/csrc/jit/passes/xnnpack_rewrite.h' 2025-08-14T20:48:16.7133970Z adding 'torch/include/torch/csrc/jit/passes/dbr_quantization/remove_redundant_aliases.h' 2025-08-14T20:48:16.7134190Z adding 'torch/include/torch/csrc/jit/passes/onnx/cast_all_constant_to_floating.h' 2025-08-14T20:48:16.7135090Z adding 'torch/include/torch/csrc/jit/passes/onnx/constant_fold.h' 2025-08-14T20:48:16.7136610Z adding 'torch/include/torch/csrc/jit/passes/onnx/constant_map.h' 2025-08-14T20:48:16.7137370Z adding 'torch/include/torch/csrc/jit/passes/onnx/deduplicate_initializers.h' 2025-08-14T20:48:16.7138220Z adding 'torch/include/torch/csrc/jit/passes/onnx/eliminate_unused_items.h' 2025-08-14T20:48:16.7139130Z adding 'torch/include/torch/csrc/jit/passes/onnx/eval_peephole.h' 2025-08-14T20:48:16.7139860Z adding 'torch/include/torch/csrc/jit/passes/onnx/fixup_onnx_controlflow.h' 2025-08-14T20:48:16.7141050Z adding 'torch/include/torch/csrc/jit/passes/onnx/function_extraction.h' 2025-08-14T20:48:16.7141880Z adding 'torch/include/torch/csrc/jit/passes/onnx/function_substitution.h' 2025-08-14T20:48:16.7142920Z adding 'torch/include/torch/csrc/jit/passes/onnx/helper.h' 2025-08-14T20:48:16.7143800Z adding 'torch/include/torch/csrc/jit/passes/onnx/list_model_parameters.h' 2025-08-14T20:48:16.7144670Z adding 'torch/include/torch/csrc/jit/passes/onnx/naming.h' 2025-08-14T20:48:16.7145540Z adding 'torch/include/torch/csrc/jit/passes/onnx/onnx_log.h' 2025-08-14T20:48:16.7146350Z adding 'torch/include/torch/csrc/jit/passes/onnx/peephole.h' 2025-08-14T20:48:16.7147280Z adding 'torch/include/torch/csrc/jit/passes/onnx/prepare_division_for_onnx.h' 2025-08-14T20:48:16.7148090Z adding 'torch/include/torch/csrc/jit/passes/onnx/preprocess_for_onnx.h' 2025-08-14T20:48:16.7148950Z adding 'torch/include/torch/csrc/jit/passes/onnx/remove_inplace_ops_for_onnx.h' 2025-08-14T20:48:16.7149760Z adding 'torch/include/torch/csrc/jit/passes/onnx/scalar_type_analysis.h' 2025-08-14T20:48:16.7151740Z adding 'torch/include/torch/csrc/jit/passes/onnx/shape_type_inference.h' 2025-08-14T20:48:16.7152150Z adding 'torch/include/torch/csrc/jit/passes/onnx/unpack_quantized_weights.h' 2025-08-14T20:48:16.7153320Z adding 'torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/autograd_function_process.h' 2025-08-14T20:48:16.7154140Z adding 'torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/common.h' 2025-08-14T20:48:16.7155320Z adding 'torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/pattern_conversion.h' 2025-08-14T20:48:16.7156380Z adding 'torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/pattern_encapsulation.h' 2025-08-14T20:48:16.7157610Z adding 'torch/include/torch/csrc/jit/passes/quantization/dedup_module_uses.h' 2025-08-14T20:48:16.7158710Z adding 'torch/include/torch/csrc/jit/passes/quantization/finalize.h' 2025-08-14T20:48:16.7159550Z adding 'torch/include/torch/csrc/jit/passes/quantization/fusion_passes.h' 2025-08-14T20:48:16.7161690Z adding 'torch/include/torch/csrc/jit/passes/quantization/helper.h' 2025-08-14T20:48:16.7162510Z adding 'torch/include/torch/csrc/jit/passes/quantization/insert_observers.h' 2025-08-14T20:48:16.7163540Z adding 'torch/include/torch/csrc/jit/passes/quantization/insert_quant_dequant.h' 2025-08-14T20:48:16.7169830Z adding 'torch/include/torch/csrc/jit/passes/quantization/quantization_patterns.h' 2025-08-14T20:48:16.7170600Z adding 'torch/include/torch/csrc/jit/passes/quantization/quantization_type.h' 2025-08-14T20:48:16.7171450Z adding 'torch/include/torch/csrc/jit/passes/quantization/register_packed_params.h' 2025-08-14T20:48:16.7172580Z adding 'torch/include/torch/csrc/jit/passes/utils/check_alias_annotation.h' 2025-08-14T20:48:16.7174680Z adding 'torch/include/torch/csrc/jit/passes/utils/memory_dag.h' 2025-08-14T20:48:16.7175380Z adding 'torch/include/torch/csrc/jit/passes/utils/op_registry.h' 2025-08-14T20:48:16.7176200Z adding 'torch/include/torch/csrc/jit/passes/utils/optimization_utils.h' 2025-08-14T20:48:16.7177360Z adding 'torch/include/torch/csrc/jit/passes/utils/subgraph_utils.h' 2025-08-14T20:48:16.7178470Z adding 'torch/include/torch/csrc/jit/python/init.h' 2025-08-14T20:48:16.7179560Z adding 'torch/include/torch/csrc/jit/python/module_python.h' 2025-08-14T20:48:16.7181730Z adding 'torch/include/torch/csrc/jit/python/pybind.h' 2025-08-14T20:48:16.7191270Z adding 'torch/include/torch/csrc/jit/python/pybind_utils.h' 2025-08-14T20:48:16.7192770Z adding 'torch/include/torch/csrc/jit/python/python_arg_flatten.h' 2025-08-14T20:48:16.7193700Z adding 'torch/include/torch/csrc/jit/python/python_custom_class.h' 2025-08-14T20:48:16.7195050Z adding 'torch/include/torch/csrc/jit/python/python_dict.h' 2025-08-14T20:48:16.7196150Z adding 'torch/include/torch/csrc/jit/python/python_ir.h' 2025-08-14T20:48:16.7197730Z adding 'torch/include/torch/csrc/jit/python/python_ivalue.h' 2025-08-14T20:48:16.7199780Z adding 'torch/include/torch/csrc/jit/python/python_list.h' 2025-08-14T20:48:16.7201920Z adding 'torch/include/torch/csrc/jit/python/python_sugared_value.h' 2025-08-14T20:48:16.7202620Z adding 'torch/include/torch/csrc/jit/python/python_tracer.h' 2025-08-14T20:48:16.7203460Z adding 'torch/include/torch/csrc/jit/python/python_tree_views.h' 2025-08-14T20:48:16.7204230Z adding 'torch/include/torch/csrc/jit/python/script_init.h' 2025-08-14T20:48:16.7205140Z adding 'torch/include/torch/csrc/jit/python/update_graph_executor_opt.h' 2025-08-14T20:48:16.7205870Z adding 'torch/include/torch/csrc/jit/python/utf8_decoding_ignore.h' 2025-08-14T20:48:16.7210270Z adding 'torch/include/torch/csrc/jit/runtime/argument_spec.h' 2025-08-14T20:48:16.7211550Z adding 'torch/include/torch/csrc/jit/runtime/autodiff.h' 2025-08-14T20:48:16.7212770Z adding 'torch/include/torch/csrc/jit/runtime/calculate_necessary_args.h' 2025-08-14T20:48:16.7213730Z adding 'torch/include/torch/csrc/jit/runtime/custom_operator.h' 2025-08-14T20:48:16.7214740Z adding 'torch/include/torch/csrc/jit/runtime/decomposition_registry.h' 2025-08-14T20:48:16.7215590Z adding 'torch/include/torch/csrc/jit/runtime/decomposition_registry_util.h' 2025-08-14T20:48:16.7216440Z adding 'torch/include/torch/csrc/jit/runtime/exception_message.h' 2025-08-14T20:48:16.7218380Z adding 'torch/include/torch/csrc/jit/runtime/graph_executor.h' 2025-08-14T20:48:16.7219420Z adding 'torch/include/torch/csrc/jit/runtime/graph_executor_impl.h' 2025-08-14T20:48:16.7221450Z adding 'torch/include/torch/csrc/jit/runtime/graph_iterator.h' 2025-08-14T20:48:16.7222800Z adding 'torch/include/torch/csrc/jit/runtime/instruction.h' 2025-08-14T20:48:16.7224760Z adding 'torch/include/torch/csrc/jit/runtime/interpreter.h' 2025-08-14T20:48:16.7225450Z adding 'torch/include/torch/csrc/jit/runtime/jit_exception.h' 2025-08-14T20:48:16.7226240Z adding 'torch/include/torch/csrc/jit/runtime/jit_trace.h' 2025-08-14T20:48:16.7227370Z adding 'torch/include/torch/csrc/jit/runtime/logging.h' 2025-08-14T20:48:16.7230150Z adding 'torch/include/torch/csrc/jit/runtime/operator.h' 2025-08-14T20:48:16.7230750Z adding 'torch/include/torch/csrc/jit/runtime/operator_options.h' 2025-08-14T20:48:16.7231560Z adding 'torch/include/torch/csrc/jit/runtime/print_handler.h' 2025-08-14T20:48:16.7232850Z adding 'torch/include/torch/csrc/jit/runtime/profiling_graph_executor_impl.h' 2025-08-14T20:48:16.7235350Z adding 'torch/include/torch/csrc/jit/runtime/profiling_record.h' 2025-08-14T20:48:16.7240900Z adding 'torch/include/torch/csrc/jit/runtime/register_ops_utils.h' 2025-08-14T20:48:16.7241990Z adding 'torch/include/torch/csrc/jit/runtime/script_profile.h' 2025-08-14T20:48:16.7242930Z adding 'torch/include/torch/csrc/jit/runtime/serialized_shape_function_registry.h' 2025-08-14T20:48:16.7243730Z adding 'torch/include/torch/csrc/jit/runtime/shape_function_registry.h' 2025-08-14T20:48:16.7244750Z adding 'torch/include/torch/csrc/jit/runtime/simple_graph_executor_impl.h' 2025-08-14T20:48:16.7245680Z adding 'torch/include/torch/csrc/jit/runtime/slice_indices_adjust.h' 2025-08-14T20:48:16.7246580Z adding 'torch/include/torch/csrc/jit/runtime/symbolic_script.h' 2025-08-14T20:48:16.7247880Z adding 'torch/include/torch/csrc/jit/runtime/symbolic_shape_registry.h' 2025-08-14T20:48:16.7248860Z adding 'torch/include/torch/csrc/jit/runtime/symbolic_shape_registry_util.h' 2025-08-14T20:48:16.7249790Z adding 'torch/include/torch/csrc/jit/runtime/vararg_functions.h' 2025-08-14T20:48:16.7250750Z adding 'torch/include/torch/csrc/jit/runtime/variable_tensor_list.h' 2025-08-14T20:48:16.7252980Z adding 'torch/include/torch/csrc/jit/runtime/interpreter/can_emit_inline.h' 2025-08-14T20:48:16.7259600Z adding 'torch/include/torch/csrc/jit/runtime/interpreter/code_impl.h' 2025-08-14T20:48:16.7260440Z adding 'torch/include/torch/csrc/jit/runtime/interpreter/frame.h' 2025-08-14T20:48:16.7261360Z adding 'torch/include/torch/csrc/jit/runtime/interpreter/preprocess_graph.h' 2025-08-14T20:48:16.7263700Z adding 'torch/include/torch/csrc/jit/runtime/static/ProcessedNodeInputs.h' 2025-08-14T20:48:16.7264460Z adding 'torch/include/torch/csrc/jit/runtime/static/fusion.h' 2025-08-14T20:48:16.7272640Z adding 'torch/include/torch/csrc/jit/runtime/static/impl.h' 2025-08-14T20:48:16.7273390Z adding 'torch/include/torch/csrc/jit/runtime/static/init.h' 2025-08-14T20:48:16.7276360Z adding 'torch/include/torch/csrc/jit/runtime/static/memory_planner.h' 2025-08-14T20:48:16.7277680Z adding 'torch/include/torch/csrc/jit/runtime/static/ops.h' 2025-08-14T20:48:16.7279130Z adding 'torch/include/torch/csrc/jit/runtime/static/passes.h' 2025-08-14T20:48:16.7280950Z adding 'torch/include/torch/csrc/jit/runtime/static/processed_node_wrapper.h' 2025-08-14T20:48:16.7281830Z adding 'torch/include/torch/csrc/jit/runtime/static/static_method.h' 2025-08-14T20:48:16.7282730Z adding 'torch/include/torch/csrc/jit/runtime/static/te_wrapper.h' 2025-08-14T20:48:16.7284750Z adding 'torch/include/torch/csrc/jit/serialization/callstack_debug_info_serialization.h' 2025-08-14T20:48:16.7287250Z adding 'torch/include/torch/csrc/jit/serialization/export.h' 2025-08-14T20:48:16.7288040Z adding 'torch/include/torch/csrc/jit/serialization/export_bytecode.h' 2025-08-14T20:48:16.7289320Z adding 'torch/include/torch/csrc/jit/serialization/flatbuffer_serializer.h' 2025-08-14T20:48:16.7290210Z adding 'torch/include/torch/csrc/jit/serialization/flatbuffer_serializer_jit.h' 2025-08-14T20:48:16.7291480Z adding 'torch/include/torch/csrc/jit/serialization/import.h' 2025-08-14T20:48:16.7292490Z adding 'torch/include/torch/csrc/jit/serialization/import_export_constants.h' 2025-08-14T20:48:16.7293320Z adding 'torch/include/torch/csrc/jit/serialization/import_export_functions.h' 2025-08-14T20:48:16.7294210Z adding 'torch/include/torch/csrc/jit/serialization/import_export_helpers.h' 2025-08-14T20:48:16.7295180Z adding 'torch/include/torch/csrc/jit/serialization/import_read.h' 2025-08-14T20:48:16.7296410Z adding 'torch/include/torch/csrc/jit/serialization/import_source.h' 2025-08-14T20:48:16.7308790Z adding 'torch/include/torch/csrc/jit/serialization/mobile_bytecode_generated.h' 2025-08-14T20:48:16.7309950Z adding 'torch/include/torch/csrc/jit/serialization/onnx.h' 2025-08-14T20:48:16.7311880Z adding 'torch/include/torch/csrc/jit/serialization/pickle.h' 2025-08-14T20:48:16.7313630Z adding 'torch/include/torch/csrc/jit/serialization/pickler.h' 2025-08-14T20:48:16.7315760Z adding 'torch/include/torch/csrc/jit/serialization/pickler_helper.h' 2025-08-14T20:48:16.7316560Z adding 'torch/include/torch/csrc/jit/serialization/python_print.h' 2025-08-14T20:48:16.7317650Z adding 'torch/include/torch/csrc/jit/serialization/source_range_serialization.h' 2025-08-14T20:48:16.7318570Z adding 'torch/include/torch/csrc/jit/serialization/source_range_serialization_impl.h' 2025-08-14T20:48:16.7320930Z adding 'torch/include/torch/csrc/jit/serialization/storage_context.h' 2025-08-14T20:48:16.7323140Z adding 'torch/include/torch/csrc/jit/serialization/type_name_uniquer.h' 2025-08-14T20:48:16.7325550Z adding 'torch/include/torch/csrc/jit/serialization/unpickler.h' 2025-08-14T20:48:16.7328280Z adding 'torch/include/torch/csrc/jit/tensorexpr/analysis.h' 2025-08-14T20:48:16.7329470Z adding 'torch/include/torch/csrc/jit/tensorexpr/block_codegen.h' 2025-08-14T20:48:16.7330590Z adding 'torch/include/torch/csrc/jit/tensorexpr/bounds_inference.h' 2025-08-14T20:48:16.7332500Z adding 'torch/include/torch/csrc/jit/tensorexpr/bounds_overlap.h' 2025-08-14T20:48:16.7334550Z adding 'torch/include/torch/csrc/jit/tensorexpr/codegen.h' 2025-08-14T20:48:16.7335470Z adding 'torch/include/torch/csrc/jit/tensorexpr/cpp_codegen.h' 2025-08-14T20:48:16.7336370Z adding 'torch/include/torch/csrc/jit/tensorexpr/cpp_intrinsics.h' 2025-08-14T20:48:16.7338680Z adding 'torch/include/torch/csrc/jit/tensorexpr/cuda_codegen.h' 2025-08-14T20:48:16.7339660Z adding 'torch/include/torch/csrc/jit/tensorexpr/cuda_random.h' 2025-08-14T20:48:16.7342080Z adding 'torch/include/torch/csrc/jit/tensorexpr/eval.h' 2025-08-14T20:48:16.7342920Z adding 'torch/include/torch/csrc/jit/tensorexpr/exceptions.h' 2025-08-14T20:48:16.7346090Z adding 'torch/include/torch/csrc/jit/tensorexpr/expr.h' 2025-08-14T20:48:16.7347180Z adding 'torch/include/torch/csrc/jit/tensorexpr/external_functions.h' 2025-08-14T20:48:16.7348130Z adding 'torch/include/torch/csrc/jit/tensorexpr/external_functions_core.h' 2025-08-14T20:48:16.7349320Z adding 'torch/include/torch/csrc/jit/tensorexpr/external_functions_registry.h' 2025-08-14T20:48:16.7350650Z adding 'torch/include/torch/csrc/jit/tensorexpr/fwd_decls.h' 2025-08-14T20:48:16.7352290Z adding 'torch/include/torch/csrc/jit/tensorexpr/graph_opt.h' 2025-08-14T20:48:16.7354110Z adding 'torch/include/torch/csrc/jit/tensorexpr/half_support.h' 2025-08-14T20:48:16.7356180Z adding 'torch/include/torch/csrc/jit/tensorexpr/hash_provider.h' 2025-08-14T20:48:16.7356770Z adding 'torch/include/torch/csrc/jit/tensorexpr/intrinsic_symbols.h' 2025-08-14T20:48:16.7361080Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir.h' 2025-08-14T20:48:16.7361940Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_cloner.h' 2025-08-14T20:48:16.7362980Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_mutator.h' 2025-08-14T20:48:16.7364370Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_printer.h' 2025-08-14T20:48:16.7367740Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_simplifier.h' 2025-08-14T20:48:16.7368510Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_verifier.h' 2025-08-14T20:48:16.7369470Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_visitor.h' 2025-08-14T20:48:16.7372830Z adding 'torch/include/torch/csrc/jit/tensorexpr/kernel.h' 2025-08-14T20:48:16.7373970Z adding 'torch/include/torch/csrc/jit/tensorexpr/llvm_codegen.h' 2025-08-14T20:48:16.7375060Z adding 'torch/include/torch/csrc/jit/tensorexpr/llvm_jit.h' 2025-08-14T20:48:16.7380330Z adding 'torch/include/torch/csrc/jit/tensorexpr/loopnest.h' 2025-08-14T20:48:16.7381180Z adding 'torch/include/torch/csrc/jit/tensorexpr/loopnest_randomization.h' 2025-08-14T20:48:16.7382060Z adding 'torch/include/torch/csrc/jit/tensorexpr/lowerings.h' 2025-08-14T20:48:16.7385380Z adding 'torch/include/torch/csrc/jit/tensorexpr/mem_dependency_checker.h' 2025-08-14T20:48:16.7387460Z adding 'torch/include/torch/csrc/jit/tensorexpr/reduction.h' 2025-08-14T20:48:16.7390620Z adding 'torch/include/torch/csrc/jit/tensorexpr/registerizer.h' 2025-08-14T20:48:16.7395150Z adding 'torch/include/torch/csrc/jit/tensorexpr/stmt.h' 2025-08-14T20:48:16.7397260Z adding 'torch/include/torch/csrc/jit/tensorexpr/tensor.h' 2025-08-14T20:48:16.7397920Z adding 'torch/include/torch/csrc/jit/tensorexpr/tensorexpr_init.h' 2025-08-14T20:48:16.7399790Z adding 'torch/include/torch/csrc/jit/tensorexpr/types.h' 2025-08-14T20:48:16.7400500Z adding 'torch/include/torch/csrc/jit/tensorexpr/unique_name_manager.h' 2025-08-14T20:48:16.7401570Z adding 'torch/include/torch/csrc/jit/tensorexpr/var_substitutor.h' 2025-08-14T20:48:16.7403190Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/conv2d.h' 2025-08-14T20:48:16.7403960Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/matmul.h' 2025-08-14T20:48:16.7405130Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/misc.h' 2025-08-14T20:48:16.7405990Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/norm.h' 2025-08-14T20:48:16.7406810Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/operators.h' 2025-08-14T20:48:16.7407910Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/pointwise.h' 2025-08-14T20:48:16.7409080Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/quantization.h' 2025-08-14T20:48:16.7409960Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/reduction.h' 2025-08-14T20:48:16.7410780Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/softmax.h' 2025-08-14T20:48:16.7411920Z adding 'torch/include/torch/csrc/jit/testing/catch_utils.hpp' 2025-08-14T20:48:16.7413090Z adding 'torch/include/torch/csrc/jit/testing/file_check.h' 2025-08-14T20:48:16.7414000Z adding 'torch/include/torch/csrc/jit/testing/hooks_for_testing.h' 2025-08-14T20:48:16.7415980Z adding 'torch/include/torch/csrc/lazy/backend/backend_data.h' 2025-08-14T20:48:16.7417050Z adding 'torch/include/torch/csrc/lazy/backend/backend_device.h' 2025-08-14T20:48:16.7418990Z adding 'torch/include/torch/csrc/lazy/backend/backend_interface.h' 2025-08-14T20:48:16.7419920Z adding 'torch/include/torch/csrc/lazy/backend/lowering_context.h' 2025-08-14T20:48:16.7422000Z adding 'torch/include/torch/csrc/lazy/core/cache.h' 2025-08-14T20:48:16.7422750Z adding 'torch/include/torch/csrc/lazy/core/config.h' 2025-08-14T20:48:16.7423770Z adding 'torch/include/torch/csrc/lazy/core/debug_util.h' 2025-08-14T20:48:16.7424790Z adding 'torch/include/torch/csrc/lazy/core/dynamic_ir.h' 2025-08-14T20:48:16.7426900Z adding 'torch/include/torch/csrc/lazy/core/hash.h' 2025-08-14T20:48:16.7427850Z adding 'torch/include/torch/csrc/lazy/core/helpers.h' 2025-08-14T20:48:16.7430300Z adding 'torch/include/torch/csrc/lazy/core/ir.h' 2025-08-14T20:48:16.7431450Z adding 'torch/include/torch/csrc/lazy/core/ir_builder.h' 2025-08-14T20:48:16.7432380Z adding 'torch/include/torch/csrc/lazy/core/ir_dump_util.h' 2025-08-14T20:48:16.7525920Z adding 'torch/include/torch/csrc/lazy/core/ir_metadata.h' 2025-08-14T20:48:16.7528010Z adding 'torch/include/torch/csrc/lazy/core/ir_util.h' 2025-08-14T20:48:16.7531290Z adding 'torch/include/torch/csrc/lazy/core/lazy_graph_executor.h' 2025-08-14T20:48:16.7533790Z adding 'torch/include/torch/csrc/lazy/core/metrics.h' 2025-08-14T20:48:16.7536080Z adding 'torch/include/torch/csrc/lazy/core/multi_wait.h' 2025-08-14T20:48:16.7536940Z adding 'torch/include/torch/csrc/lazy/core/permutation_util.h' 2025-08-14T20:48:16.7538130Z adding 'torch/include/torch/csrc/lazy/core/shape.h' 2025-08-14T20:48:16.7540630Z adding 'torch/include/torch/csrc/lazy/core/shape_inference.h' 2025-08-14T20:48:16.7543490Z adding 'torch/include/torch/csrc/lazy/core/tensor.h' 2025-08-14T20:48:16.7544470Z adding 'torch/include/torch/csrc/lazy/core/tensor_impl.h' 2025-08-14T20:48:16.7545690Z adding 'torch/include/torch/csrc/lazy/core/tensor_util.h' 2025-08-14T20:48:16.7546670Z adding 'torch/include/torch/csrc/lazy/core/thread_pool.h' 2025-08-14T20:48:16.7548250Z adding 'torch/include/torch/csrc/lazy/core/trie.h' 2025-08-14T20:48:16.7549210Z adding 'torch/include/torch/csrc/lazy/core/unique.h' 2025-08-14T20:48:16.7550460Z adding 'torch/include/torch/csrc/lazy/core/util.h' 2025-08-14T20:48:16.7552150Z adding 'torch/include/torch/csrc/lazy/core/internal_ops/ltc_ops.h' 2025-08-14T20:48:16.7553400Z adding 'torch/include/torch/csrc/lazy/core/ops/arithmetic_ir_ops.h' 2025-08-14T20:48:16.7554390Z adding 'torch/include/torch/csrc/lazy/core/ops/utils.h' 2025-08-14T20:48:16.7577130Z adding 'torch/include/torch/csrc/lazy/generated/LazyIr.h' 2025-08-14T20:48:16.7581250Z adding 'torch/include/torch/csrc/lazy/generated/LazyNativeFunctions.h' 2025-08-14T20:48:16.7582420Z adding 'torch/include/torch/csrc/lazy/generated/LazyNonNativeIr.h' 2025-08-14T20:48:16.7583550Z adding 'torch/include/torch/csrc/lazy/python/init.h' 2025-08-14T20:48:16.7584660Z adding 'torch/include/torch/csrc/lazy/python/python_util.h' 2025-08-14T20:48:16.7585890Z adding 'torch/include/torch/csrc/lazy/ts_backend/config.h' 2025-08-14T20:48:16.7587090Z adding 'torch/include/torch/csrc/lazy/ts_backend/dynamic_ir.h' 2025-08-14T20:48:16.7588340Z adding 'torch/include/torch/csrc/lazy/ts_backend/ir_builder.h' 2025-08-14T20:48:16.7589530Z adding 'torch/include/torch/csrc/lazy/ts_backend/tensor_aten_ops.h' 2025-08-14T20:48:16.7590720Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_autograd_functions.h' 2025-08-14T20:48:16.7591790Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_backend_impl.h' 2025-08-14T20:48:16.7592760Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_eager_fallback.h' 2025-08-14T20:48:16.7594830Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_lowering_context.h' 2025-08-14T20:48:16.7595910Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_node.h' 2025-08-14T20:48:16.7596810Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_node_lowering.h' 2025-08-14T20:48:16.7598160Z adding 'torch/include/torch/csrc/lazy/ts_backend/ops/device_data.h' 2025-08-14T20:48:16.7599340Z adding 'torch/include/torch/csrc/lazy/ts_backend/ops/generic.h' 2025-08-14T20:48:16.7600780Z adding 'torch/include/torch/csrc/lazy/ts_backend/ops/to_copy.h' 2025-08-14T20:48:16.7603330Z adding 'torch/include/torch/csrc/monitor/counters.h' 2025-08-14T20:48:16.7604350Z adding 'torch/include/torch/csrc/monitor/events.h' 2025-08-14T20:48:16.7605410Z adding 'torch/include/torch/csrc/monitor/python_init.h' 2025-08-14T20:48:16.7606470Z adding 'torch/include/torch/csrc/mps/Module.h' 2025-08-14T20:48:16.7607570Z adding 'torch/include/torch/csrc/mtia/Module.h' 2025-08-14T20:48:16.7608730Z adding 'torch/include/torch/csrc/mtia/profiler/MTIAMemoryProfiler.h' 2025-08-14T20:48:16.7609930Z adding 'torch/include/torch/csrc/multiprocessing/init.h' 2025-08-14T20:48:16.7611100Z adding 'torch/include/torch/csrc/onnx/back_compat.h' 2025-08-14T20:48:16.7611910Z adding 'torch/include/torch/csrc/onnx/init.h' 2025-08-14T20:48:16.7612800Z adding 'torch/include/torch/csrc/onnx/onnx.h' 2025-08-14T20:48:16.7614440Z adding 'torch/include/torch/csrc/profiler/api.h' 2025-08-14T20:48:16.7618880Z adding 'torch/include/torch/csrc/profiler/collection.h' 2025-08-14T20:48:16.7619850Z adding 'torch/include/torch/csrc/profiler/combined_traceback.h' 2025-08-14T20:48:16.7621960Z adding 'torch/include/torch/csrc/profiler/containers.h' 2025-08-14T20:48:16.7623280Z adding 'torch/include/torch/csrc/profiler/data_flow.h' 2025-08-14T20:48:16.7624260Z adding 'torch/include/torch/csrc/profiler/events.h' 2025-08-14T20:48:16.7625180Z adding 'torch/include/torch/csrc/profiler/kineto_client_interface.h' 2025-08-14T20:48:16.7626530Z adding 'torch/include/torch/csrc/profiler/kineto_shim.h' 2025-08-14T20:48:16.7627710Z adding 'torch/include/torch/csrc/profiler/perf-inl.h' 2025-08-14T20:48:16.7628940Z adding 'torch/include/torch/csrc/profiler/perf.h' 2025-08-14T20:48:16.7631000Z adding 'torch/include/torch/csrc/profiler/util.h' 2025-08-14T20:48:16.7633470Z adding 'torch/include/torch/csrc/profiler/orchestration/observer.h' 2025-08-14T20:48:16.7634610Z adding 'torch/include/torch/csrc/profiler/orchestration/python_tracer.h' 2025-08-14T20:48:16.7635570Z adding 'torch/include/torch/csrc/profiler/orchestration/vulkan.h' 2025-08-14T20:48:16.7636750Z adding 'torch/include/torch/csrc/profiler/python/combined_traceback.h' 2025-08-14T20:48:16.7637630Z adding 'torch/include/torch/csrc/profiler/python/init.h' 2025-08-14T20:48:16.7638850Z adding 'torch/include/torch/csrc/profiler/python/pybind.h' 2025-08-14T20:48:16.7640050Z adding 'torch/include/torch/csrc/profiler/standalone/execution_trace_observer.h' 2025-08-14T20:48:16.7640860Z adding 'torch/include/torch/csrc/profiler/standalone/itt_observer.h' 2025-08-14T20:48:16.7641660Z adding 'torch/include/torch/csrc/profiler/standalone/nvtx_observer.h' 2025-08-14T20:48:16.7642910Z adding 'torch/include/torch/csrc/profiler/standalone/privateuse1_observer.h' 2025-08-14T20:48:16.7644070Z adding 'torch/include/torch/csrc/profiler/stubs/base.h' 2025-08-14T20:48:16.7645470Z adding 'torch/include/torch/csrc/profiler/unwind/action.h' 2025-08-14T20:48:16.7646590Z adding 'torch/include/torch/csrc/profiler/unwind/communicate.h' 2025-08-14T20:48:16.7649160Z adding 'torch/include/torch/csrc/profiler/unwind/debug_info.h' 2025-08-14T20:48:16.7649970Z adding 'torch/include/torch/csrc/profiler/unwind/dwarf_enums.h' 2025-08-14T20:48:16.7651940Z adding 'torch/include/torch/csrc/profiler/unwind/dwarf_symbolize_enums.h' 2025-08-14T20:48:16.7652780Z adding 'torch/include/torch/csrc/profiler/unwind/eh_frame_hdr.h' 2025-08-14T20:48:16.7654550Z adding 'torch/include/torch/csrc/profiler/unwind/fast_symbolizer.h' 2025-08-14T20:48:16.7657280Z adding 'torch/include/torch/csrc/profiler/unwind/fde.h' 2025-08-14T20:48:16.7658440Z adding 'torch/include/torch/csrc/profiler/unwind/lexer.h' 2025-08-14T20:48:16.7661150Z adding 'torch/include/torch/csrc/profiler/unwind/line_number_program.h' 2025-08-14T20:48:16.7662600Z adding 'torch/include/torch/csrc/profiler/unwind/mem_file.h' 2025-08-14T20:48:16.7663720Z adding 'torch/include/torch/csrc/profiler/unwind/range_table.h' 2025-08-14T20:48:16.7665090Z adding 'torch/include/torch/csrc/profiler/unwind/sections.h' 2025-08-14T20:48:16.7666070Z adding 'torch/include/torch/csrc/profiler/unwind/unwind.h' 2025-08-14T20:48:16.7667260Z adding 'torch/include/torch/csrc/profiler/unwind/unwind_error.h' 2025-08-14T20:48:16.7668410Z adding 'torch/include/torch/csrc/profiler/unwind/unwinder.h' 2025-08-14T20:48:16.7669900Z adding 'torch/include/torch/csrc/stable/accelerator.h' 2025-08-14T20:48:16.7673240Z adding 'torch/include/torch/csrc/stable/library.h' 2025-08-14T20:48:16.7674420Z adding 'torch/include/torch/csrc/stable/ops.h' 2025-08-14T20:48:16.7676410Z adding 'torch/include/torch/csrc/stable/tensor.h' 2025-08-14T20:48:16.7677440Z adding 'torch/include/torch/csrc/tensor/python_tensor.h' 2025-08-14T20:48:16.7679400Z adding 'torch/include/torch/csrc/utils/byte_order.h' 2025-08-14T20:48:16.7680250Z adding 'torch/include/torch/csrc/utils/cpp_stacktraces.h' 2025-08-14T20:48:16.7681070Z adding 'torch/include/torch/csrc/utils/cuda_enabled.h' 2025-08-14T20:48:16.7682300Z adding 'torch/include/torch/csrc/utils/device_lazy_init.h' 2025-08-14T20:48:16.7683410Z adding 'torch/include/torch/csrc/utils/disable_torch_function.h' 2025-08-14T20:48:16.7697090Z adding 'torch/include/torch/csrc/utils/generated_serialization_types.h' 2025-08-14T20:48:16.7698800Z adding 'torch/include/torch/csrc/utils/init.h' 2025-08-14T20:48:16.7699630Z adding 'torch/include/torch/csrc/utils/invalid_arguments.h' 2025-08-14T20:48:16.7700550Z adding 'torch/include/torch/csrc/utils/nested.h' 2025-08-14T20:48:16.7701710Z adding 'torch/include/torch/csrc/utils/numpy_stub.h' 2025-08-14T20:48:16.7702950Z adding 'torch/include/torch/csrc/utils/object_ptr.h' 2025-08-14T20:48:16.7703790Z adding 'torch/include/torch/csrc/utils/out_types.h' 2025-08-14T20:48:16.7706660Z adding 'torch/include/torch/csrc/utils/pybind.h' 2025-08-14T20:48:16.7707510Z adding 'torch/include/torch/csrc/utils/pycfunction_helpers.h' 2025-08-14T20:48:16.7708390Z adding 'torch/include/torch/csrc/utils/pyobject_preservation.h' 2025-08-14T20:48:16.7716300Z adding 'torch/include/torch/csrc/utils/python_arg_parser.h' 2025-08-14T20:48:16.7717280Z adding 'torch/include/torch/csrc/utils/python_compat.h' 2025-08-14T20:48:16.7718250Z adding 'torch/include/torch/csrc/utils/python_dispatch.h' 2025-08-14T20:48:16.7720250Z adding 'torch/include/torch/csrc/utils/python_numbers.h' 2025-08-14T20:48:16.7721120Z adding 'torch/include/torch/csrc/utils/python_raii.h' 2025-08-14T20:48:16.7723040Z adding 'torch/include/torch/csrc/utils/python_scalars.h' 2025-08-14T20:48:16.7724270Z adding 'torch/include/torch/csrc/utils/python_strings.h' 2025-08-14T20:48:16.7725270Z adding 'torch/include/torch/csrc/utils/python_stub.h' 2025-08-14T20:48:16.7727340Z adding 'torch/include/torch/csrc/utils/python_symnode.h' 2025-08-14T20:48:16.7728160Z adding 'torch/include/torch/csrc/utils/python_torch_function_mode.h' 2025-08-14T20:48:16.7729090Z adding 'torch/include/torch/csrc/utils/python_tuples.h' 2025-08-14T20:48:16.7736620Z adding 'torch/include/torch/csrc/utils/pythoncapi_compat.h' 2025-08-14T20:48:16.7738670Z adding 'torch/include/torch/csrc/utils/schema_info.h' 2025-08-14T20:48:16.7739400Z adding 'torch/include/torch/csrc/utils/six.h' 2025-08-14T20:48:16.7740520Z adding 'torch/include/torch/csrc/utils/structseq.h' 2025-08-14T20:48:16.7741470Z adding 'torch/include/torch/csrc/utils/tensor_apply.h' 2025-08-14T20:48:16.7742400Z adding 'torch/include/torch/csrc/utils/tensor_dtypes.h' 2025-08-14T20:48:16.7743690Z adding 'torch/include/torch/csrc/utils/tensor_flatten.h' 2025-08-14T20:48:16.7744730Z adding 'torch/include/torch/csrc/utils/tensor_layouts.h' 2025-08-14T20:48:16.7745590Z adding 'torch/include/torch/csrc/utils/tensor_list.h' 2025-08-14T20:48:16.7746530Z adding 'torch/include/torch/csrc/utils/tensor_memoryformats.h' 2025-08-14T20:48:16.7747740Z adding 'torch/include/torch/csrc/utils/tensor_new.h' 2025-08-14T20:48:16.7748920Z adding 'torch/include/torch/csrc/utils/tensor_numpy.h' 2025-08-14T20:48:16.7749850Z adding 'torch/include/torch/csrc/utils/tensor_qschemes.h' 2025-08-14T20:48:16.7750750Z adding 'torch/include/torch/csrc/utils/tensor_types.h' 2025-08-14T20:48:16.7752910Z adding 'torch/include/torch/csrc/utils/throughput_benchmark-inl.h' 2025-08-14T20:48:16.7755060Z adding 'torch/include/torch/csrc/utils/throughput_benchmark.h' 2025-08-14T20:48:16.7755870Z adding 'torch/include/torch/csrc/utils/torch_dispatch_mode.h' 2025-08-14T20:48:16.7757100Z adding 'torch/include/torch/csrc/utils/variadic.h' 2025-08-14T20:48:16.7757980Z adding 'torch/include/torch/csrc/utils/verbose.h' 2025-08-14T20:48:16.7759390Z adding 'torch/include/torch/csrc/xpu/Event.h' 2025-08-14T20:48:16.7760280Z adding 'torch/include/torch/csrc/xpu/Module.h' 2025-08-14T20:48:16.7761160Z adding 'torch/include/torch/csrc/xpu/Stream.h' 2025-08-14T20:48:16.7763490Z adding 'torch/include/torch/headeronly/core/ScalarType.h' 2025-08-14T20:48:16.7765340Z adding 'torch/include/torch/headeronly/cpu/vec/intrinsics.h' 2025-08-14T20:48:16.7766140Z adding 'torch/include/torch/headeronly/cpu/vec/vec_half.h' 2025-08-14T20:48:16.7768440Z adding 'torch/include/torch/headeronly/cpu/vec/vec256/missing_vld1_neon.h' 2025-08-14T20:48:16.7769170Z adding 'torch/include/torch/headeronly/cpu/vec/vec256/missing_vst1_neon.h' 2025-08-14T20:48:16.7771680Z adding 'torch/include/torch/headeronly/macros/Export.h' 2025-08-14T20:48:16.7775710Z adding 'torch/include/torch/headeronly/macros/Macros.h' 2025-08-14T20:48:16.7776450Z adding 'torch/include/torch/headeronly/macros/cmake_macros.h' 2025-08-14T20:48:16.7779440Z adding 'torch/include/torch/headeronly/util/BFloat16.h' 2025-08-14T20:48:16.7780800Z adding 'torch/include/torch/headeronly/util/Exception.h' 2025-08-14T20:48:16.7781860Z adding 'torch/include/torch/headeronly/util/Float4_e2m1fn_x2.h' 2025-08-14T20:48:16.7785370Z adding 'torch/include/torch/headeronly/util/Float8_e4m3fn.h' 2025-08-14T20:48:16.7787710Z adding 'torch/include/torch/headeronly/util/Float8_e4m3fnuz.h' 2025-08-14T20:48:16.7790390Z adding 'torch/include/torch/headeronly/util/Float8_e5m2.h' 2025-08-14T20:48:16.7792930Z adding 'torch/include/torch/headeronly/util/Float8_e5m2fnuz.h' 2025-08-14T20:48:16.7794680Z adding 'torch/include/torch/headeronly/util/Float8_e8m0fnu.h' 2025-08-14T20:48:16.7795670Z adding 'torch/include/torch/headeronly/util/Float8_fnuz_cvt.h' 2025-08-14T20:48:16.7800870Z adding 'torch/include/torch/headeronly/util/Half.h' 2025-08-14T20:48:16.7802080Z adding 'torch/include/torch/headeronly/util/TypeSafeSignMath.h' 2025-08-14T20:48:16.7803090Z adding 'torch/include/torch/headeronly/util/bit_cast.h' 2025-08-14T20:48:16.7804070Z adding 'torch/include/torch/headeronly/util/bits.h' 2025-08-14T20:48:16.7807910Z adding 'torch/include/torch/headeronly/util/complex.h' 2025-08-14T20:48:16.7808690Z adding 'torch/include/torch/headeronly/util/floating_point_utils.h' 2025-08-14T20:48:16.7809550Z adding 'torch/include/torch/headeronly/util/qint32.h' 2025-08-14T20:48:16.7810410Z adding 'torch/include/torch/headeronly/util/qint8.h' 2025-08-14T20:48:16.7811480Z adding 'torch/include/torch/headeronly/util/quint2x4.h' 2025-08-14T20:48:16.7812320Z adding 'torch/include/torch/headeronly/util/quint4x2.h' 2025-08-14T20:48:16.7813160Z adding 'torch/include/torch/headeronly/util/quint8.h' 2025-08-14T20:48:16.7814160Z adding 'torch/include/torch/headeronly/util/shim_utils.h' 2025-08-14T20:48:16.7817480Z adding 'torch/jit/__init__.py' 2025-08-14T20:48:16.7818670Z adding 'torch/jit/_async.py' 2025-08-14T20:48:16.7819600Z adding 'torch/jit/_await.py' 2025-08-14T20:48:16.7821820Z adding 'torch/jit/_builtins.py' 2025-08-14T20:48:16.7824330Z adding 'torch/jit/_check.py' 2025-08-14T20:48:16.7826450Z adding 'torch/jit/_dataclass_impls.py' 2025-08-14T20:48:16.7827050Z adding 'torch/jit/_decomposition_utils.py' 2025-08-14T20:48:16.7829010Z adding 'torch/jit/_decompositions.py' 2025-08-14T20:48:16.7831610Z adding 'torch/jit/_freeze.py' 2025-08-14T20:48:16.7833400Z adding 'torch/jit/_fuser.py' 2025-08-14T20:48:16.7834250Z adding 'torch/jit/_ir_utils.py' 2025-08-14T20:48:16.7835050Z adding 'torch/jit/_logging.py' 2025-08-14T20:48:16.7837600Z adding 'torch/jit/_monkeytype_config.py' 2025-08-14T20:48:16.7838350Z adding 'torch/jit/_pickle.py' 2025-08-14T20:48:16.7848150Z adding 'torch/jit/_recursive.py' 2025-08-14T20:48:16.7863210Z adding 'torch/jit/_script.py' 2025-08-14T20:48:16.7865800Z adding 'torch/jit/_script.pyi' 2025-08-14T20:48:16.7868160Z adding 'torch/jit/_serialization.py' 2025-08-14T20:48:16.7877310Z adding 'torch/jit/_shape_functions.py' 2025-08-14T20:48:16.7879050Z adding 'torch/jit/_state.py' 2025-08-14T20:48:16.7890710Z adding 'torch/jit/_trace.py' 2025-08-14T20:48:16.7896210Z adding 'torch/jit/annotations.py' 2025-08-14T20:48:16.7905750Z adding 'torch/jit/frontend.py' 2025-08-14T20:48:16.7906730Z adding 'torch/jit/generate_bytecode.py' 2025-08-14T20:48:16.7907820Z adding 'torch/jit/quantized.py' 2025-08-14T20:48:16.7910720Z adding 'torch/jit/supported_ops.py' 2025-08-14T20:48:16.7911650Z adding 'torch/jit/unsupported_tensor_ops.py' 2025-08-14T20:48:16.7912680Z adding 'torch/jit/_passes/__init__.py' 2025-08-14T20:48:16.7913760Z adding 'torch/jit/_passes/_property_propagation.py' 2025-08-14T20:48:16.7916250Z adding 'torch/jit/mobile/__init__.py' 2025-08-14T20:48:16.8187240Z adding 'torch/lib/libc10.dylib' 2025-08-14T20:48:16.8401480Z adding 'torch/lib/libomp.dylib' 2025-08-14T20:48:16.8414330Z adding 'torch/lib/libshm.dylib' 2025-08-14T20:48:16.8416840Z adding 'torch/lib/libtorch.dylib' 2025-08-14T20:48:20.4006250Z adding 'torch/lib/libtorch_cpu.dylib' 2025-08-14T20:48:20.4795740Z adding 'torch/lib/libtorch_global_deps.dylib' 2025-08-14T20:48:21.0044310Z adding 'torch/lib/libtorch_python.dylib' 2025-08-14T20:48:21.0149130Z adding 'torch/lib/libshm/alloc_info.h' 2025-08-14T20:48:21.0152180Z adding 'torch/lib/libshm/err.h' 2025-08-14T20:48:21.0153470Z adding 'torch/lib/libshm/libshm.h' 2025-08-14T20:48:21.0156400Z adding 'torch/lib/libshm/socket.h' 2025-08-14T20:48:21.0157350Z adding 'torch/lib/libshm_windows/libshm.h' 2025-08-14T20:48:21.0178870Z adding 'torch/linalg/__init__.py' 2025-08-14T20:48:21.0180660Z adding 'torch/masked/__init__.py' 2025-08-14T20:48:21.0184780Z adding 'torch/masked/_docs.py' 2025-08-14T20:48:21.0197830Z adding 'torch/masked/_ops.py' 2025-08-14T20:48:21.0199270Z adding 'torch/masked/maskedtensor/__init__.py' 2025-08-14T20:48:21.0202740Z adding 'torch/masked/maskedtensor/_ops_refs.py' 2025-08-14T20:48:21.0204270Z adding 'torch/masked/maskedtensor/binary.py' 2025-08-14T20:48:21.0207550Z adding 'torch/masked/maskedtensor/core.py' 2025-08-14T20:48:21.0208240Z adding 'torch/masked/maskedtensor/creation.py' 2025-08-14T20:48:21.0209440Z adding 'torch/masked/maskedtensor/passthrough.py' 2025-08-14T20:48:21.0211360Z adding 'torch/masked/maskedtensor/reductions.py' 2025-08-14T20:48:21.0212570Z adding 'torch/masked/maskedtensor/unary.py' 2025-08-14T20:48:21.0213910Z adding 'torch/monitor/__init__.py' 2025-08-14T20:48:21.0216380Z adding 'torch/mps/__init__.py' 2025-08-14T20:48:21.0217240Z adding 'torch/mps/event.py' 2025-08-14T20:48:21.0218570Z adding 'torch/mps/profiler.py' 2025-08-14T20:48:21.0222120Z adding 'torch/mtia/__init__.py' 2025-08-14T20:48:21.0223110Z adding 'torch/mtia/_utils.py' 2025-08-14T20:48:21.0225730Z adding 'torch/mtia/memory.py' 2025-08-14T20:48:21.0227120Z adding 'torch/multiprocessing/__init__.py' 2025-08-14T20:48:21.0228060Z adding 'torch/multiprocessing/_atfork.py' 2025-08-14T20:48:21.0229310Z adding 'torch/multiprocessing/pool.py' 2025-08-14T20:48:21.0230320Z adding 'torch/multiprocessing/queue.py' 2025-08-14T20:48:21.0235500Z adding 'torch/multiprocessing/reductions.py' 2025-08-14T20:48:21.0239270Z adding 'torch/multiprocessing/spawn.py' 2025-08-14T20:48:21.0244210Z adding 'torch/nested/__init__.py' 2025-08-14T20:48:21.0245130Z adding 'torch/nested/_internal/__init__.py' 2025-08-14T20:48:21.0246340Z adding 'torch/nested/_internal/nested_int.py' 2025-08-14T20:48:21.0251740Z adding 'torch/nested/_internal/nested_tensor.py' 2025-08-14T20:48:21.0269620Z adding 'torch/nested/_internal/ops.py' 2025-08-14T20:48:21.0277250Z adding 'torch/nested/_internal/sdpa.py' 2025-08-14T20:48:21.0279050Z adding 'torch/nn/__init__.py' 2025-08-14T20:48:21.0280100Z adding 'torch/nn/_reduction.py' 2025-08-14T20:48:21.0281230Z adding 'torch/nn/common_types.py' 2025-08-14T20:48:21.0282500Z adding 'torch/nn/cpp.py' 2025-08-14T20:48:21.0330400Z adding 'torch/nn/functional.py' 2025-08-14T20:48:21.0330770Z adding 'torch/nn/functional.pyi' 2025-08-14T20:48:21.0332400Z adding 'torch/nn/grad.py' 2025-08-14T20:48:21.0337200Z adding 'torch/nn/init.py' 2025-08-14T20:48:21.0340050Z adding 'torch/nn/parameter.py' 2025-08-14T20:48:21.0340880Z adding 'torch/nn/parameter.pyi' 2025-08-14T20:48:21.0343380Z adding 'torch/nn/attention/__init__.py' 2025-08-14T20:48:21.0344230Z adding 'torch/nn/attention/_utils.py' 2025-08-14T20:48:21.0347420Z adding 'torch/nn/attention/bias.py' 2025-08-14T20:48:21.0361510Z adding 'torch/nn/attention/flex_attention.py' 2025-08-14T20:48:21.0362670Z adding 'torch/nn/attention/experimental/__init__.py' 2025-08-14T20:48:21.0365620Z adding 'torch/nn/attention/experimental/_paged_attention.py' 2025-08-14T20:48:21.0366330Z adding 'torch/nn/backends/__init__.py' 2025-08-14T20:48:21.0367120Z adding 'torch/nn/backends/thnn.py' 2025-08-14T20:48:21.0368270Z adding 'torch/nn/intrinsic/__init__.py' 2025-08-14T20:48:21.0369650Z adding 'torch/nn/intrinsic/modules/__init__.py' 2025-08-14T20:48:21.0370620Z adding 'torch/nn/intrinsic/modules/fused.py' 2025-08-14T20:48:21.0371570Z adding 'torch/nn/intrinsic/qat/__init__.py' 2025-08-14T20:48:21.0372760Z adding 'torch/nn/intrinsic/qat/modules/__init__.py' 2025-08-14T20:48:21.0373840Z adding 'torch/nn/intrinsic/qat/modules/conv_fused.py' 2025-08-14T20:48:21.0374750Z adding 'torch/nn/intrinsic/qat/modules/linear_fused.py' 2025-08-14T20:48:21.0375590Z adding 'torch/nn/intrinsic/qat/modules/linear_relu.py' 2025-08-14T20:48:21.0376740Z adding 'torch/nn/intrinsic/quantized/__init__.py' 2025-08-14T20:48:21.0377950Z adding 'torch/nn/intrinsic/quantized/dynamic/__init__.py' 2025-08-14T20:48:21.0379080Z adding 'torch/nn/intrinsic/quantized/dynamic/modules/__init__.py' 2025-08-14T20:48:21.0379880Z adding 'torch/nn/intrinsic/quantized/dynamic/modules/linear_relu.py' 2025-08-14T20:48:21.0380890Z adding 'torch/nn/intrinsic/quantized/modules/__init__.py' 2025-08-14T20:48:21.0381800Z adding 'torch/nn/intrinsic/quantized/modules/bn_relu.py' 2025-08-14T20:48:21.0382640Z adding 'torch/nn/intrinsic/quantized/modules/conv_relu.py' 2025-08-14T20:48:21.0383400Z adding 'torch/nn/intrinsic/quantized/modules/linear_relu.py' 2025-08-14T20:48:21.0385830Z adding 'torch/nn/modules/__init__.py' 2025-08-14T20:48:21.0388650Z adding 'torch/nn/modules/_functions.py' 2025-08-14T20:48:21.0398700Z adding 'torch/nn/modules/activation.py' 2025-08-14T20:48:21.0401850Z adding 'torch/nn/modules/adaptive.py' 2025-08-14T20:48:21.0407410Z adding 'torch/nn/modules/batchnorm.py' 2025-08-14T20:48:21.0408590Z adding 'torch/nn/modules/channelshuffle.py' 2025-08-14T20:48:21.0415590Z adding 'torch/nn/modules/container.py' 2025-08-14T20:48:21.0425530Z adding 'torch/nn/modules/conv.py' 2025-08-14T20:48:21.0426930Z adding 'torch/nn/modules/distance.py' 2025-08-14T20:48:21.0429400Z adding 'torch/nn/modules/dropout.py' 2025-08-14T20:48:21.0430780Z adding 'torch/nn/modules/flatten.py' 2025-08-14T20:48:21.0433610Z adding 'torch/nn/modules/fold.py' 2025-08-14T20:48:21.0436440Z adding 'torch/nn/modules/instancenorm.py' 2025-08-14T20:48:21.0439370Z adding 'torch/nn/modules/lazy.py' 2025-08-14T20:48:21.0441820Z adding 'torch/nn/modules/linear.py' 2025-08-14T20:48:21.0458010Z adding 'torch/nn/modules/loss.py' 2025-08-14T20:48:21.0483180Z adding 'torch/nn/modules/module.py' 2025-08-14T20:48:21.0486720Z adding 'torch/nn/modules/normalization.py' 2025-08-14T20:48:21.0489990Z adding 'torch/nn/modules/padding.py' 2025-08-14T20:48:21.0491190Z adding 'torch/nn/modules/pixelshuffle.py' 2025-08-14T20:48:21.0498720Z adding 'torch/nn/modules/pooling.py' 2025-08-14T20:48:21.0510100Z adding 'torch/nn/modules/rnn.py' 2025-08-14T20:48:21.0514450Z adding 'torch/nn/modules/sparse.py' 2025-08-14T20:48:21.0522560Z adding 'torch/nn/modules/transformer.py' 2025-08-14T20:48:21.0525320Z adding 'torch/nn/modules/upsampling.py' 2025-08-14T20:48:21.0526400Z adding 'torch/nn/modules/utils.py' 2025-08-14T20:48:21.0527630Z adding 'torch/nn/parallel/__init__.py' 2025-08-14T20:48:21.0529580Z adding 'torch/nn/parallel/_functions.py' 2025-08-14T20:48:21.0532060Z adding 'torch/nn/parallel/comm.py' 2025-08-14T20:48:21.0534930Z adding 'torch/nn/parallel/data_parallel.py' 2025-08-14T20:48:21.0560460Z adding 'torch/nn/parallel/distributed.py' 2025-08-14T20:48:21.0562710Z adding 'torch/nn/parallel/parallel_apply.py' 2025-08-14T20:48:21.0564750Z adding 'torch/nn/parallel/replicate.py' 2025-08-14T20:48:21.0566190Z adding 'torch/nn/parallel/scatter_gather.py' 2025-08-14T20:48:21.0567370Z adding 'torch/nn/qat/__init__.py' 2025-08-14T20:48:21.0568530Z adding 'torch/nn/qat/dynamic/__init__.py' 2025-08-14T20:48:21.0569710Z adding 'torch/nn/qat/dynamic/modules/__init__.py' 2025-08-14T20:48:21.0570600Z adding 'torch/nn/qat/dynamic/modules/linear.py' 2025-08-14T20:48:21.0571710Z adding 'torch/nn/qat/modules/__init__.py' 2025-08-14T20:48:21.0572530Z adding 'torch/nn/qat/modules/conv.py' 2025-08-14T20:48:21.0573540Z adding 'torch/nn/qat/modules/embedding_ops.py' 2025-08-14T20:48:21.0574380Z adding 'torch/nn/qat/modules/linear.py' 2025-08-14T20:48:21.0575380Z adding 'torch/nn/quantizable/__init__.py' 2025-08-14T20:48:21.0576450Z adding 'torch/nn/quantizable/modules/__init__.py' 2025-08-14T20:48:21.0577450Z adding 'torch/nn/quantizable/modules/activation.py' 2025-08-14T20:48:21.0578280Z adding 'torch/nn/quantizable/modules/rnn.py' 2025-08-14T20:48:21.0579430Z adding 'torch/nn/quantized/__init__.py' 2025-08-14T20:48:21.0580230Z adding 'torch/nn/quantized/functional.py' 2025-08-14T20:48:21.0581400Z adding 'torch/nn/quantized/_reference/__init__.py' 2025-08-14T20:48:21.0582720Z adding 'torch/nn/quantized/_reference/modules/__init__.py' 2025-08-14T20:48:21.0583540Z adding 'torch/nn/quantized/_reference/modules/conv.py' 2025-08-14T20:48:21.0584370Z adding 'torch/nn/quantized/_reference/modules/linear.py' 2025-08-14T20:48:21.0585360Z adding 'torch/nn/quantized/_reference/modules/rnn.py' 2025-08-14T20:48:21.0586180Z adding 'torch/nn/quantized/_reference/modules/sparse.py' 2025-08-14T20:48:21.0587020Z adding 'torch/nn/quantized/_reference/modules/utils.py' 2025-08-14T20:48:21.0587950Z adding 'torch/nn/quantized/dynamic/__init__.py' 2025-08-14T20:48:21.0589300Z adding 'torch/nn/quantized/dynamic/modules/__init__.py' 2025-08-14T20:48:21.0590160Z adding 'torch/nn/quantized/dynamic/modules/conv.py' 2025-08-14T20:48:21.0590990Z adding 'torch/nn/quantized/dynamic/modules/linear.py' 2025-08-14T20:48:21.0591880Z adding 'torch/nn/quantized/dynamic/modules/rnn.py' 2025-08-14T20:48:21.0593400Z adding 'torch/nn/quantized/modules/__init__.py' 2025-08-14T20:48:21.0594250Z adding 'torch/nn/quantized/modules/activation.py' 2025-08-14T20:48:21.0595080Z adding 'torch/nn/quantized/modules/batchnorm.py' 2025-08-14T20:48:21.0595950Z adding 'torch/nn/quantized/modules/conv.py' 2025-08-14T20:48:21.0596880Z adding 'torch/nn/quantized/modules/dropout.py' 2025-08-14T20:48:21.0597750Z adding 'torch/nn/quantized/modules/embedding_ops.py' 2025-08-14T20:48:21.0598620Z adding 'torch/nn/quantized/modules/functional_modules.py' 2025-08-14T20:48:21.0599390Z adding 'torch/nn/quantized/modules/linear.py' 2025-08-14T20:48:21.0600370Z adding 'torch/nn/quantized/modules/normalization.py' 2025-08-14T20:48:21.0601180Z adding 'torch/nn/quantized/modules/rnn.py' 2025-08-14T20:48:21.0602020Z adding 'torch/nn/quantized/modules/utils.py' 2025-08-14T20:48:21.0603280Z adding 'torch/nn/utils/__init__.py' 2025-08-14T20:48:21.0604520Z adding 'torch/nn/utils/_deprecation_utils.py' 2025-08-14T20:48:21.0607490Z adding 'torch/nn/utils/_named_member_accessor.py' 2025-08-14T20:48:21.0609240Z adding 'torch/nn/utils/_per_sample_grad.py' 2025-08-14T20:48:21.0611870Z adding 'torch/nn/utils/clip_grad.py' 2025-08-14T20:48:21.0613080Z adding 'torch/nn/utils/convert_parameters.py' 2025-08-14T20:48:21.0615060Z adding 'torch/nn/utils/fusion.py' 2025-08-14T20:48:21.0615930Z adding 'torch/nn/utils/init.py' 2025-08-14T20:48:21.0617980Z adding 'torch/nn/utils/memory_format.py' 2025-08-14T20:48:21.0623870Z adding 'torch/nn/utils/parametrizations.py' 2025-08-14T20:48:21.0631680Z adding 'torch/nn/utils/parametrize.py' 2025-08-14T20:48:21.0642190Z adding 'torch/nn/utils/prune.py' 2025-08-14T20:48:21.0647370Z adding 'torch/nn/utils/rnn.py' 2025-08-14T20:48:21.0650980Z adding 'torch/nn/utils/spectral_norm.py' 2025-08-14T20:48:21.0653800Z adding 'torch/nn/utils/stateless.py' 2025-08-14T20:48:21.0655960Z adding 'torch/nn/utils/weight_norm.py' 2025-08-14T20:48:21.0656970Z adding 'torch/nn/utils/_expanded_weights/__init__.py' 2025-08-14T20:48:21.0658280Z adding 'torch/nn/utils/_expanded_weights/conv_expanded_weights.py' 2025-08-14T20:48:21.0661230Z adding 'torch/nn/utils/_expanded_weights/conv_utils.py' 2025-08-14T20:48:21.0662440Z adding 'torch/nn/utils/_expanded_weights/embedding_expanded_weights.py' 2025-08-14T20:48:21.0664580Z adding 'torch/nn/utils/_expanded_weights/expanded_weights_impl.py' 2025-08-14T20:48:21.0666670Z adding 'torch/nn/utils/_expanded_weights/expanded_weights_utils.py' 2025-08-14T20:48:21.0667770Z adding 'torch/nn/utils/_expanded_weights/group_norm_expanded_weights.py' 2025-08-14T20:48:21.0669260Z adding 'torch/nn/utils/_expanded_weights/instance_norm_expanded_weights.py' 2025-08-14T20:48:21.0670570Z adding 'torch/nn/utils/_expanded_weights/layer_norm_expanded_weights.py' 2025-08-14T20:48:21.0671750Z adding 'torch/nn/utils/_expanded_weights/linear_expanded_weights.py' 2025-08-14T20:48:21.0672660Z adding 'torch/numa/__init__.py' 2025-08-14T20:48:21.0677470Z adding 'torch/numa/binding.py' 2025-08-14T20:48:21.0681890Z adding 'torch/onnx/__init__.py' 2025-08-14T20:48:21.0682620Z adding 'torch/onnx/_constants.py' 2025-08-14T20:48:21.0683570Z adding 'torch/onnx/_experimental.py' 2025-08-14T20:48:21.0684750Z adding 'torch/onnx/_flags.py' 2025-08-14T20:48:21.0685860Z adding 'torch/onnx/_globals.py' 2025-08-14T20:48:21.0687170Z adding 'torch/onnx/_onnx_supported_ops.py' 2025-08-14T20:48:21.0690260Z adding 'torch/onnx/_type_utils.py' 2025-08-14T20:48:21.0691390Z adding 'torch/onnx/errors.py' 2025-08-14T20:48:21.0692380Z adding 'torch/onnx/operators.py' 2025-08-14T20:48:21.0709440Z adding 'torch/onnx/symbolic_helper.py' 2025-08-14T20:48:21.0715470Z adding 'torch/onnx/symbolic_opset10.py' 2025-08-14T20:48:21.0725890Z adding 'torch/onnx/symbolic_opset11.py' 2025-08-14T20:48:21.0729150Z adding 'torch/onnx/symbolic_opset12.py' 2025-08-14T20:48:21.0736240Z adding 'torch/onnx/symbolic_opset13.py' 2025-08-14T20:48:21.0739000Z adding 'torch/onnx/symbolic_opset14.py' 2025-08-14T20:48:21.0739990Z adding 'torch/onnx/symbolic_opset15.py' 2025-08-14T20:48:21.0742280Z adding 'torch/onnx/symbolic_opset16.py' 2025-08-14T20:48:21.0744570Z adding 'torch/onnx/symbolic_opset17.py' 2025-08-14T20:48:21.0746340Z adding 'torch/onnx/symbolic_opset18.py' 2025-08-14T20:48:21.0747240Z adding 'torch/onnx/symbolic_opset19.py' 2025-08-14T20:48:21.0748550Z adding 'torch/onnx/symbolic_opset20.py' 2025-08-14T20:48:21.0749640Z adding 'torch/onnx/symbolic_opset7.py' 2025-08-14T20:48:21.0752880Z adding 'torch/onnx/symbolic_opset8.py' 2025-08-14T20:48:21.0795760Z adding 'torch/onnx/symbolic_opset9.py' 2025-08-14T20:48:21.0814470Z adding 'torch/onnx/utils.py' 2025-08-14T20:48:21.0829870Z adding 'torch/onnx/verification.py' 2025-08-14T20:48:21.0831330Z adding 'torch/onnx/_internal/__init__.py' 2025-08-14T20:48:21.0833460Z adding 'torch/onnx/_internal/_exporter_legacy.py' 2025-08-14T20:48:21.0834230Z adding 'torch/onnx/_internal/_lazy_import.py' 2025-08-14T20:48:21.0837850Z adding 'torch/onnx/_internal/jit_utils.py' 2025-08-14T20:48:21.0840270Z adding 'torch/onnx/_internal/onnx_proto_utils.py' 2025-08-14T20:48:21.0843010Z adding 'torch/onnx/_internal/registration.py' 2025-08-14T20:48:21.0844110Z adding 'torch/onnx/_internal/exporter/__init__.py' 2025-08-14T20:48:21.0846940Z adding 'torch/onnx/_internal/exporter/_analysis.py' 2025-08-14T20:48:21.0853410Z adding 'torch/onnx/_internal/exporter/_building.py' 2025-08-14T20:48:21.0855830Z adding 'torch/onnx/_internal/exporter/_capture_strategies.py' 2025-08-14T20:48:21.0857940Z adding 'torch/onnx/_internal/exporter/_compat.py' 2025-08-14T20:48:21.0858710Z adding 'torch/onnx/_internal/exporter/_constants.py' 2025-08-14T20:48:21.0873770Z adding 'torch/onnx/_internal/exporter/_core.py' 2025-08-14T20:48:21.0875100Z adding 'torch/onnx/_internal/exporter/_decomp.py' 2025-08-14T20:48:21.0878760Z adding 'torch/onnx/_internal/exporter/_dispatching.py' 2025-08-14T20:48:21.0882010Z adding 'torch/onnx/_internal/exporter/_dynamic_shapes.py' 2025-08-14T20:48:21.0882590Z adding 'torch/onnx/_internal/exporter/_errors.py' 2025-08-14T20:48:21.0883530Z adding 'torch/onnx/_internal/exporter/_flags.py' 2025-08-14T20:48:21.0884800Z adding 'torch/onnx/_internal/exporter/_fx_passes.py' 2025-08-14T20:48:21.0886840Z adding 'torch/onnx/_internal/exporter/_ir_passes.py' 2025-08-14T20:48:21.0887680Z adding 'torch/onnx/_internal/exporter/_isolated.py' 2025-08-14T20:48:21.0892020Z adding 'torch/onnx/_internal/exporter/_onnx_program.py' 2025-08-14T20:48:21.0895030Z adding 'torch/onnx/_internal/exporter/_registration.py' 2025-08-14T20:48:21.0896680Z adding 'torch/onnx/_internal/exporter/_reporting.py' 2025-08-14T20:48:21.0901430Z adding 'torch/onnx/_internal/exporter/_schemas.py' 2025-08-14T20:48:21.0902470Z adding 'torch/onnx/_internal/exporter/_tensors.py' 2025-08-14T20:48:21.0904480Z adding 'torch/onnx/_internal/exporter/_testing.py' 2025-08-14T20:48:21.0905170Z adding 'torch/onnx/_internal/exporter/_type_casting.py' 2025-08-14T20:48:21.0908480Z adding 'torch/onnx/_internal/exporter/_verification.py' 2025-08-14T20:48:21.0909400Z adding 'torch/onnx/_internal/exporter/_torchlib/__init__.py' 2025-08-14T20:48:21.0910710Z adding 'torch/onnx/_internal/exporter/_torchlib/_tensor_typing.py' 2025-08-14T20:48:21.0912120Z adding 'torch/onnx/_internal/exporter/_torchlib/_torchlib_registry.py' 2025-08-14T20:48:21.0913230Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/__init__.py' 2025-08-14T20:48:21.0914290Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/core.py' 2025-08-14T20:48:21.0916430Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/hop.py' 2025-08-14T20:48:21.0919110Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/nn.py' 2025-08-14T20:48:21.0920380Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/symbolic.py' 2025-08-14T20:48:21.0921380Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/symops.py' 2025-08-14T20:48:21.0922600Z adding 'torch/onnx/_internal/fx/__init__.py' 2025-08-14T20:48:21.0925200Z adding 'torch/onnx/_internal/fx/_pass.py' 2025-08-14T20:48:21.0926640Z adding 'torch/onnx/_internal/fx/patcher.py' 2025-08-14T20:48:21.0929890Z adding 'torch/onnx/_internal/fx/serialization.py' 2025-08-14T20:48:21.0931650Z adding 'torch/onnx/_internal/fx/type_utils.py' 2025-08-14T20:48:21.0932600Z adding 'torch/onnx/_internal/fx/passes/__init__.py' 2025-08-14T20:48:21.0934180Z adding 'torch/onnx/_internal/fx/passes/_utils.py' 2025-08-14T20:48:21.0943580Z adding 'torch/onnx/_internal/fx/passes/type_promotion.py' 2025-08-14T20:48:21.0948420Z adding 'torch/onnx/ops/__init__.py' 2025-08-14T20:48:21.0949250Z adding 'torch/onnx/ops/_dtype_mappings.py' 2025-08-14T20:48:21.0952630Z adding 'torch/onnx/ops/_impl.py' 2025-08-14T20:48:21.0955890Z adding 'torch/onnx/ops/_symbolic_impl.py' 2025-08-14T20:48:21.0957720Z adding 'torch/optim/__init__.py' 2025-08-14T20:48:21.0963450Z adding 'torch/optim/_adafactor.py' 2025-08-14T20:48:21.0964750Z adding 'torch/optim/_functional.py' 2025-08-14T20:48:21.0969800Z adding 'torch/optim/adadelta.py' 2025-08-14T20:48:21.0974130Z adding 'torch/optim/adagrad.py' 2025-08-14T20:48:21.0981370Z adding 'torch/optim/adam.py' 2025-08-14T20:48:21.0985100Z adding 'torch/optim/adamax.py' 2025-08-14T20:48:21.0987280Z adding 'torch/optim/adamw.py' 2025-08-14T20:48:21.0991210Z adding 'torch/optim/asgd.py' 2025-08-14T20:48:21.0995280Z adding 'torch/optim/lbfgs.py' 2025-08-14T20:48:21.1009810Z adding 'torch/optim/lr_scheduler.py' 2025-08-14T20:48:21.1014900Z adding 'torch/optim/nadam.py' 2025-08-14T20:48:21.1025310Z adding 'torch/optim/optimizer.py' 2025-08-14T20:48:21.1030450Z adding 'torch/optim/radam.py' 2025-08-14T20:48:21.1034520Z adding 'torch/optim/rmsprop.py' 2025-08-14T20:48:21.1038180Z adding 'torch/optim/rprop.py' 2025-08-14T20:48:21.1042150Z adding 'torch/optim/sgd.py' 2025-08-14T20:48:21.1044770Z adding 'torch/optim/sparse_adam.py' 2025-08-14T20:48:21.1048870Z adding 'torch/optim/swa_utils.py' 2025-08-14T20:48:21.1050020Z adding 'torch/optim/_multi_tensor/__init__.py' 2025-08-14T20:48:21.1050950Z adding 'torch/optim/_multi_tensor/__init__.pyi' 2025-08-14T20:48:21.1052430Z adding 'torch/package/__init__.py' 2025-08-14T20:48:21.1054210Z adding 'torch/package/_digraph.py' 2025-08-14T20:48:21.1055260Z adding 'torch/package/_directory_reader.py' 2025-08-14T20:48:21.1056570Z adding 'torch/package/_importlib.py' 2025-08-14T20:48:21.1058060Z adding 'torch/package/_mangling.py' 2025-08-14T20:48:21.1059270Z adding 'torch/package/_mock.py' 2025-08-14T20:48:21.1061180Z adding 'torch/package/_package_pickler.py' 2025-08-14T20:48:21.1061850Z adding 'torch/package/_package_unpickler.py' 2025-08-14T20:48:21.1064020Z adding 'torch/package/_stdlib.py' 2025-08-14T20:48:21.1065350Z adding 'torch/package/file_structure_representation.py' 2025-08-14T20:48:21.1066730Z adding 'torch/package/find_file_dependencies.py' 2025-08-14T20:48:21.1068120Z adding 'torch/package/glob_group.py' 2025-08-14T20:48:21.1071200Z adding 'torch/package/importer.py' 2025-08-14T20:48:21.1081690Z adding 'torch/package/package_exporter.py' 2025-08-14T20:48:21.1088870Z adding 'torch/package/package_importer.py' 2025-08-14T20:48:21.1090860Z adding 'torch/package/analyze/__init__.py' 2025-08-14T20:48:21.1091570Z adding 'torch/package/analyze/find_first_use_of_broken_modules.py' 2025-08-14T20:48:21.1092370Z adding 'torch/package/analyze/is_from_package.py' 2025-08-14T20:48:21.1093630Z adding 'torch/package/analyze/trace_dependencies.py' 2025-08-14T20:48:21.1095650Z adding 'torch/profiler/__init__.py' 2025-08-14T20:48:21.1105830Z adding 'torch/profiler/_memory_profiler.py' 2025-08-14T20:48:21.1110720Z adding 'torch/profiler/_pattern_matcher.py' 2025-08-14T20:48:21.1114230Z adding 'torch/profiler/_utils.py' 2025-08-14T20:48:21.1115460Z adding 'torch/profiler/itt.py' 2025-08-14T20:48:21.1124560Z adding 'torch/profiler/profiler.py' 2025-08-14T20:48:21.1125410Z adding 'torch/profiler/python_tracer.py' 2025-08-14T20:48:21.1127280Z adding 'torch/quantization/__init__.py' 2025-08-14T20:48:21.1128320Z adding 'torch/quantization/_numeric_suite.py' 2025-08-14T20:48:21.1129270Z adding 'torch/quantization/_numeric_suite_fx.py' 2025-08-14T20:48:21.1130790Z adding 'torch/quantization/_quantized_conversions.py' 2025-08-14T20:48:21.1131720Z adding 'torch/quantization/fake_quantize.py' 2025-08-14T20:48:21.1132920Z adding 'torch/quantization/fuse_modules.py' 2025-08-14T20:48:21.1133840Z adding 'torch/quantization/fuser_method_mappings.py' 2025-08-14T20:48:21.1134720Z adding 'torch/quantization/observer.py' 2025-08-14T20:48:21.1135610Z adding 'torch/quantization/qconfig.py' 2025-08-14T20:48:21.1136790Z adding 'torch/quantization/quant_type.py' 2025-08-14T20:48:21.1137780Z adding 'torch/quantization/quantization_mappings.py' 2025-08-14T20:48:21.1138620Z adding 'torch/quantization/quantize.py' 2025-08-14T20:48:21.1139490Z adding 'torch/quantization/quantize_fx.py' 2025-08-14T20:48:21.1140650Z adding 'torch/quantization/quantize_jit.py' 2025-08-14T20:48:21.1141540Z adding 'torch/quantization/stubs.py' 2025-08-14T20:48:21.1142450Z adding 'torch/quantization/utils.py' 2025-08-14T20:48:21.1143680Z adding 'torch/quantization/fx/__init__.py' 2025-08-14T20:48:21.1145050Z adding 'torch/quantization/fx/_equalize.py' 2025-08-14T20:48:21.1145860Z adding 'torch/quantization/fx/convert.py' 2025-08-14T20:48:21.1146670Z adding 'torch/quantization/fx/fuse.py' 2025-08-14T20:48:21.1147560Z adding 'torch/quantization/fx/fusion_patterns.py' 2025-08-14T20:48:21.1148720Z adding 'torch/quantization/fx/graph_module.py' 2025-08-14T20:48:21.1149590Z adding 'torch/quantization/fx/match_utils.py' 2025-08-14T20:48:21.1150500Z adding 'torch/quantization/fx/pattern_utils.py' 2025-08-14T20:48:21.1151300Z adding 'torch/quantization/fx/prepare.py' 2025-08-14T20:48:21.1152640Z adding 'torch/quantization/fx/quantization_patterns.py' 2025-08-14T20:48:21.1153500Z adding 'torch/quantization/fx/quantization_types.py' 2025-08-14T20:48:21.1154350Z adding 'torch/quantization/fx/utils.py' 2025-08-14T20:48:21.1156420Z adding 'torch/share/cmake/ATen/ATenConfig.cmake' 2025-08-14T20:48:21.1158540Z adding 'torch/share/cmake/Caffe2/Caffe2Config.cmake' 2025-08-14T20:48:21.1159340Z adding 'torch/share/cmake/Caffe2/Caffe2Targets-release.cmake' 2025-08-14T20:48:21.1160870Z adding 'torch/share/cmake/Caffe2/Caffe2Targets.cmake' 2025-08-14T20:48:21.1168540Z adding 'torch/share/cmake/Caffe2/FindCUDAToolkit.cmake' 2025-08-14T20:48:21.1169930Z adding 'torch/share/cmake/Caffe2/FindCUDSS.cmake' 2025-08-14T20:48:21.1171150Z adding 'torch/share/cmake/Caffe2/FindCUSPARSELT.cmake' 2025-08-14T20:48:21.1172700Z adding 'torch/share/cmake/Caffe2/FindSYCLToolkit.cmake' 2025-08-14T20:48:21.1174290Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/FindCUDA.cmake' 2025-08-14T20:48:21.1175580Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/FindCUDNN.cmake' 2025-08-14T20:48:21.1177020Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/CMakeInitializeConfigs.cmake' 2025-08-14T20:48:21.1196070Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA.cmake' 2025-08-14T20:48:21.1202960Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindPackageMessage.cmake' 2025-08-14T20:48:21.1203480Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/make2cmake.cmake' 2025-08-14T20:48:21.1203910Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/parse_cubin.cmake' 2025-08-14T20:48:21.1204380Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/run_nvcc.cmake' 2025-08-14T20:48:21.1207190Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/select_compute_arch.cmake' 2025-08-14T20:48:21.1209710Z adding 'torch/share/cmake/Caffe2/public/LoadHIP.cmake' 2025-08-14T20:48:21.1212660Z adding 'torch/share/cmake/Caffe2/public/cuda.cmake' 2025-08-14T20:48:21.1214020Z adding 'torch/share/cmake/Caffe2/public/gflags.cmake' 2025-08-14T20:48:21.1215260Z adding 'torch/share/cmake/Caffe2/public/glog.cmake' 2025-08-14T20:48:21.1216310Z adding 'torch/share/cmake/Caffe2/public/mkl.cmake' 2025-08-14T20:48:21.1217190Z adding 'torch/share/cmake/Caffe2/public/mkldnn.cmake' 2025-08-14T20:48:21.1219220Z adding 'torch/share/cmake/Caffe2/public/protobuf.cmake' 2025-08-14T20:48:21.1223480Z adding 'torch/share/cmake/Caffe2/public/utils.cmake' 2025-08-14T20:48:21.1224340Z adding 'torch/share/cmake/Caffe2/public/xpu.cmake' 2025-08-14T20:48:21.1226480Z adding 'torch/share/cmake/Torch/TorchConfig.cmake' 2025-08-14T20:48:21.1227490Z adding 'torch/share/cmake/Torch/TorchConfigVersion.cmake' 2025-08-14T20:48:21.1228530Z adding 'torch/signal/__init__.py' 2025-08-14T20:48:21.1229640Z adding 'torch/signal/windows/__init__.py' 2025-08-14T20:48:21.1233500Z adding 'torch/signal/windows/windows.py' 2025-08-14T20:48:21.1239270Z adding 'torch/sparse/__init__.py' 2025-08-14T20:48:21.1242710Z adding 'torch/sparse/_semi_structured_conversions.py' 2025-08-14T20:48:21.1244220Z adding 'torch/sparse/_semi_structured_ops.py' 2025-08-14T20:48:21.1259960Z adding 'torch/sparse/_triton_ops.py' 2025-08-14T20:48:21.1339450Z adding 'torch/sparse/_triton_ops_meta.py' 2025-08-14T20:48:21.1346870Z adding 'torch/sparse/semi_structured.py' 2025-08-14T20:48:21.1352080Z adding 'torch/special/__init__.py' 2025-08-14T20:48:21.1353070Z adding 'torch/testing/__init__.py' 2025-08-14T20:48:21.1366110Z adding 'torch/testing/_comparison.py' 2025-08-14T20:48:21.1369400Z adding 'torch/testing/_creation.py' 2025-08-14T20:48:21.1370780Z adding 'torch/testing/_utils.py' 2025-08-14T20:48:21.1372270Z adding 'torch/testing/_internal/__init__.py' 2025-08-14T20:48:21.1376520Z adding 'torch/testing/_internal/autocast_test_lists.py' 2025-08-14T20:48:21.1379400Z adding 'torch/testing/_internal/autograd_function_db.py' 2025-08-14T20:48:21.1381750Z adding 'torch/testing/_internal/check_kernel_launches.py' 2025-08-14T20:48:21.1384680Z adding 'torch/testing/_internal/common_cuda.py' 2025-08-14T20:48:21.1400740Z adding 'torch/testing/_internal/common_device_type.py' 2025-08-14T20:48:21.1402180Z adding 'torch/testing/_internal/common_dist_composable.py' 2025-08-14T20:48:21.1417270Z adding 'torch/testing/_internal/common_distributed.py' 2025-08-14T20:48:21.1419100Z adding 'torch/testing/_internal/common_dtype.py' 2025-08-14T20:48:21.1430330Z adding 'torch/testing/_internal/common_fsdp.py' 2025-08-14T20:48:21.1433750Z adding 'torch/testing/_internal/common_jit.py' 2025-08-14T20:48:21.1588090Z adding 'torch/testing/_internal/common_methods_invocations.py' 2025-08-14T20:48:21.1594490Z adding 'torch/testing/_internal/common_mkldnn.py' 2025-08-14T20:48:21.1615930Z adding 'torch/testing/_internal/common_modules.py' 2025-08-14T20:48:21.1621120Z adding 'torch/testing/_internal/common_mps.py' 2025-08-14T20:48:21.1643200Z adding 'torch/testing/_internal/common_nn.py' 2025-08-14T20:48:21.1654030Z adding 'torch/testing/_internal/common_optimizers.py' 2025-08-14T20:48:21.1656760Z adding 'torch/testing/_internal/common_pruning.py' 2025-08-14T20:48:21.1676030Z adding 'torch/testing/_internal/common_quantization.py' 2025-08-14T20:48:21.1680740Z adding 'torch/testing/_internal/common_quantized.py' 2025-08-14T20:48:21.1683610Z adding 'torch/testing/_internal/common_subclass.py' 2025-08-14T20:48:21.1739030Z adding 'torch/testing/_internal/common_utils.py' 2025-08-14T20:48:21.1745870Z adding 'torch/testing/_internal/composite_compliance.py' 2025-08-14T20:48:21.1749440Z adding 'torch/testing/_internal/custom_op_db.py' 2025-08-14T20:48:21.1750860Z adding 'torch/testing/_internal/custom_tensor.py' 2025-08-14T20:48:21.1753370Z adding 'torch/testing/_internal/dist_utils.py' 2025-08-14T20:48:21.1755390Z adding 'torch/testing/_internal/dynamo_test_failures.py' 2025-08-14T20:48:21.1756130Z adding 'torch/testing/_internal/fake_config_module.py' 2025-08-14T20:48:21.1757070Z adding 'torch/testing/_internal/fake_config_module2.py' 2025-08-14T20:48:21.1757950Z adding 'torch/testing/_internal/fake_config_module3.py' 2025-08-14T20:48:21.1760740Z adding 'torch/testing/_internal/hop_db.py' 2025-08-14T20:48:21.1764050Z adding 'torch/testing/_internal/hypothesis_utils.py' 2025-08-14T20:48:21.1766750Z adding 'torch/testing/_internal/inductor_utils.py' 2025-08-14T20:48:21.1772940Z adding 'torch/testing/_internal/jit_metaprogramming_utils.py' 2025-08-14T20:48:21.1780080Z adding 'torch/testing/_internal/jit_utils.py' 2025-08-14T20:48:21.1782190Z adding 'torch/testing/_internal/logging_tensor.py' 2025-08-14T20:48:21.1784580Z adding 'torch/testing/_internal/logging_utils.py' 2025-08-14T20:48:21.1785340Z adding 'torch/testing/_internal/quantization_torch_package_models.py' 2025-08-14T20:48:21.1786240Z adding 'torch/testing/_internal/static_module.py' 2025-08-14T20:48:21.1787410Z adding 'torch/testing/_internal/subclasses.py' 2025-08-14T20:48:21.1789740Z adding 'torch/testing/_internal/torchbind_impls.py' 2025-08-14T20:48:21.1793960Z adding 'torch/testing/_internal/triton_utils.py' 2025-08-14T20:48:21.1795170Z adding 'torch/testing/_internal/two_tensor.py' 2025-08-14T20:48:21.1796490Z adding 'torch/testing/_internal/codegen/__init__.py' 2025-08-14T20:48:21.1797930Z adding 'torch/testing/_internal/data/__init__.py' 2025-08-14T20:48:21.1798750Z adding 'torch/testing/_internal/data/network1.py' 2025-08-14T20:48:21.1799610Z adding 'torch/testing/_internal/data/network2.py' 2025-08-14T20:48:21.1800710Z adding 'torch/testing/_internal/distributed/__init__.py' 2025-08-14T20:48:21.1803120Z adding 'torch/testing/_internal/distributed/checkpoint_utils.py' 2025-08-14T20:48:21.1804770Z adding 'torch/testing/_internal/distributed/common_state_dict.py' 2025-08-14T20:48:21.1809920Z adding 'torch/testing/_internal/distributed/ddp_under_dist_autograd_test.py' 2025-08-14T20:48:21.1874050Z adding 'torch/testing/_internal/distributed/distributed_test.py' 2025-08-14T20:48:21.1877620Z adding 'torch/testing/_internal/distributed/distributed_utils.py' 2025-08-14T20:48:21.1878650Z adding 'torch/testing/_internal/distributed/fake_pg.py' 2025-08-14T20:48:21.1883180Z adding 'torch/testing/_internal/distributed/multi_threaded_pg.py' 2025-08-14T20:48:21.1885310Z adding 'torch/testing/_internal/distributed/rpc_utils.py' 2025-08-14T20:48:21.1886390Z adding 'torch/testing/_internal/distributed/_shard/__init__.py' 2025-08-14T20:48:21.1887470Z adding 'torch/testing/_internal/distributed/_shard/test_common.py' 2025-08-14T20:48:21.1889240Z adding 'torch/testing/_internal/distributed/_shard/sharded_tensor/__init__.py' 2025-08-14T20:48:21.1890690Z adding 'torch/testing/_internal/distributed/_shard/sharded_tensor/_test_ops_common.py' 2025-08-14T20:48:21.1891740Z adding 'torch/testing/_internal/distributed/_shard/sharded_tensor/_test_st_common.py' 2025-08-14T20:48:21.1892710Z adding 'torch/testing/_internal/distributed/_tensor/__init__.py' 2025-08-14T20:48:21.1898070Z adding 'torch/testing/_internal/distributed/_tensor/common_dtensor.py' 2025-08-14T20:48:21.1898850Z adding 'torch/testing/_internal/distributed/nn/__init__.py' 2025-08-14T20:48:21.1899860Z adding 'torch/testing/_internal/distributed/nn/api/__init__.py' 2025-08-14T20:48:21.1904000Z adding 'torch/testing/_internal/distributed/nn/api/remote_module_test.py' 2025-08-14T20:48:21.1904950Z adding 'torch/testing/_internal/distributed/rpc/__init__.py' 2025-08-14T20:48:21.1922300Z adding 'torch/testing/_internal/distributed/rpc/dist_autograd_test.py' 2025-08-14T20:48:21.1924890Z adding 'torch/testing/_internal/distributed/rpc/dist_optimizer_test.py' 2025-08-14T20:48:21.1927660Z adding 'torch/testing/_internal/distributed/rpc/faulty_agent_rpc_test.py' 2025-08-14T20:48:21.1928710Z adding 'torch/testing/_internal/distributed/rpc/faulty_rpc_agent_test_fixture.py' 2025-08-14T20:48:21.1929850Z adding 'torch/testing/_internal/distributed/rpc/rpc_agent_test_fixture.py' 2025-08-14T20:48:21.1966770Z adding 'torch/testing/_internal/distributed/rpc/rpc_test.py' 2025-08-14T20:48:21.1969110Z adding 'torch/testing/_internal/distributed/rpc/tensorpipe_rpc_agent_test_fixture.py' 2025-08-14T20:48:21.1969980Z adding 'torch/testing/_internal/distributed/rpc/examples/__init__.py' 2025-08-14T20:48:21.1971600Z adding 'torch/testing/_internal/distributed/rpc/examples/parameter_server_test.py' 2025-08-14T20:48:21.1974480Z adding 'torch/testing/_internal/distributed/rpc/examples/reinforcement_learning_rpc_test.py' 2025-08-14T20:48:21.1975170Z adding 'torch/testing/_internal/distributed/rpc/jit/__init__.py' 2025-08-14T20:48:21.1976610Z adding 'torch/testing/_internal/distributed/rpc/jit/dist_autograd_test.py' 2025-08-14T20:48:21.1984890Z adding 'torch/testing/_internal/distributed/rpc/jit/rpc_test.py' 2025-08-14T20:48:21.1987100Z adding 'torch/testing/_internal/distributed/rpc/jit/rpc_test_faulty.py' 2025-08-14T20:48:21.1987930Z adding 'torch/testing/_internal/generated/__init__.py' 2025-08-14T20:48:21.2020700Z adding 'torch/testing/_internal/generated/annotated_fn_args.py' 2025-08-14T20:48:21.2024270Z adding 'torch/testing/_internal/opinfo/__init__.py' 2025-08-14T20:48:21.2050500Z adding 'torch/testing/_internal/opinfo/core.py' 2025-08-14T20:48:21.2052910Z adding 'torch/testing/_internal/opinfo/refs.py' 2025-08-14T20:48:21.2055610Z adding 'torch/testing/_internal/opinfo/utils.py' 2025-08-14T20:48:21.2056680Z adding 'torch/testing/_internal/opinfo/definitions/__init__.py' 2025-08-14T20:48:21.2062170Z adding 'torch/testing/_internal/opinfo/definitions/_masked.py' 2025-08-14T20:48:21.2065380Z adding 'torch/testing/_internal/opinfo/definitions/fft.py' 2025-08-14T20:48:21.2077660Z adding 'torch/testing/_internal/opinfo/definitions/linalg.py' 2025-08-14T20:48:21.2088420Z adding 'torch/testing/_internal/opinfo/definitions/nested.py' 2025-08-14T20:48:21.2091190Z adding 'torch/testing/_internal/opinfo/definitions/signal.py' 2025-08-14T20:48:21.2096330Z adding 'torch/testing/_internal/opinfo/definitions/sparse.py' 2025-08-14T20:48:21.2099640Z adding 'torch/testing/_internal/opinfo/definitions/special.py' 2025-08-14T20:48:21.2100650Z adding 'torch/testing/_internal/optests/__init__.py' 2025-08-14T20:48:21.2102950Z adding 'torch/testing/_internal/optests/aot_autograd.py' 2025-08-14T20:48:21.2104740Z adding 'torch/testing/_internal/optests/autograd_registration.py' 2025-08-14T20:48:21.2105440Z adding 'torch/testing/_internal/optests/fake_tensor.py' 2025-08-14T20:48:21.2112570Z adding 'torch/testing/_internal/optests/generate_tests.py' 2025-08-14T20:48:21.2114080Z adding 'torch/testing/_internal/optests/make_fx.py' 2025-08-14T20:48:21.2115050Z adding 'torch/testing/_internal/test_module/__init__.py' 2025-08-14T20:48:21.2115890Z adding 'torch/testing/_internal/test_module/future_div.py' 2025-08-14T20:48:21.2116690Z adding 'torch/testing/_internal/test_module/no_future_div.py' 2025-08-14T20:48:21.2119190Z adding 'torch/utils/__init__.py' 2025-08-14T20:48:21.2120340Z adding 'torch/utils/_appending_byte_serializer.py' 2025-08-14T20:48:21.2122340Z adding 'torch/utils/_backport_slots.py' 2025-08-14T20:48:21.2128630Z adding 'torch/utils/_config_module.py' 2025-08-14T20:48:21.2129590Z adding 'torch/utils/_config_typing.pyi' 2025-08-14T20:48:21.2132400Z adding 'torch/utils/_content_store.py' 2025-08-14T20:48:21.2134160Z adding 'torch/utils/_contextlib.py' 2025-08-14T20:48:21.2135050Z adding 'torch/utils/_cpp_embed_headers.py' 2025-08-14T20:48:21.2136250Z adding 'torch/utils/_cpp_extension_versioner.py' 2025-08-14T20:48:21.2142870Z adding 'torch/utils/_cxx_pytree.py' 2025-08-14T20:48:21.2144130Z adding 'torch/utils/_device.py' 2025-08-14T20:48:21.2145150Z adding 'torch/utils/_dtype_abbrs.py' 2025-08-14T20:48:21.2146050Z adding 'torch/utils/_exposed_in.py' 2025-08-14T20:48:21.2147080Z adding 'torch/utils/_filelock.py' 2025-08-14T20:48:21.2148270Z adding 'torch/utils/_foreach_utils.py' 2025-08-14T20:48:21.2149520Z adding 'torch/utils/_functools.py' 2025-08-14T20:48:21.2151710Z adding 'torch/utils/_get_clean_triton.py' 2025-08-14T20:48:21.2152780Z adding 'torch/utils/_helion.py' 2025-08-14T20:48:21.2153780Z adding 'torch/utils/_import_utils.py' 2025-08-14T20:48:21.2154780Z adding 'torch/utils/_mode_utils.py' 2025-08-14T20:48:21.2156790Z adding 'torch/utils/_ordered_set.py' 2025-08-14T20:48:21.2163410Z adding 'torch/utils/_python_dispatch.py' 2025-08-14T20:48:21.2177590Z adding 'torch/utils/_pytree.py' 2025-08-14T20:48:21.2178850Z adding 'torch/utils/_stats.py' 2025-08-14T20:48:21.2179760Z adding 'torch/utils/_thunk.py' 2025-08-14T20:48:21.2182730Z adding 'torch/utils/_traceback.py' 2025-08-14T20:48:21.2183980Z adding 'torch/utils/_triton.py' 2025-08-14T20:48:21.2184860Z adding 'torch/utils/_typing_utils.py' 2025-08-14T20:48:21.2186110Z adding 'torch/utils/_zip.py' 2025-08-14T20:48:21.2190480Z adding 'torch/utils/backend_registration.py' 2025-08-14T20:48:21.2195120Z adding 'torch/utils/bundled_inputs.py' 2025-08-14T20:48:21.2211690Z adding 'torch/utils/checkpoint.py' 2025-08-14T20:48:21.2218370Z adding 'torch/utils/collect_env.py' 2025-08-14T20:48:21.2219240Z adding 'torch/utils/cpp_backtrace.py' 2025-08-14T20:48:21.2248300Z adding 'torch/utils/cpp_extension.py' 2025-08-14T20:48:21.2249640Z adding 'torch/utils/deterministic.py' 2025-08-14T20:48:21.2252130Z adding 'torch/utils/dlpack.py' 2025-08-14T20:48:21.2253040Z adding 'torch/utils/file_baton.py' 2025-08-14T20:48:21.2259860Z adding 'torch/utils/flop_counter.py' 2025-08-14T20:48:21.2262460Z adding 'torch/utils/hooks.py' 2025-08-14T20:48:21.2264440Z adding 'torch/utils/mkldnn.py' 2025-08-14T20:48:21.2265730Z adding 'torch/utils/mobile_optimizer.py' 2025-08-14T20:48:21.2266590Z adding 'torch/utils/model_zoo.py' 2025-08-14T20:48:21.2268550Z adding 'torch/utils/module_tracker.py' 2025-08-14T20:48:21.2270350Z adding 'torch/utils/show_pickle.py' 2025-08-14T20:48:21.2272460Z adding 'torch/utils/throughput_benchmark.py' 2025-08-14T20:48:21.2275190Z adding 'torch/utils/weak.py' 2025-08-14T20:48:21.2276370Z adding 'torch/utils/_strobelight/__init__.py' 2025-08-14T20:48:21.2279210Z adding 'torch/utils/_strobelight/cli_function_profiler.py' 2025-08-14T20:48:21.2280050Z adding 'torch/utils/_sympy/__init__.py' 2025-08-14T20:48:21.2291240Z adding 'torch/utils/_sympy/functions.py' 2025-08-14T20:48:21.2293630Z adding 'torch/utils/_sympy/interp.py' 2025-08-14T20:48:21.2295730Z adding 'torch/utils/_sympy/numbers.py' 2025-08-14T20:48:21.2299110Z adding 'torch/utils/_sympy/printers.py' 2025-08-14T20:48:21.2301610Z adding 'torch/utils/_sympy/reference.py' 2025-08-14T20:48:21.2302600Z adding 'torch/utils/_sympy/singleton_int.py' 2025-08-14T20:48:21.2304700Z adding 'torch/utils/_sympy/solve.py' 2025-08-14T20:48:21.2306090Z adding 'torch/utils/_sympy/symbol.py' 2025-08-14T20:48:21.2313500Z adding 'torch/utils/_sympy/value_ranges.py' 2025-08-14T20:48:21.2314680Z adding 'torch/utils/backcompat/__init__.py' 2025-08-14T20:48:21.2315930Z adding 'torch/utils/benchmark/__init__.py' 2025-08-14T20:48:21.2317050Z adding 'torch/utils/benchmark/examples/__init__.py' 2025-08-14T20:48:21.2318370Z adding 'torch/utils/benchmark/examples/compare.py' 2025-08-14T20:48:21.2319580Z adding 'torch/utils/benchmark/examples/fuzzer.py' 2025-08-14T20:48:21.2321640Z adding 'torch/utils/benchmark/examples/op_benchmark.py' 2025-08-14T20:48:21.2322180Z adding 'torch/utils/benchmark/examples/simple_timeit.py' 2025-08-14T20:48:21.2323790Z adding 'torch/utils/benchmark/examples/spectral_ops_fuzz_test.py' 2025-08-14T20:48:21.2324750Z adding 'torch/utils/benchmark/op_fuzzers/__init__.py' 2025-08-14T20:48:21.2326150Z adding 'torch/utils/benchmark/op_fuzzers/binary.py' 2025-08-14T20:48:21.2327470Z adding 'torch/utils/benchmark/op_fuzzers/sparse_binary.py' 2025-08-14T20:48:21.2328650Z adding 'torch/utils/benchmark/op_fuzzers/sparse_unary.py' 2025-08-14T20:48:21.2329930Z adding 'torch/utils/benchmark/op_fuzzers/spectral.py' 2025-08-14T20:48:21.2331170Z adding 'torch/utils/benchmark/op_fuzzers/unary.py' 2025-08-14T20:48:21.2332270Z adding 'torch/utils/benchmark/utils/__init__.py' 2025-08-14T20:48:21.2333160Z adding 'torch/utils/benchmark/utils/_stubs.py' 2025-08-14T20:48:21.2336650Z adding 'torch/utils/benchmark/utils/common.py' 2025-08-14T20:48:21.2339930Z adding 'torch/utils/benchmark/utils/compare.py' 2025-08-14T20:48:21.2342030Z adding 'torch/utils/benchmark/utils/compile.py' 2025-08-14T20:48:21.2343550Z adding 'torch/utils/benchmark/utils/cpp_jit.py' 2025-08-14T20:48:21.2347950Z adding 'torch/utils/benchmark/utils/fuzzer.py' 2025-08-14T20:48:21.2350100Z adding 'torch/utils/benchmark/utils/sparse_fuzzer.py' 2025-08-14T20:48:21.2350670Z adding 'torch/utils/benchmark/utils/timeit_template.cpp' 2025-08-14T20:48:21.2355650Z adding 'torch/utils/benchmark/utils/timer.py' 2025-08-14T20:48:21.2356570Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/__init__.py' 2025-08-14T20:48:21.2358800Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/callgrind.h' 2025-08-14T20:48:21.2359570Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/compat_bindings.cpp' 2025-08-14T20:48:21.2360660Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/timer_callgrind_template.cpp' 2025-08-14T20:48:21.2368750Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/timer_interface.py' 2025-08-14T20:48:21.2403570Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/valgrind.h' 2025-08-14T20:48:21.2406370Z adding 'torch/utils/bottleneck/__init__.py' 2025-08-14T20:48:21.2408510Z adding 'torch/utils/bottleneck/__main__.py' 2025-08-14T20:48:21.2409650Z adding 'torch/utils/data/__init__.py' 2025-08-14T20:48:21.2410540Z adding 'torch/utils/data/backward_compatibility.py' 2025-08-14T20:48:21.2429410Z adding 'torch/utils/data/dataloader.py' 2025-08-14T20:48:21.2434060Z adding 'torch/utils/data/dataset.py' 2025-08-14T20:48:21.2435860Z adding 'torch/utils/data/distributed.py' 2025-08-14T20:48:21.2437610Z adding 'torch/utils/data/graph.py' 2025-08-14T20:48:21.2439760Z adding 'torch/utils/data/graph_settings.py' 2025-08-14T20:48:21.2442680Z adding 'torch/utils/data/sampler.py' 2025-08-14T20:48:21.2443870Z adding 'torch/utils/data/_utils/__init__.py' 2025-08-14T20:48:21.2447320Z adding 'torch/utils/data/_utils/collate.py' 2025-08-14T20:48:21.2448310Z adding 'torch/utils/data/_utils/fetch.py' 2025-08-14T20:48:21.2449740Z adding 'torch/utils/data/_utils/pin_memory.py' 2025-08-14T20:48:21.2451100Z adding 'torch/utils/data/_utils/signal_handling.py' 2025-08-14T20:48:21.2454650Z adding 'torch/utils/data/_utils/worker.py' 2025-08-14T20:48:21.2455680Z adding 'torch/utils/data/datapipes/__init__.py' 2025-08-14T20:48:21.2457850Z adding 'torch/utils/data/datapipes/_decorator.py' 2025-08-14T20:48:21.2460660Z adding 'torch/utils/data/datapipes/_hook_iterator.py' 2025-08-14T20:48:21.2464300Z adding 'torch/utils/data/datapipes/_typing.py' 2025-08-14T20:48:21.2467770Z adding 'torch/utils/data/datapipes/datapipe.py' 2025-08-14T20:48:21.2473680Z adding 'torch/utils/data/datapipes/datapipe.pyi' 2025-08-14T20:48:21.2476590Z adding 'torch/utils/data/datapipes/gen_pyi.py' 2025-08-14T20:48:21.2477760Z adding 'torch/utils/data/datapipes/dataframe/__init__.py' 2025-08-14T20:48:21.2478990Z adding 'torch/utils/data/datapipes/dataframe/dataframe_wrapper.py' 2025-08-14T20:48:21.2482010Z adding 'torch/utils/data/datapipes/dataframe/dataframes.py' 2025-08-14T20:48:21.2483070Z adding 'torch/utils/data/datapipes/dataframe/datapipes.py' 2025-08-14T20:48:21.2484120Z adding 'torch/utils/data/datapipes/dataframe/structures.py' 2025-08-14T20:48:21.2485480Z adding 'torch/utils/data/datapipes/iter/__init__.py' 2025-08-14T20:48:21.2488130Z adding 'torch/utils/data/datapipes/iter/callable.py' 2025-08-14T20:48:21.2489920Z adding 'torch/utils/data/datapipes/iter/combinatorics.py' 2025-08-14T20:48:21.2494920Z adding 'torch/utils/data/datapipes/iter/combining.py' 2025-08-14T20:48:21.2496060Z adding 'torch/utils/data/datapipes/iter/filelister.py' 2025-08-14T20:48:21.2497440Z adding 'torch/utils/data/datapipes/iter/fileopener.py' 2025-08-14T20:48:21.2500370Z adding 'torch/utils/data/datapipes/iter/grouping.py' 2025-08-14T20:48:21.2501610Z adding 'torch/utils/data/datapipes/iter/routeddecoder.py' 2025-08-14T20:48:21.2502960Z adding 'torch/utils/data/datapipes/iter/selecting.py' 2025-08-14T20:48:21.2504280Z adding 'torch/utils/data/datapipes/iter/sharding.py' 2025-08-14T20:48:21.2505350Z adding 'torch/utils/data/datapipes/iter/streamreader.py' 2025-08-14T20:48:21.2506610Z adding 'torch/utils/data/datapipes/iter/utils.py' 2025-08-14T20:48:21.2507780Z adding 'torch/utils/data/datapipes/map/__init__.py' 2025-08-14T20:48:21.2508860Z adding 'torch/utils/data/datapipes/map/callable.py' 2025-08-14T20:48:21.2510370Z adding 'torch/utils/data/datapipes/map/combinatorics.py' 2025-08-14T20:48:21.2511790Z adding 'torch/utils/data/datapipes/map/combining.py' 2025-08-14T20:48:21.2513000Z adding 'torch/utils/data/datapipes/map/grouping.py' 2025-08-14T20:48:21.2514110Z adding 'torch/utils/data/datapipes/map/utils.py' 2025-08-14T20:48:21.2515100Z adding 'torch/utils/data/datapipes/utils/__init__.py' 2025-08-14T20:48:21.2518590Z adding 'torch/utils/data/datapipes/utils/common.py' 2025-08-14T20:48:21.2521360Z adding 'torch/utils/data/datapipes/utils/decoder.py' 2025-08-14T20:48:21.2522470Z adding 'torch/utils/data/datapipes/utils/snapshot.py' 2025-08-14T20:48:21.2523470Z adding 'torch/utils/hipify/__init__.py' 2025-08-14T20:48:21.2524650Z adding 'torch/utils/hipify/constants.py' 2025-08-14T20:48:21.2564920Z adding 'torch/utils/hipify/cuda_to_hip_mappings.py' 2025-08-14T20:48:21.2577050Z adding 'torch/utils/hipify/hipify_python.py' 2025-08-14T20:48:21.2578080Z adding 'torch/utils/hipify/version.py' 2025-08-14T20:48:21.2579150Z adding 'torch/utils/jit/__init__.py' 2025-08-14T20:48:21.2581100Z adding 'torch/utils/jit/log_extract.py' 2025-08-14T20:48:21.2585310Z adding 'torch/utils/model_dump/__init__.py' 2025-08-14T20:48:21.2585990Z adding 'torch/utils/model_dump/__main__.py' 2025-08-14T20:48:21.2590080Z adding 'torch/utils/model_dump/code.js' 2025-08-14T20:48:21.2590950Z adding 'torch/utils/model_dump/htm.mjs' 2025-08-14T20:48:21.2594120Z adding 'torch/utils/model_dump/preact.mjs' 2025-08-14T20:48:21.2594810Z adding 'torch/utils/model_dump/skeleton.html' 2025-08-14T20:48:21.2595820Z adding 'torch/utils/serialization/__init__.py' 2025-08-14T20:48:21.2596840Z adding 'torch/utils/serialization/config.py' 2025-08-14T20:48:21.2598270Z adding 'torch/utils/tensorboard/__init__.py' 2025-08-14T20:48:21.2599200Z adding 'torch/utils/tensorboard/_convert_np.py' 2025-08-14T20:48:21.2600630Z adding 'torch/utils/tensorboard/_embedding.py' 2025-08-14T20:48:21.2601740Z adding 'torch/utils/tensorboard/_onnx_graph.py' 2025-08-14T20:48:21.2606650Z adding 'torch/utils/tensorboard/_proto_graph.py' 2025-08-14T20:48:21.2606890Z adding 'torch/utils/tensorboard/_pytorch_graph.py' 2025-08-14T20:48:21.2608040Z adding 'torch/utils/tensorboard/_utils.py' 2025-08-14T20:48:21.2615530Z adding 'torch/utils/tensorboard/summary.py' 2025-08-14T20:48:21.2623810Z adding 'torch/utils/tensorboard/writer.py' 2025-08-14T20:48:21.2624670Z adding 'torch/utils/viz/__init__.py' 2025-08-14T20:48:21.2628880Z adding 'torch/utils/viz/_cycles.py' 2025-08-14T20:48:21.2633070Z adding 'torch/xpu/__init__.py' 2025-08-14T20:48:21.2633890Z adding 'torch/xpu/_gpu_trace.py' 2025-08-14T20:48:21.2634990Z adding 'torch/xpu/_utils.py' 2025-08-14T20:48:21.2637150Z adding 'torch/xpu/memory.py' 2025-08-14T20:48:21.2638280Z adding 'torch/xpu/random.py' 2025-08-14T20:48:21.2640210Z adding 'torch/xpu/streams.py' 2025-08-14T20:48:21.2642980Z adding 'torchgen/__init__.py' 2025-08-14T20:48:21.2644340Z adding 'torchgen/code_template.py' 2025-08-14T20:48:21.2645670Z adding 'torchgen/context.py' 2025-08-14T20:48:21.2668490Z adding 'torchgen/gen.py' 2025-08-14T20:48:21.2674320Z adding 'torchgen/gen_aoti_c_shim.py' 2025-08-14T20:48:21.2679150Z adding 'torchgen/gen_backend_stubs.py' 2025-08-14T20:48:21.2686900Z adding 'torchgen/gen_functionalization_type.py' 2025-08-14T20:48:21.2691880Z adding 'torchgen/gen_lazy_tensor.py' 2025-08-14T20:48:21.2693170Z adding 'torchgen/gen_schema_utils.py' 2025-08-14T20:48:21.2695560Z adding 'torchgen/gen_vmap_plumbing.py' 2025-08-14T20:48:21.2696440Z adding 'torchgen/local.py' 2025-08-14T20:48:21.2722840Z adding 'torchgen/model.py' 2025-08-14T20:48:21.2730180Z adding 'torchgen/native_function_generation.py' 2025-08-14T20:48:21.2734610Z adding 'torchgen/utils.py' 2025-08-14T20:48:21.2735490Z adding 'torchgen/yaml_utils.py' 2025-08-14T20:48:21.2736840Z adding 'torchgen/aoti/__init__.py' 2025-08-14T20:48:21.2738660Z adding 'torchgen/aoti/fallback_ops.py' 2025-08-14T20:48:21.2739660Z adding 'torchgen/api/__init__.py' 2025-08-14T20:48:21.2748360Z adding 'torchgen/api/autograd.py' 2025-08-14T20:48:21.2752300Z adding 'torchgen/api/cpp.py' 2025-08-14T20:48:21.2753490Z adding 'torchgen/api/dispatcher.py' 2025-08-14T20:48:21.2755830Z adding 'torchgen/api/functionalization.py' 2025-08-14T20:48:21.2759900Z adding 'torchgen/api/lazy.py' 2025-08-14T20:48:21.2760640Z adding 'torchgen/api/meta.py' 2025-08-14T20:48:21.2762430Z adding 'torchgen/api/native.py' 2025-08-14T20:48:21.2775130Z adding 'torchgen/api/python.py' 2025-08-14T20:48:21.2777260Z adding 'torchgen/api/structured.py' 2025-08-14T20:48:21.2781060Z adding 'torchgen/api/translate.py' 2025-08-14T20:48:21.2782870Z adding 'torchgen/api/ufunc.py' 2025-08-14T20:48:21.2785340Z adding 'torchgen/api/unboxing.py' 2025-08-14T20:48:21.2786230Z adding 'torchgen/api/types/__init__.py' 2025-08-14T20:48:21.2789770Z adding 'torchgen/api/types/signatures.py' 2025-08-14T20:48:21.2791300Z adding 'torchgen/api/types/types.py' 2025-08-14T20:48:21.2793710Z adding 'torchgen/api/types/types_base.py' 2025-08-14T20:48:21.2794710Z adding 'torchgen/dest/__init__.py' 2025-08-14T20:48:21.2800800Z adding 'torchgen/dest/lazy_ir.py' 2025-08-14T20:48:21.2801760Z adding 'torchgen/dest/lazy_ts_lowering.py' 2025-08-14T20:48:21.2803290Z adding 'torchgen/dest/native_functions.py' 2025-08-14T20:48:21.2811560Z adding 'torchgen/dest/register_dispatch_key.py' 2025-08-14T20:48:21.2815450Z adding 'torchgen/dest/ufunc.py' 2025-08-14T20:48:21.2816360Z adding 'torchgen/operator_versions/__init__.py' 2025-08-14T20:48:21.2819280Z adding 'torchgen/operator_versions/gen_mobile_upgraders.py' 2025-08-14T20:48:21.2819940Z adding 'torchgen/operator_versions/gen_mobile_upgraders_constant.py' 2025-08-14T20:48:21.2894250Z adding 'torchgen/packaged/ATen/native/native_functions.yaml' 2025-08-14T20:48:21.2898690Z adding 'torchgen/packaged/ATen/native/tags.yaml' 2025-08-14T20:48:21.2900190Z adding 'torchgen/packaged/ATen/templates/ATenOpList.cpp' 2025-08-14T20:48:21.2901430Z adding 'torchgen/packaged/ATen/templates/CompositeViewCopyKernels.cpp' 2025-08-14T20:48:21.2902530Z adding 'torchgen/packaged/ATen/templates/DispatchKeyFunction.h' 2025-08-14T20:48:21.2903700Z adding 'torchgen/packaged/ATen/templates/DispatchKeyFunctions.h' 2025-08-14T20:48:21.2904730Z adding 'torchgen/packaged/ATen/templates/DispatchKeyFunctions_inl.h' 2025-08-14T20:48:21.2905560Z adding 'torchgen/packaged/ATen/templates/DispatchKeyNativeFunctions.cpp' 2025-08-14T20:48:21.2906550Z adding 'torchgen/packaged/ATen/templates/DispatchKeyNativeFunctions.h' 2025-08-14T20:48:21.2907380Z adding 'torchgen/packaged/ATen/templates/Function.h' 2025-08-14T20:48:21.2908430Z adding 'torchgen/packaged/ATen/templates/FunctionalInverses.h' 2025-08-14T20:48:21.2909790Z adding 'torchgen/packaged/ATen/templates/Functions.cpp' 2025-08-14T20:48:21.2911410Z adding 'torchgen/packaged/ATen/templates/Functions.h' 2025-08-14T20:48:21.2912320Z adding 'torchgen/packaged/ATen/templates/LazyIr.h' 2025-08-14T20:48:21.2913130Z adding 'torchgen/packaged/ATen/templates/LazyNonNativeIr.h' 2025-08-14T20:48:21.2914060Z adding 'torchgen/packaged/ATen/templates/MethodOperators.h' 2025-08-14T20:48:21.2915010Z adding 'torchgen/packaged/ATen/templates/NativeFunction.h' 2025-08-14T20:48:21.2915950Z adding 'torchgen/packaged/ATen/templates/NativeFunctions.h' 2025-08-14T20:48:21.2916810Z adding 'torchgen/packaged/ATen/templates/NativeMetaFunction.h' 2025-08-14T20:48:21.2917630Z adding 'torchgen/packaged/ATen/templates/NativeMetaFunctions.h' 2025-08-14T20:48:21.2918580Z adding 'torchgen/packaged/ATen/templates/Operator.h' 2025-08-14T20:48:21.2919480Z adding 'torchgen/packaged/ATen/templates/Operators.cpp' 2025-08-14T20:48:21.2920750Z adding 'torchgen/packaged/ATen/templates/Operators.h' 2025-08-14T20:48:21.2921600Z adding 'torchgen/packaged/ATen/templates/RedispatchFunctions.cpp' 2025-08-14T20:48:21.2922630Z adding 'torchgen/packaged/ATen/templates/RedispatchFunctions.h' 2025-08-14T20:48:21.2923580Z adding 'torchgen/packaged/ATen/templates/RegisterBackendSelect.cpp' 2025-08-14T20:48:21.2924560Z adding 'torchgen/packaged/ATen/templates/RegisterCodegenUnboxedKernels.cpp' 2025-08-14T20:48:21.2925400Z adding 'torchgen/packaged/ATen/templates/RegisterDispatchDefinitions.ini' 2025-08-14T20:48:21.2926500Z adding 'torchgen/packaged/ATen/templates/RegisterDispatchKey.cpp' 2025-08-14T20:48:21.2927880Z adding 'torchgen/packaged/ATen/templates/RegisterFunctionalization.cpp' 2025-08-14T20:48:21.2928680Z adding 'torchgen/packaged/ATen/templates/RegisterSchema.cpp' 2025-08-14T20:48:21.2929880Z adding 'torchgen/packaged/ATen/templates/RegistrationDeclarations.h' 2025-08-14T20:48:21.2936920Z adding 'torchgen/packaged/ATen/templates/TensorBody.h' 2025-08-14T20:48:21.2937970Z adding 'torchgen/packaged/ATen/templates/TensorMethods.cpp' 2025-08-14T20:48:21.2938800Z adding 'torchgen/packaged/ATen/templates/UfuncCPU.cpp' 2025-08-14T20:48:21.2939640Z adding 'torchgen/packaged/ATen/templates/UfuncCPUKernel.cpp' 2025-08-14T20:48:21.2940600Z adding 'torchgen/packaged/ATen/templates/UfuncCUDA.cu' 2025-08-14T20:48:21.2941560Z adding 'torchgen/packaged/ATen/templates/UnboxingFunctions.cpp' 2025-08-14T20:48:21.2942520Z adding 'torchgen/packaged/ATen/templates/UnboxingFunctions.h' 2025-08-14T20:48:21.2943450Z adding 'torchgen/packaged/ATen/templates/aten_interned_strings.h' 2025-08-14T20:48:21.2944370Z adding 'torchgen/packaged/ATen/templates/enum_tag.h' 2025-08-14T20:48:21.2945570Z adding 'torchgen/packaged/autograd/BUILD.bazel' 2025-08-14T20:48:21.2946380Z adding 'torchgen/packaged/autograd/README.md' 2025-08-14T20:48:21.2947130Z adding 'torchgen/packaged/autograd/__init__.py' 2025-08-14T20:48:21.2948100Z adding 'torchgen/packaged/autograd/build.bzl' 2025-08-14T20:48:21.2949040Z adding 'torchgen/packaged/autograd/context.py' 2025-08-14T20:48:21.2950320Z adding 'torchgen/packaged/autograd/deprecated.yaml' 2025-08-14T20:48:21.2980050Z adding 'torchgen/packaged/autograd/derivatives.yaml' 2025-08-14T20:48:21.2982770Z adding 'torchgen/packaged/autograd/gen_annotated_fn_args.py' 2025-08-14T20:48:21.2984000Z adding 'torchgen/packaged/autograd/gen_autograd.py' 2025-08-14T20:48:21.2990640Z adding 'torchgen/packaged/autograd/gen_autograd_functions.py' 2025-08-14T20:48:21.2995690Z adding 'torchgen/packaged/autograd/gen_inplace_or_view_type.py' 2025-08-14T20:48:21.3005400Z adding 'torchgen/packaged/autograd/gen_python_functions.py' 2025-08-14T20:48:21.3009660Z adding 'torchgen/packaged/autograd/gen_trace_type.py' 2025-08-14T20:48:21.3011180Z adding 'torchgen/packaged/autograd/gen_variable_factories.py' 2025-08-14T20:48:21.3027720Z adding 'torchgen/packaged/autograd/gen_variable_type.py' 2025-08-14T20:48:21.3031150Z adding 'torchgen/packaged/autograd/gen_view_funcs.py' 2025-08-14T20:48:21.3039510Z adding 'torchgen/packaged/autograd/load_derivatives.py' 2025-08-14T20:48:21.3041070Z adding 'torchgen/packaged/autograd/templates/ADInplaceOrViewType.cpp' 2025-08-14T20:48:21.3042130Z adding 'torchgen/packaged/autograd/templates/Functions.cpp' 2025-08-14T20:48:21.3043360Z adding 'torchgen/packaged/autograd/templates/Functions.h' 2025-08-14T20:48:21.3044320Z adding 'torchgen/packaged/autograd/templates/TraceType.cpp' 2025-08-14T20:48:21.3045480Z adding 'torchgen/packaged/autograd/templates/VariableType.cpp' 2025-08-14T20:48:21.3046490Z adding 'torchgen/packaged/autograd/templates/VariableType.h' 2025-08-14T20:48:21.3047470Z adding 'torchgen/packaged/autograd/templates/ViewFuncs.cpp' 2025-08-14T20:48:21.3048350Z adding 'torchgen/packaged/autograd/templates/ViewFuncs.h' 2025-08-14T20:48:21.3049190Z adding 'torchgen/packaged/autograd/templates/annotated_fn_args.py.in' 2025-08-14T20:48:21.3050130Z adding 'torchgen/packaged/autograd/templates/python_enum_tag.cpp' 2025-08-14T20:48:21.3051320Z adding 'torchgen/packaged/autograd/templates/python_fft_functions.cpp' 2025-08-14T20:48:21.3052300Z adding 'torchgen/packaged/autograd/templates/python_functions.cpp' 2025-08-14T20:48:21.3053140Z adding 'torchgen/packaged/autograd/templates/python_functions.h' 2025-08-14T20:48:21.3054190Z adding 'torchgen/packaged/autograd/templates/python_linalg_functions.cpp' 2025-08-14T20:48:21.3055400Z adding 'torchgen/packaged/autograd/templates/python_nested_functions.cpp' 2025-08-14T20:48:21.3056750Z adding 'torchgen/packaged/autograd/templates/python_nn_functions.cpp' 2025-08-14T20:48:21.3057730Z adding 'torchgen/packaged/autograd/templates/python_return_types.cpp' 2025-08-14T20:48:21.3058520Z adding 'torchgen/packaged/autograd/templates/python_return_types.h' 2025-08-14T20:48:21.3059690Z adding 'torchgen/packaged/autograd/templates/python_sparse_functions.cpp' 2025-08-14T20:48:21.3060780Z adding 'torchgen/packaged/autograd/templates/python_special_functions.cpp' 2025-08-14T20:48:21.3061940Z adding 'torchgen/packaged/autograd/templates/python_torch_functions.cpp' 2025-08-14T20:48:21.3069270Z adding 'torchgen/packaged/autograd/templates/python_variable_methods.cpp' 2025-08-14T20:48:21.3070860Z adding 'torchgen/packaged/autograd/templates/variable_factories.h' 2025-08-14T20:48:21.3071830Z adding 'torchgen/selective_build/__init__.py' 2025-08-14T20:48:21.3074000Z adding 'torchgen/selective_build/operator.py' 2025-08-14T20:48:21.3076890Z adding 'torchgen/selective_build/selector.py' 2025-08-14T20:48:21.3077670Z adding 'torchgen/static_runtime/__init__.py' 2025-08-14T20:48:21.3080030Z adding 'torchgen/static_runtime/config.py' 2025-08-14T20:48:21.3081850Z adding 'torchgen/static_runtime/gen_static_runtime_ops.py' 2025-08-14T20:48:21.3086840Z adding 'torchgen/static_runtime/generator.py' 2025-08-14T20:48:21.3160730Z adding 'torch-2.9.0a0+git1fc683c.dist-info/LICENSE' 2025-08-14T20:48:21.3169540Z adding 'torch-2.9.0a0+git1fc683c.dist-info/METADATA' 2025-08-14T20:48:21.3174950Z adding 'torch-2.9.0a0+git1fc683c.dist-info/NOTICE' 2025-08-14T20:48:21.3175460Z adding 'torch-2.9.0a0+git1fc683c.dist-info/WHEEL' 2025-08-14T20:48:21.3176110Z adding 'torch-2.9.0a0+git1fc683c.dist-info/entry_points.txt' 2025-08-14T20:48:21.3176620Z adding 'torch-2.9.0a0+git1fc683c.dist-info/top_level.txt' 2025-08-14T20:48:21.3564060Z adding 'torch-2.9.0a0+git1fc683c.dist-info/RECORD' 2025-08-14T20:48:21.3934400Z removing build/bdist.macosx-14.0-arm64/wheel 2025-08-14T20:48:21.9075910Z + which sccache 2025-08-14T20:48:21.9112110Z + print_sccache_stats 2025-08-14T20:48:21.9112280Z + echo 'PyTorch Build Statistics' 2025-08-14T20:48:21.9112470Z + sccache --show-stats 2025-08-14T20:48:21.9112750Z PyTorch Build Statistics 2025-08-14T20:48:21.9142940Z Compile requests 5279 2025-08-14T20:48:21.9143220Z Compile requests executed 4904 2025-08-14T20:48:21.9143420Z Cache hits 4881 2025-08-14T20:48:21.9143600Z Cache hits (C/C++) 4881 2025-08-14T20:48:21.9143780Z Cache misses 1 2025-08-14T20:48:21.9143960Z Cache misses (C/C++) 1 2025-08-14T20:48:21.9144130Z Cache timeouts 0 2025-08-14T20:48:21.9144310Z Cache read errors 0 2025-08-14T20:48:21.9144480Z Forced recaches 0 2025-08-14T20:48:21.9144670Z Cache write errors 0 2025-08-14T20:48:21.9144860Z Compilation failures 2 2025-08-14T20:48:21.9145040Z Cache errors 20 2025-08-14T20:48:21.9145220Z Cache errors (C/C++) 20 2025-08-14T20:48:21.9145410Z Non-cacheable compilations 0 2025-08-14T20:48:21.9145760Z Non-cacheable calls 283 2025-08-14T20:48:21.9145950Z Non-compilation calls 92 2025-08-14T20:48:21.9146150Z Unsupported compiler calls 0 2025-08-14T20:48:21.9146350Z Average cache write 0.033 s 2025-08-14T20:48:21.9146700Z Average compiler 0.787 s 2025-08-14T20:48:21.9146920Z Average cache read hit 0.000 s 2025-08-14T20:48:21.9147110Z Failed distributed compilations 0 2025-08-14T20:48:21.9147290Z + [[ -n 48125835262 ]] 2025-08-14T20:48:21.9147390Z 2025-08-14T20:48:21.9147450Z Non-cacheable reasons: 2025-08-14T20:48:21.9147610Z unknown source language 271 2025-08-14T20:48:21.9147790Z @ 6 2025-08-14T20:48:21.9147970Z multiple input files 6 2025-08-14T20:48:21.9148090Z 2025-08-14T20:48:21.9148260Z Cache location s3, name: ossci-compiler-cache-circleci-v2, prefix: /trunk/ 2025-08-14T20:48:21.9148570Z Version (client) 0.4.1 2025-08-14T20:48:21.9148780Z + sccache --show-stats --stats-format json 2025-08-14T20:48:21.9148960Z + jq .stats 2025-08-14T20:48:21.9550300Z + python tools/stats/export_test_times.py 2025-08-14T20:48:22.1903280Z Exporting test times from test-infra 2025-08-14T20:48:22.1903950Z 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-08-14T20:48:22.1904960Z 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-08-14T20:48:22.1963460Z + assert_git_not_dirty 2025-08-14T20:48:22.1963650Z + [[ macos-py3-arm64 != *rocm* ]] 2025-08-14T20:48:22.1963830Z + [[ macos-py3-arm64 != *xla* ]] 2025-08-14T20:48:22.1969890Z ++ git status --porcelain 2025-08-14T20:48:22.1970570Z ++ grep -v '?? third_party' 2025-08-14T20:48:23.3533600Z ++ true 2025-08-14T20:48:23.3534630Z + git_status= 2025-08-14T20:48:23.3534770Z + [[ -n '' ]] 2025-08-14T20:48:23.3535610Z + rm -rfv /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.ay8w3oV9ND 2025-08-14T20:48:23.3579490Z /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.ay8w3oV9ND/clang 2025-08-14T20:48:23.3579900Z /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.ay8w3oV9ND/clang++ 2025-08-14T20:48:23.3580530Z /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.ay8w3oV9ND 2025-08-14T20:48:23.3611000Z ##[group]Run zip -1 -r artifacts.zip dist/ build/.ninja_log build/compile_commands.json .additional_ci_files 2025-08-14T20:48:23.3611480Z zip -1 -r artifacts.zip dist/ build/.ninja_log build/compile_commands.json .additional_ci_files 2025-08-14T20:48:23.4234230Z shell: /bin/bash -e {0} 2025-08-14T20:48:23.4234370Z env: 2025-08-14T20:48:23.4234580Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-08-14T20:48:23.4234760Z SCCACHE_USE_GHA: false 2025-08-14T20:48:23.4234980Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1755204260 2025-08-14T20:48:23.4235250Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-08-14T20:48:23.4235460Z SCCACHE_S3_KEY_PREFIX: trunk 2025-08-14T20:48:23.4235600Z ##[endgroup] 2025-08-14T20:48:23.4588740Z adding: dist/ (stored 0%) 2025-08-14T20:48:24.8736510Z adding: dist/torch-2.9.0a0+git1fc683c-cp312-cp312-macosx_11_0_arm64.whl (deflated 4%) 2025-08-14T20:48:24.8860050Z adding: build/.ninja_log (deflated 90%) 2025-08-14T20:48:24.9329950Z adding: build/compile_commands.json (deflated 97%) 2025-08-14T20:48:24.9330210Z adding: .additional_ci_files/ (stored 0%) 2025-08-14T20:48:24.9430300Z adding: .additional_ci_files/test-times.json (deflated 66%) 2025-08-14T20:48:24.9830150Z adding: .additional_ci_files/test-class-times.json (deflated 64%) 2025-08-14T20:48:24.9996130Z ##[group]Run actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 2025-08-14T20:48:24.9996430Z with: 2025-08-14T20:48:24.9996690Z name: macos-py3-arm64 2025-08-14T20:48:24.9996850Z retention-days: 14 2025-08-14T20:48:24.9997020Z if-no-files-found: error 2025-08-14T20:48:24.9997190Z path: artifacts.zip 2025-08-14T20:48:24.9997340Z compression-level: 6 2025-08-14T20:48:24.9997480Z overwrite: false 2025-08-14T20:48:24.9997630Z include-hidden-files: false 2025-08-14T20:48:24.9997820Z env: 2025-08-14T20:48:24.9997950Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-08-14T20:48:24.9998130Z SCCACHE_USE_GHA: false 2025-08-14T20:48:24.9998360Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1755204260 2025-08-14T20:48:24.9998650Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-08-14T20:48:24.9998870Z SCCACHE_S3_KEY_PREFIX: trunk 2025-08-14T20:48:24.9999030Z ##[endgroup] 2025-08-14T20:48:25.1603280Z With the provided path, there will be 1 file uploaded 2025-08-14T20:48:25.1605920Z Artifact name is valid! 2025-08-14T20:48:25.1606200Z Root directory input is valid! 2025-08-14T20:48:25.2522800Z Beginning upload of artifact content to blob storage 2025-08-14T20:48:25.6700480Z Uploaded bytes 8388608 2025-08-14T20:48:25.8578100Z Uploaded bytes 16777216 2025-08-14T20:48:25.8760160Z Uploaded bytes 25165824 2025-08-14T20:48:26.0338910Z Uploaded bytes 33554432 2025-08-14T20:48:26.2366410Z Uploaded bytes 41943040 2025-08-14T20:48:26.3647660Z Uploaded bytes 50331648 2025-08-14T20:48:26.5255580Z Uploaded bytes 58720256 2025-08-14T20:48:26.6531140Z Uploaded bytes 67108864 2025-08-14T20:48:26.7089060Z Uploaded bytes 69071971 2025-08-14T20:48:26.7264770Z Finished uploading artifact content to blob storage! 2025-08-14T20:48:26.7267830Z SHA256 digest of uploaded artifact zip is 09411047103e6b5a6ce66fc52146e8e060713dd096871da5df1043cd0c53ae43 2025-08-14T20:48:26.7269560Z Finalizing artifact upload 2025-08-14T20:48:26.8077540Z Artifact macos-py3-arm64.zip successfully finalized. Artifact ID 3769154312 2025-08-14T20:48:26.8081110Z Artifact macos-py3-arm64 has been successfully uploaded! Final size is 69071971 bytes. Artifact ID is 3769154312 2025-08-14T20:48:26.8111110Z Artifact download URL: https://github.com/pytorch/pytorch/actions/runs/16976255045/artifacts/3769154312 2025-08-14T20:48:26.8341080Z ##[group]Run actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 2025-08-14T20:48:26.8341780Z with: 2025-08-14T20:48:26.8342290Z name: sccache-stats-macos-py3-arm64-runattempt1-48125835262 2025-08-14T20:48:26.8342900Z retention-days: 14 2025-08-14T20:48:26.8343290Z if-no-files-found: warn 2025-08-14T20:48:26.8343720Z path: sccache-stats-*.json 2025-08-14T20:48:26.8344110Z compression-level: 6 2025-08-14T20:48:26.8344530Z overwrite: false 2025-08-14T20:48:26.8344910Z include-hidden-files: false 2025-08-14T20:48:26.8345320Z env: 2025-08-14T20:48:26.8345670Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-08-14T20:48:26.8346160Z SCCACHE_USE_GHA: false 2025-08-14T20:48:26.8346710Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1755204260 2025-08-14T20:48:26.8347700Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-08-14T20:48:26.8348310Z SCCACHE_S3_KEY_PREFIX: trunk 2025-08-14T20:48:26.8348710Z ##[endgroup] 2025-08-14T20:48:26.9969760Z With the provided path, there will be 1 file uploaded 2025-08-14T20:48:26.9971680Z Artifact name is valid! 2025-08-14T20:48:26.9972130Z Root directory input is valid! 2025-08-14T20:48:27.0567220Z Beginning upload of artifact content to blob storage 2025-08-14T20:48:27.0915730Z Uploaded bytes 525 2025-08-14T20:48:27.1062220Z Finished uploading artifact content to blob storage! 2025-08-14T20:48:27.1063720Z SHA256 digest of uploaded artifact zip is 334a5611a2bd800278a8eaa481842d8e126fb2c8a2d5db6be9d5726f1ebb7283 2025-08-14T20:48:27.1064640Z Finalizing artifact upload 2025-08-14T20:48:27.1979790Z Artifact sccache-stats-macos-py3-arm64-runattempt1-48125835262.zip successfully finalized. Artifact ID 3769154362 2025-08-14T20:48:27.1981510Z Artifact sccache-stats-macos-py3-arm64-runattempt1-48125835262 has been successfully uploaded! Final size is 525 bytes. Artifact ID is 3769154362 2025-08-14T20:48:27.2000660Z Artifact download URL: https://github.com/pytorch/pytorch/actions/runs/16976255045/artifacts/3769154362 2025-08-14T20:48:27.2173010Z ##[group]Run pytorch/test-infra/.github/actions/check-disk-space@main 2025-08-14T20:48:27.2173520Z with: 2025-08-14T20:48:27.2173780Z minimum-available-space-in-gb: 6 2025-08-14T20:48:27.2174210Z env: 2025-08-14T20:48:27.2174450Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-08-14T20:48:27.2174800Z SCCACHE_USE_GHA: false 2025-08-14T20:48:27.2175240Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1755204260 2025-08-14T20:48:27.2175770Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-08-14T20:48:27.2176220Z SCCACHE_S3_KEY_PREFIX: trunk 2025-08-14T20:48:27.2176530Z ##[endgroup] 2025-08-14T20:48:27.2194190Z ##[group]Run echo "Print the available disk space for manual inspection" 2025-08-14T20:48:27.2194810Z echo "Print the available disk space for manual inspection" 2025-08-14T20:48:27.2195230Z df -h 2025-08-14T20:48:27.2195450Z  2025-08-14T20:48:27.2195700Z function check_disk_space() { 2025-08-14T20:48:27.2196040Z  set +e 2025-08-14T20:48:27.2196260Z  2025-08-14T20:48:27.2196570Z  # Set the minimum requirement space to 6GB 2025-08-14T20:48:27.2197080Z  MINIMUM_AVAILABLE_SPACE_IN_KB=$(($MINIMUM_AVAILABLE_SPACE_IN_GB * 1024 * 1024)) 2025-08-14T20:48:27.2197550Z  2025-08-14T20:48:27.2197840Z  # Use KB to avoid floating point warning like 3.1GB 2025-08-14T20:48:27.2198300Z  df -k | tr -s ' ' | cut -d' ' -f 4,9 | while read -r LINE; 2025-08-14T20:48:27.2198650Z  do 2025-08-14T20:48:27.2198910Z  AVAIL=$(echo $LINE | cut -f1 -d' ') 2025-08-14T20:48:27.2199290Z  MOUNT=$(echo $LINE | cut -f2 -d' ') 2025-08-14T20:48:27.2199600Z  2025-08-14T20:48:27.2199840Z  if [ "${MOUNT}" = "/" ]; then 2025-08-14T20:48:27.2200250Z  if [ "${AVAIL}" -lt "${MINIMUM_AVAILABLE_SPACE_IN_KB}" ]; then 2025-08-14T20:48:27.2201150Z  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-08-14T20:48:27.2201880Z  else 2025-08-14T20:48:27.2202320Z  echo "Success: There is ${AVAIL}KB free space left in ${MOUNT} for ${RUNNER_OS}, continue" 2025-08-14T20:48:27.2202820Z  fi 2025-08-14T20:48:27.2203030Z  fi 2025-08-14T20:48:27.2203280Z  done 2025-08-14T20:48:27.2203480Z  2025-08-14T20:48:27.2203690Z  set -e 2025-08-14T20:48:27.2203900Z } 2025-08-14T20:48:27.2204090Z  2025-08-14T20:48:27.2204320Z RESULT=$(check_disk_space) 2025-08-14T20:48:27.2204660Z echo "${RESULT}" 2025-08-14T20:48:27.2205020Z  2025-08-14T20:48:27.2205340Z if [[ "${RESULT}" == *Failure* && "${RUNNER_OS}" == "macOS" ]]; then 2025-08-14T20:48:27.2206160Z  # 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-08-14T20:48:27.2206930Z  # https://github.com/pytorch/pytorch/issues/85440 2025-08-14T20:48:27.2207490Z  sudo rm "/System/Library/Caches/com.apple.coresymbolicationd/data" || true 2025-08-14T20:48:27.2208290Z  # Stop the daemon and launchctl will automatically start it again, thus accomplish a restart and free up the above file 2025-08-14T20:48:27.2209020Z  sudo launchctl stop com.apple.coresymbolicationd || true 2025-08-14T20:48:27.2209430Z  2025-08-14T20:48:27.2209670Z  # Clean up crash reports on the runner 2025-08-14T20:48:27.2210180Z  sudo rm -rf "/System/Volumes/Data/Library/Logs/CrashReporter" || true 2025-08-14T20:48:27.2210640Z  2025-08-14T20:48:27.2210910Z  # Also try to clean up torch.hub caching directory 2025-08-14T20:48:27.2211440Z  rm -rf "${HOME}/.cache/torch/hub" || true 2025-08-14T20:48:27.2211770Z  2025-08-14T20:48:27.2212320Z  # Purge conda 2025-08-14T20:48:27.2212610Z  conda clean -p -t -y || true 2025-08-14T20:48:27.2212960Z  # and pip cache 2025-08-14T20:48:27.2213230Z  pip cache purge || true 2025-08-14T20:48:27.2213510Z  2025-08-14T20:48:27.2213870Z  echo "Re-run disk space check for ${RUNNER_OS} after cleaning up" 2025-08-14T20:48:27.2214290Z  # Re-run the check 2025-08-14T20:48:27.2214630Z  RESULT=$(check_disk_space) 2025-08-14T20:48:27.2214960Z  echo "${RESULT}" 2025-08-14T20:48:27.2215210Z fi 2025-08-14T20:48:27.2215400Z  2025-08-14T20:48:27.2215650Z if [[ "${RESULT}" == *Failure* ]]; then 2025-08-14T20:48:27.2215970Z  df -h 2025-08-14T20:48:27.2216190Z  2025-08-14T20:48:27.2216880Z  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-08-14T20:48:27.2217640Z  exit 1 2025-08-14T20:48:27.2217860Z fi 2025-08-14T20:48:27.2242900Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-08-14T20:48:27.2243280Z env: 2025-08-14T20:48:27.2243510Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-08-14T20:48:27.2243810Z SCCACHE_USE_GHA: false 2025-08-14T20:48:27.2244230Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1755204260 2025-08-14T20:48:27.2244710Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-08-14T20:48:27.2245090Z SCCACHE_S3_KEY_PREFIX: trunk 2025-08-14T20:48:27.2245390Z MINIMUM_AVAILABLE_SPACE_IN_GB: 6 2025-08-14T20:48:27.2245670Z ##[endgroup] 2025-08-14T20:48:27.2555200Z Print the available disk space for manual inspection 2025-08-14T20:48:27.2575340Z Filesystem Size Used Avail Capacity iused ifree %iused Mounted on 2025-08-14T20:48:27.2575770Z /dev/disk5s2s1 256Gi 9.5Gi 198Gi 5% 404k 2.1G 0% / 2025-08-14T20:48:27.2576140Z devfs 217Ki 217Ki 0Bi 100% 752 0 100% /dev 2025-08-14T20:48:27.2576490Z /dev/disk5s5 256Gi 1.0Gi 198Gi 1% 1 2.1G 0% /System/Volumes/VM 2025-08-14T20:48:27.2576870Z /dev/disk5s3 256Gi 5.7Gi 198Gi 3% 1.0k 2.1G 0% /System/Volumes/Preboot 2025-08-14T20:48:27.2577270Z /dev/disk1s2 500Mi 6.0Mi 387Mi 2% 1 4.0M 0% /System/Volumes/xarts 2025-08-14T20:48:27.2577670Z /dev/disk1s1 500Mi 53Mi 387Mi 13% 61 4.0M 0% /System/Volumes/iSCPreboot 2025-08-14T20:48:27.2578110Z /dev/disk1s3 500Mi 856Ki 387Mi 1% 51 4.0M 0% /System/Volumes/Hardware 2025-08-14T20:48:27.2578480Z /dev/disk5s1 256Gi 41Gi 198Gi 18% 1.6M 2.1G 0% /System/Volumes/Data 2025-08-14T20:48:27.2578960Z map auto_home 0Bi 0Bi 0Bi 100% 0 0 - /System/Volumes/Data/home 2025-08-14T20:48:27.2579350Z /dev/disk3s4 228Gi 120Ki 210Gi 1% 18 2.2G 0% /private/tmp/tmp-mount-hQiI52 2025-08-14T20:48:27.2946930Z Success: There is 207384976KB free space left in / for macOS, continue 2025-08-14T20:48:27.2999360Z Post job cleanup. 2025-08-14T20:48:27.3437950Z Removing virtual environment at /Users/ec2-user/runner/_work/_temp/venv-3.12-1755204260 2025-08-14T20:48:30.1313230Z Post job cleanup. 2025-08-14T20:48:30.1365330Z Post job cleanup. 2025-08-14T20:48:30.2173760Z [command]/usr/bin/git version 2025-08-14T20:48:30.2242420Z git version 2.39.3 (Apple Git-146) 2025-08-14T20:48:30.2261750Z Copying '/Users/ec2-user/.gitconfig' to '/Users/ec2-user/runner/_work/_temp/1af1340d-c219-40a0-a256-140dffc0526c/.gitconfig' 2025-08-14T20:48:30.2267610Z Temporarily overriding HOME='/Users/ec2-user/runner/_work/_temp/1af1340d-c219-40a0-a256-140dffc0526c' before making global git config changes 2025-08-14T20:48:30.2277500Z Adding repository directory to the temporary git global config as a safe directory 2025-08-14T20:48:30.2278340Z [command]/usr/bin/git config --global --add safe.directory /Users/ec2-user/runner/_work/pytorch/pytorch 2025-08-14T20:48:30.2341720Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2025-08-14T20:48:30.2404460Z [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-08-14T20:48:30.3013990Z Entering 'android/libs/fbjni' 2025-08-14T20:48:30.3127500Z Entering 'third_party/FP16' 2025-08-14T20:48:30.3236440Z Entering 'third_party/FXdiv' 2025-08-14T20:48:30.3345330Z Entering 'third_party/NNPACK' 2025-08-14T20:48:30.3460480Z Entering 'third_party/NVTX' 2025-08-14T20:48:30.3562610Z Entering 'third_party/VulkanMemoryAllocator' 2025-08-14T20:48:30.3660700Z Entering 'third_party/XNNPACK' 2025-08-14T20:48:30.3766270Z Entering 'third_party/aiter' 2025-08-14T20:48:30.3866870Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-08-14T20:48:30.3968510Z Entering 'third_party/benchmark' 2025-08-14T20:48:30.4085020Z Entering 'third_party/composable_kernel' 2025-08-14T20:48:30.4188150Z Entering 'third_party/cpp-httplib' 2025-08-14T20:48:30.4287510Z Entering 'third_party/cpuinfo' 2025-08-14T20:48:30.4416580Z Entering 'third_party/cudnn_frontend' 2025-08-14T20:48:30.4518300Z Entering 'third_party/cutlass' 2025-08-14T20:48:30.4622980Z Entering 'third_party/fbgemm' 2025-08-14T20:48:30.4804160Z Entering 'third_party/fbgemm/external/asmjit' 2025-08-14T20:48:30.4940300Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-08-14T20:48:30.5159080Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-08-14T20:48:30.5318670Z Entering 'third_party/fbgemm/external/cutlass' 2025-08-14T20:48:30.5551630Z Entering 'third_party/fbgemm/external/googletest' 2025-08-14T20:48:30.5677510Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-08-14T20:48:30.5804980Z Entering 'third_party/fbgemm/external/json' 2025-08-14T20:48:30.5959700Z Entering 'third_party/flash-attention' 2025-08-14T20:48:30.6058590Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-08-14T20:48:30.6161040Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-08-14T20:48:30.6265790Z Entering 'third_party/flatbuffers' 2025-08-14T20:48:30.6369200Z Entering 'third_party/fmt' 2025-08-14T20:48:30.6478420Z Entering 'third_party/gemmlowp/gemmlowp' 2025-08-14T20:48:30.6586140Z Entering 'third_party/gloo' 2025-08-14T20:48:30.6702050Z Entering 'third_party/googletest' 2025-08-14T20:48:30.6818950Z Entering 'third_party/ideep' 2025-08-14T20:48:30.6956650Z Entering 'third_party/ideep/mkl-dnn' 2025-08-14T20:48:30.7164750Z Entering 'third_party/ittapi' 2025-08-14T20:48:30.7270050Z Entering 'third_party/kineto' 2025-08-14T20:48:30.7370060Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-08-14T20:48:30.7468930Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-08-14T20:48:30.7570220Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-08-14T20:48:30.7670000Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-08-14T20:48:30.7768340Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-08-14T20:48:30.7863790Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-08-14T20:48:30.7964900Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-08-14T20:48:30.8063340Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-08-14T20:48:30.8164260Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-08-14T20:48:30.8265610Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-08-14T20:48:30.8373590Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-08-14T20:48:30.8473790Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-08-14T20:48:30.8573520Z Entering 'third_party/kleidiai' 2025-08-14T20:48:30.8675830Z Entering 'third_party/mimalloc' 2025-08-14T20:48:30.8775370Z Entering 'third_party/nlohmann' 2025-08-14T20:48:30.8874980Z Entering 'third_party/onnx' 2025-08-14T20:48:30.9004790Z Entering 'third_party/onnx/third_party/pybind11' 2025-08-14T20:48:30.9129810Z Entering 'third_party/opentelemetry-cpp' 2025-08-14T20:48:30.9229300Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-08-14T20:48:30.9326650Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-08-14T20:48:30.9425810Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-08-14T20:48:30.9525440Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-08-14T20:48:30.9625070Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-08-14T20:48:30.9724540Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-08-14T20:48:30.9823490Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-08-14T20:48:30.9921990Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-08-14T20:48:31.0020470Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-08-14T20:48:31.0119370Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-08-14T20:48:31.0229510Z Entering 'third_party/pocketfft' 2025-08-14T20:48:31.0332880Z Entering 'third_party/protobuf' 2025-08-14T20:48:31.0508840Z Entering 'third_party/protobuf/third_party/benchmark' 2025-08-14T20:48:31.0631500Z Entering 'third_party/protobuf/third_party/googletest' 2025-08-14T20:48:31.0758900Z Entering 'third_party/psimd' 2025-08-14T20:48:31.0866810Z Entering 'third_party/pthreadpool' 2025-08-14T20:48:31.0971610Z Entering 'third_party/pybind11' 2025-08-14T20:48:31.1085670Z Entering 'third_party/python-peachpy' 2025-08-14T20:48:31.1192550Z Entering 'third_party/sleef' 2025-08-14T20:48:31.1304990Z Entering 'third_party/tensorpipe' 2025-08-14T20:48:31.1428770Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-08-14T20:48:31.1554520Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-08-14T20:48:31.1685170Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-08-14T20:48:31.1840410Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-08-14T20:48:31.1973790Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-08-14T20:48:31.2101220Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-08-14T20:48:31.2156070Z http.https://github.com/.extraheader 2025-08-14T20:48:31.2163070Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader 2025-08-14T20:48:31.2226580Z [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-08-14T20:48:31.2714170Z Entering 'android/libs/fbjni' 2025-08-14T20:48:31.2782090Z http.https://github.com/.extraheader 2025-08-14T20:48:31.2852930Z Entering 'third_party/FP16' 2025-08-14T20:48:31.2918000Z http.https://github.com/.extraheader 2025-08-14T20:48:31.2982590Z Entering 'third_party/FXdiv' 2025-08-14T20:48:31.3048260Z http.https://github.com/.extraheader 2025-08-14T20:48:31.3113040Z Entering 'third_party/NNPACK' 2025-08-14T20:48:31.3178190Z http.https://github.com/.extraheader 2025-08-14T20:48:31.3243700Z Entering 'third_party/NVTX' 2025-08-14T20:48:31.3308280Z http.https://github.com/.extraheader 2025-08-14T20:48:31.3373740Z Entering 'third_party/VulkanMemoryAllocator' 2025-08-14T20:48:31.3438530Z http.https://github.com/.extraheader 2025-08-14T20:48:31.3503410Z Entering 'third_party/XNNPACK' 2025-08-14T20:48:31.3567480Z http.https://github.com/.extraheader 2025-08-14T20:48:31.3636540Z Entering 'third_party/aiter' 2025-08-14T20:48:31.3702560Z http.https://github.com/.extraheader 2025-08-14T20:48:31.3767360Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-08-14T20:48:31.3832060Z http.https://github.com/.extraheader 2025-08-14T20:48:31.3900600Z Entering 'third_party/benchmark' 2025-08-14T20:48:31.3967460Z http.https://github.com/.extraheader 2025-08-14T20:48:31.4032380Z Entering 'third_party/composable_kernel' 2025-08-14T20:48:31.4097020Z http.https://github.com/.extraheader 2025-08-14T20:48:31.4164080Z Entering 'third_party/cpp-httplib' 2025-08-14T20:48:31.4228990Z http.https://github.com/.extraheader 2025-08-14T20:48:31.4293280Z Entering 'third_party/cpuinfo' 2025-08-14T20:48:31.4359730Z http.https://github.com/.extraheader 2025-08-14T20:48:31.4424990Z Entering 'third_party/cudnn_frontend' 2025-08-14T20:48:31.4489430Z http.https://github.com/.extraheader 2025-08-14T20:48:31.4555090Z Entering 'third_party/cutlass' 2025-08-14T20:48:31.4621650Z http.https://github.com/.extraheader 2025-08-14T20:48:31.4689110Z Entering 'third_party/fbgemm' 2025-08-14T20:48:31.4754750Z http.https://github.com/.extraheader 2025-08-14T20:48:31.4818360Z Entering 'third_party/fbgemm/external/asmjit' 2025-08-14T20:48:31.4883380Z http.https://github.com/.extraheader 2025-08-14T20:48:31.4948640Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-08-14T20:48:31.5013510Z http.https://github.com/.extraheader 2025-08-14T20:48:31.5080350Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-08-14T20:48:31.5147250Z http.https://github.com/.extraheader 2025-08-14T20:48:31.5211910Z Entering 'third_party/fbgemm/external/cutlass' 2025-08-14T20:48:31.5277390Z http.https://github.com/.extraheader 2025-08-14T20:48:31.5347130Z Entering 'third_party/fbgemm/external/googletest' 2025-08-14T20:48:31.5414830Z http.https://github.com/.extraheader 2025-08-14T20:48:31.5481840Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-08-14T20:48:31.5548130Z http.https://github.com/.extraheader 2025-08-14T20:48:31.5614990Z Entering 'third_party/fbgemm/external/json' 2025-08-14T20:48:31.5681100Z http.https://github.com/.extraheader 2025-08-14T20:48:31.5748280Z Entering 'third_party/flash-attention' 2025-08-14T20:48:31.5814580Z http.https://github.com/.extraheader 2025-08-14T20:48:31.5878670Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-08-14T20:48:31.5942280Z http.https://github.com/.extraheader 2025-08-14T20:48:31.6008990Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-08-14T20:48:31.6072410Z http.https://github.com/.extraheader 2025-08-14T20:48:31.6141230Z Entering 'third_party/flatbuffers' 2025-08-14T20:48:31.6209260Z http.https://github.com/.extraheader 2025-08-14T20:48:31.6276080Z Entering 'third_party/fmt' 2025-08-14T20:48:31.6341230Z http.https://github.com/.extraheader 2025-08-14T20:48:31.6406240Z Entering 'third_party/gemmlowp/gemmlowp' 2025-08-14T20:48:31.6469760Z http.https://github.com/.extraheader 2025-08-14T20:48:31.6532610Z Entering 'third_party/gloo' 2025-08-14T20:48:31.6596760Z http.https://github.com/.extraheader 2025-08-14T20:48:31.6661880Z Entering 'third_party/googletest' 2025-08-14T20:48:31.6728540Z http.https://github.com/.extraheader 2025-08-14T20:48:31.6794540Z Entering 'third_party/ideep' 2025-08-14T20:48:31.6861240Z http.https://github.com/.extraheader 2025-08-14T20:48:31.6925820Z Entering 'third_party/ideep/mkl-dnn' 2025-08-14T20:48:31.6992240Z http.https://github.com/.extraheader 2025-08-14T20:48:31.7061770Z Entering 'third_party/ittapi' 2025-08-14T20:48:31.7130090Z http.https://github.com/.extraheader 2025-08-14T20:48:31.7197260Z Entering 'third_party/kineto' 2025-08-14T20:48:31.7263710Z http.https://github.com/.extraheader 2025-08-14T20:48:31.7328170Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-08-14T20:48:31.7392300Z http.https://github.com/.extraheader 2025-08-14T20:48:31.7457620Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-08-14T20:48:31.7521750Z http.https://github.com/.extraheader 2025-08-14T20:48:31.7586420Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-08-14T20:48:31.7650440Z http.https://github.com/.extraheader 2025-08-14T20:48:31.7716030Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-08-14T20:48:31.7782490Z http.https://github.com/.extraheader 2025-08-14T20:48:31.7847960Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-08-14T20:48:31.7912760Z http.https://github.com/.extraheader 2025-08-14T20:48:31.7977780Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-08-14T20:48:31.8041740Z http.https://github.com/.extraheader 2025-08-14T20:48:31.8108070Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-08-14T20:48:31.8174530Z http.https://github.com/.extraheader 2025-08-14T20:48:31.8239660Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-08-14T20:48:31.8306320Z http.https://github.com/.extraheader 2025-08-14T20:48:31.8373110Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-08-14T20:48:31.8438730Z http.https://github.com/.extraheader 2025-08-14T20:48:31.8504130Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-08-14T20:48:31.8567910Z http.https://github.com/.extraheader 2025-08-14T20:48:31.8636120Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-08-14T20:48:31.8700560Z http.https://github.com/.extraheader 2025-08-14T20:48:31.8765240Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-08-14T20:48:31.8830660Z http.https://github.com/.extraheader 2025-08-14T20:48:31.8897320Z Entering 'third_party/kleidiai' 2025-08-14T20:48:31.8962620Z http.https://github.com/.extraheader 2025-08-14T20:48:31.9027080Z Entering 'third_party/mimalloc' 2025-08-14T20:48:31.9090880Z http.https://github.com/.extraheader 2025-08-14T20:48:31.9156040Z Entering 'third_party/nlohmann' 2025-08-14T20:48:31.9219840Z http.https://github.com/.extraheader 2025-08-14T20:48:31.9284720Z Entering 'third_party/onnx' 2025-08-14T20:48:31.9350450Z http.https://github.com/.extraheader 2025-08-14T20:48:31.9419680Z Entering 'third_party/onnx/third_party/pybind11' 2025-08-14T20:48:31.9486380Z http.https://github.com/.extraheader 2025-08-14T20:48:31.9554180Z Entering 'third_party/opentelemetry-cpp' 2025-08-14T20:48:31.9621910Z http.https://github.com/.extraheader 2025-08-14T20:48:31.9686900Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-08-14T20:48:31.9750940Z http.https://github.com/.extraheader 2025-08-14T20:48:31.9815870Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-08-14T20:48:31.9880510Z http.https://github.com/.extraheader 2025-08-14T20:48:31.9944040Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-08-14T20:48:32.0009980Z http.https://github.com/.extraheader 2025-08-14T20:48:32.0075950Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-08-14T20:48:32.0141690Z http.https://github.com/.extraheader 2025-08-14T20:48:32.0208410Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-08-14T20:48:32.0274630Z http.https://github.com/.extraheader 2025-08-14T20:48:32.0338630Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-08-14T20:48:32.0401790Z http.https://github.com/.extraheader 2025-08-14T20:48:32.0465460Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-08-14T20:48:32.0529630Z http.https://github.com/.extraheader 2025-08-14T20:48:32.0594240Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-08-14T20:48:32.0661390Z http.https://github.com/.extraheader 2025-08-14T20:48:32.0727500Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-08-14T20:48:32.0793590Z http.https://github.com/.extraheader 2025-08-14T20:48:32.0861890Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-08-14T20:48:32.0927850Z http.https://github.com/.extraheader 2025-08-14T20:48:32.1002330Z Entering 'third_party/pocketfft' 2025-08-14T20:48:32.1070860Z http.https://github.com/.extraheader 2025-08-14T20:48:32.1136380Z Entering 'third_party/protobuf' 2025-08-14T20:48:32.1203500Z http.https://github.com/.extraheader 2025-08-14T20:48:32.1269370Z Entering 'third_party/protobuf/third_party/benchmark' 2025-08-14T20:48:32.1336060Z http.https://github.com/.extraheader 2025-08-14T20:48:32.1401460Z Entering 'third_party/protobuf/third_party/googletest' 2025-08-14T20:48:32.1467570Z http.https://github.com/.extraheader 2025-08-14T20:48:32.1535420Z Entering 'third_party/psimd' 2025-08-14T20:48:32.1603420Z http.https://github.com/.extraheader 2025-08-14T20:48:32.1670610Z Entering 'third_party/pthreadpool' 2025-08-14T20:48:32.1733240Z http.https://github.com/.extraheader 2025-08-14T20:48:32.1797420Z Entering 'third_party/pybind11' 2025-08-14T20:48:32.1864550Z http.https://github.com/.extraheader 2025-08-14T20:48:32.1930250Z Entering 'third_party/python-peachpy' 2025-08-14T20:48:32.1997610Z http.https://github.com/.extraheader 2025-08-14T20:48:32.2063720Z Entering 'third_party/sleef' 2025-08-14T20:48:32.2129040Z http.https://github.com/.extraheader 2025-08-14T20:48:32.2194180Z Entering 'third_party/tensorpipe' 2025-08-14T20:48:32.2263670Z http.https://github.com/.extraheader 2025-08-14T20:48:32.2322750Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-08-14T20:48:32.2385710Z http.https://github.com/.extraheader 2025-08-14T20:48:32.2448930Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-08-14T20:48:32.2511910Z http.https://github.com/.extraheader 2025-08-14T20:48:32.2574260Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-08-14T20:48:32.2636760Z http.https://github.com/.extraheader 2025-08-14T20:48:32.2699160Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-08-14T20:48:32.2762610Z http.https://github.com/.extraheader 2025-08-14T20:48:32.2824500Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-08-14T20:48:32.2891130Z http.https://github.com/.extraheader 2025-08-14T20:48:32.3019250Z A job completed hook has been configured by the self-hosted runner administrator 2025-08-14T20:48:32.3042480Z ##[group]Run '/opt/runner_scripts/post-job.sh' 2025-08-14T20:48:32.3054910Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-08-14T20:48:32.3055130Z ##[endgroup] 2025-08-14T20:48:32.3398890Z + df -h 2025-08-14T20:48:32.3419930Z + ls -t /var/log/post_job 2025-08-14T20:48:32.3420130Z + awk 'NR>100' 2025-08-14T20:48:32.3420340Z + Checking if runner needs to be terminated...ok 2025-08-14T20:48:32.3420580Z + Outputting disk space 2025-08-14T20:48:32.3420860Z Filesystem Size Used Avail Capacity iused ifree %iused Mounted on 2025-08-14T20:48:32.3421240Z /dev/disk5s2s1 256Gi 9.5Gi 199Gi 5% 404k 2.1G 0% / 2025-08-14T20:48:32.3421610Z devfs 217Ki 217Ki 0Bi 100% 752 0 100% /dev 2025-08-14T20:48:32.3421970Z /dev/disk5s5 256Gi 1.0Gi 199Gi 1% 1 2.1G 0% /System/Volumes/VM 2025-08-14T20:48:32.3422460Z /dev/disk5s3 256Gi 5.7Gi 199Gi 3% 1.0k 2.1G 0% /System/Volumes/Preboot 2025-08-14T20:48:32.3422960Z /dev/disk1s2 500Mi 6.0Mi 387Mi 2% 1 4.0M 0% /System/Volumes/xarts 2025-08-14T20:48:32.3423420Z /dev/disk1s1 500Mi 53Mi 387Mi 13% 61 4.0M 0% /System/Volumes/iSCPreboot 2025-08-14T20:48:32.3423840Z /dev/disk1s3 500Mi 856Ki 387Mi 1% 51 4.0M 0% /System/Volumes/Hardware 2025-08-14T20:48:32.3424270Z /dev/disk5s1 256Gi 40Gi 199Gi 17% 1.6M 2.1G 0% /System/Volumes/Data 2025-08-14T20:48:32.3424680Z map auto_home 0Bi 0Bi 0Bi 100% 0 0 - /System/Volumes/Data/home 2025-08-14T20:48:32.3425100Z /dev/disk3s4 228Gi 120Ki 210Gi 1% 18 2.2G 0% /private/tmp/tmp-mount-hQiI52 2025-08-14T20:48:32.3425430Z + Cleaning up old logs (Keep the latest 100) 2025-08-14T20:48:32.3425730Z + xargs rm -fv 2025-08-14T20:48:32.5128410Z + Restoring SSH key to be the skeleton key 2025-08-14T20:48:32.5214720Z Evaluate and set job outputs 2025-08-14T20:48:32.5217950Z Set output 'build-outcome' 2025-08-14T20:48:32.5219580Z Set output 'test-matrix' 2025-08-14T20:48:32.5220200Z Cleaning up orphan processes 2025-08-14T20:48:33.0275680Z Terminate orphan process: pid (75841) (sccache)